:root {
    --primary: #DC2626;
    --secondary: #1E3A8A;
    --accent: #10B981;
    --warning: #F59E0B;
    --text: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
}

.container {
    padding: 1rem;
    max-width: 100%;
}

/* Headings Typography */
h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Alert Bar */
.alert-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--warning);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* New sections styles */
/* Drone Attack Warning Section */
.drone-attack-warning {
    padding: 4rem 0;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.drone-attack-warning h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text);
}

.drone-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.drone-stats .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.drone-stats .stat-icon {
    font-size: 2rem;
}

.drone-stats .stat-content {
    flex: 1;
}

.drone-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.drone-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-box .warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    font-size: 1.1rem;
}

/* Pain Block Section */
.pain-block {
    padding: 4rem 0;
    background: white;
}

.pain-block h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pain-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.emotional-description {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #fef2f2;
    border-radius: 12px;
}

.emotional-description p {
    font-size: 1.2rem;
    color: var(--text);
    margin: 0;
}

/* Preparedness Checklist Section */
.preparedness-checklist {
    padding: 4rem 0;
    background: #f3f4f6;
}

.preparedness-checklist h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checklist-questions {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(5px);
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    cursor: pointer;
}

.checklist-item span {
    font-size: 1.1rem;
    line-height: 1.5;
}

.checklist-cta {
    text-align: center;
    margin-top: 2rem;
}

.checklist-cta p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: white;
}

.solution-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.solution-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
    margin: 0;
}

/* Benefits Transformation Section */
.benefits-transformation {
    padding: 4rem 0;
    background: #f9fafb;
}

.benefits-transformation h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.transformation-grid {
    margin-bottom: 3rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.before, .after {
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
}

.before {
    background: #fef2f2;
}

.after {
    background: #d1fae5;
}

.before h3, .after h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.before ul, .after ul {
    list-style: none;
    font-size: 1.1rem;
}

.before li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.before li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.after li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.after li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.arrow {
    font-size: 2rem;
    color: var(--gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.result-item p {
    margin: 0;
    font-size: 1.05rem;
}

/* Postscript Section */
.postscript-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.postscript-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.postscript-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.postscript-section .cta-button {
    background: white;
    color: var(--primary);
}

.postscript-section .cta-button:hover {
    background: #f9fafb;
}

/* Drone Defense Costs Section */
.drone-costs-warning {
    padding: 3rem 0;
    background: #fef2f2;
}

.drone-costs-warning h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text);
    font-weight: 800;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cost-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.cost-card.ukrainian {
    border-top: 4px solid #0057B7;
}

.cost-card.russian {
    border-top: 4px solid #DC2626;
}

.cost-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 600;
}

.cost-amount {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    margin-bottom: 0.25rem;
    color: #DC2626;
    line-height: 1.2;
}

.cost-detail {
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.cost-breakdown {
    list-style: none;
    padding: 0;
    text-align: left;
}

.cost-breakdown li {
    padding: 0.375rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #4b5563;
}

.economics-reality {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-fact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cost-ratio {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.125rem;
}

.defense-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.defense-stats .stat-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.defense-stats .stat-item.danger {
    background: #fee2e2;
    border: 2px solid #fecaca;
}

.defense-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.defense-stats .stat-item.danger .stat-value {
    color: var(--primary);
}

.defense-stats .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.3;
}

.conclusion {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 2px solid var(--primary);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.danger-text {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
}

.source-link {
    text-align: center;
    margin-top: 2rem;
}

.source-link a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.source-link a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Russia Drones Warning */
.russia-drones-warning {
    background: linear-gradient(90deg, #1F2937 0%, #111827 100%);
    padding: 2rem 0;
}

.drones-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.drones-info p {
    margin: 0;
    color: white;
    font-size: 1.0625rem;
    line-height: 1.5;
}

.drones-info .highlight {
    color: var(--warning);
    font-weight: 800;
    font-size: 1.125rem;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.drones-info .emphasis {
    color: var(--warning);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.5);
    text-underline-offset: 3px;
}

.drones-info .source-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.drones-info .source-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding-top: 3rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220,38,38,0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        gap: 2rem;
    }
}

.hero-left {
    text-align: left;
}

/* Micro trust block */
.micro-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.micro-trust .separator {
    color: #d1d5db;
}

.warning-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #DC2626, #F59E0B, #DC2626);
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.warning-box p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.5);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
}

.social-proof-hero {
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

.visitor-count {
    color: var(--primary);
    font-size: 1.25rem;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111827;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* Hero benefits list */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #4b5563;
}

.hero-benefits li:last-child {
    margin-bottom: 0;
}

.hero-benefits .benefit-icon {
    color: #10B981;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Price pill */
.price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.old-price {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 500;
}

.new-price {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 800;
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.secondary-cta {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.secondary-cta:hover {
    background: var(--secondary);
    color: white;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Product visual */
.hero-right {
    display: none;
}

@media (min-width: 1024px) {
    .hero-right {
        display: block;
    }
}

.product-visual {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Micro trust block under product */
.micro-trust-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.75rem;
    font-weight: 500;
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.micro-trust-product .separator {
    color: #d1d5db;
}

/* Social proof hero */
.social-proof-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
}

.active-dot {
    animation: pulse 2s infinite;
}

/* Risk Calculator */
.risk-calculator {
    padding: 3rem 0;
    background: white;
}

.risk-calculator h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
}

.question {
    margin-bottom: 1.5rem;
}

.question label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    outline: none;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    cursor: pointer;
    border-radius: 50%;
    -webkit-appearance: none;
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.calculate-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.risk-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 8px;
    border: 2px solid #fecaca;
}

.risk-bar {
    width: 100%;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.risk-fill {
    height: 100%;
    background: var(--primary);
    transition: width 1s ease-out;
}

.risk-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Incidents Map */
.incidents-map {
    padding: 3rem 0;
    background: var(--light);
}

.incidents-map h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.incident-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.danger {
    border-left: 4px solid var(--primary);
}

.stat-card.warning {
    border-left: 4px solid var(--warning);
}

.stat-card.alert {
    border-left: 4px solid var(--secondary);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        max-width: 900px;
    }
}

.incidents-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

.incident-list {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.incident-list h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.incident-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.incident-item {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.incident-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
}

.incident-location {
    font-weight: 600;
    color: var(--text);
}

.incident-type {
    font-size: 0.875rem;
    color: var(--gray);
}

.distance-calculator {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.distance-calculator h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.city-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.city-input:focus {
    outline: none;
    border-color: var(--secondary);
}

.check-distance-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.check-distance-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.distance-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    display: none;
}

.map-warning {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    border: 2px solid #fecaca;
}

.map-warning .highlight {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
}

/* Problem Agitation */
.problem-agitation {
    padding: 3rem 0;
    background: white;
}

.problem-agitation h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.checklist {
    max-width: 600px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--light);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checklist-item:hover {
    background: #e5e7eb;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checklist-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 8px;
    text-align: center;
    display: none;
}

/* Value Stack */
.value-stack {
    padding: 3rem 0;
    background: var(--light);
}

.value-stack h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.stack-items {
    max-width: 600px;
    margin: 0 auto;
}

.stack-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stack-item.bonus {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.bonus-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.stack-item h3 {
    margin-bottom: 0.5rem;
}

.stack-item p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.value {
    font-weight: 600;
    color: var(--secondary);
}

.total-value {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.25rem;
}

.strike {
    text-decoration: line-through;
    color: var(--gray);
}

.your-price {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-info .location {
    font-size: 0.875rem;
    color: var(--gray);
}

.stars {
    color: var(--warning);
    margin-bottom: 0.5rem;
}

/* Three Types */
.three-types {
    padding: 3rem 0;
    background: var(--light);
}

.three-types h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.types-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.type {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.type:hover {
    transform: translateY(-5px);
}

.type .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.type h3 {
    margin-bottom: 0.5rem;
}

.types-question {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

/* What You'll Learn */
.what-you-learn {
    padding: 4rem 0;
    background: var(--light);
}

.what-you-learn h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Table of Contents Section */
.table-of-contents {
    padding: 4rem 0;
    background: white;
}

.table-of-contents h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text);
}

.toc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.toc-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.toc-parts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.toc-part {
    background: var(--light);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toc-part:hover {
    background: #e5e7eb;
    transform: translateX(4px);
}

.toc-part.highlight {
    background: #f0fdf4;
    border-left-color: var(--accent);
}

.toc-part h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0;
}

.toggle-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.toc-part.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.toc-content {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.toc-part.collapsed .toc-content {
    max-height: 0;
    margin-top: 0;
}

.toc-part li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toc-part li:last-child {
    border-bottom: none;
}

.chapter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    flex-shrink: 0;
}

.toc-bonuses {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.toc-bonuses h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.bonus-icon {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.bonus-item p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

.toc-cta {
    text-align: center;
    margin-top: 2rem;
}

.toc-cta p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Who Is This For */
.who-is-this-for {
    padding: 3rem 0;
    background: white;
}

.who-is-this-for h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.not-for-you, .is-for-you {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.not-for-you {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #fecaca;
}

.is-for-you {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #bbf7d0;
}

.who-is-this-for h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    color: var(--secondary);
    font-weight: 700;
}

.criteria-list {
    display: grid;
    gap: 1rem;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.criteria-item span {
    font-size: 2rem;
    flex-shrink: 0;
}

.criteria-item p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.5;
}

.decision-cta {
    text-align: center;
    margin-top: 2rem;
}

.decision-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

/* Price Paradox */
.price-paradox {
    padding: 3rem 0;
    background: var(--light);
}

.price-paradox h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.price-comparison {
    max-width: 600px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-item.highlight {
    background: #f0fdf4;
    border: 2px solid var(--accent);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.comparison-item .icon {
    font-size: 2rem;
}

.comparison-item .item {
    flex: 1;
    margin: 0 1rem;
}

.comparison-item .price {
    font-weight: bold;
    font-family: "Georgia", serif;
}

.paradox-question {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Social Ticker */
.social-ticker {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    max-width: 300px;
    z-index: 100;
}

/* Purchase Form */
.purchase-section {
    padding: 3rem 0;
    background: var(--light);
}

.payment-info {
    margin: 1.5rem 0;
    text-align: center;
}

.payment-info p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gray);
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-logos img:hover {
    opacity: 1;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

.loading-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#form-error {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #dc2626;
    font-size: 0.9rem;
}

.purchase-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

#purchase-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#purchase-form input[type="email"],
#purchase-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 1rem;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-methods label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
}

.payment-methods label:hover {
    background: var(--light);
}

.order-bump {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--warning);
}

.order-bump label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.order-bump small {
    display: block;
    color: var(--gray);
    margin-top: 0.25rem;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

/* FAQ */
.faq {
    padding: 3rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.faq-items {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--light);
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e5e7eb;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gray);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 200px;
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.popup-offer {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 1rem 0;
    font-weight: bold;
}

/* Sticky Cart */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #e5e7eb;
    padding: 1rem;
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}

.cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.cart-price s {
    color: var(--gray);
    margin-right: 0.5rem;
}

.cart-price strong {
    color: var(--accent);
    font-size: 1.25rem;
}

.sticky-cart button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
    
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-content {
        gap: 2rem;
    }
    
    .drones-info {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

/* Critical Questions */
.critical-questions {
    padding: 3rem 0;
    background: white;
}

.critical-questions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.questions-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.question-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    position: relative;
}

.question-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.question-box h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.questions-cta {
    text-align: center;
    margin-top: 2rem;
}

.questions-cta p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Ukraine Stories */
.ukraine-stories {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #fef2f2, white);
}

.ukraine-stories h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.story-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-header img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
}

.story-date {
    font-size: 0.875rem;
    color: var(--gray);
}

blockquote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--warning);
}

.statistics-box {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.statistics-box h3 {
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Final Warning Section */
.final-warning {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
}

.final-warning h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: white;
}

.author-message {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
}

.author-message p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.signature {
    text-align: right;
    font-style: normal;
    color: var(--warning);
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
}

.time-running-out h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.decision-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.column-no, .column-yes {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
}

.column-no {
    border: 2px solid #ef4444;
}

.column-yes {
    border: 2px solid #10b981;
}

.column-no h4 {
    color: #ef4444;
    margin-bottom: 1rem;
}

.column-yes h4 {
    color: #10b981;
    margin-bottom: 1rem;
}

.decision-columns ul {
    list-style: none;
    padding: 0;
}

.decision-columns li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.column-no li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
}

.column-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.countdown-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.countdown-text .timer {
    color: var(--warning);
    font-weight: bold;
    font-size: 1.5rem;
}

.price-reminder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.was {
    text-decoration: line-through;
    color: #9ca3af;
}

.now {
    color: var(--accent);
    font-size: 2rem;
    font-weight: bold;
}

.save {
    background: var(--warning);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.final-button {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.guarantee-text {
    margin-top: 1rem;
    color: #d1d5db;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}