/* Reset and Base Styles - Cache Bust 2025-01-16 v27 DESKTOP CTA ALIGNMENT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1B1B1B;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    background: rgba(10, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0 .5rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-button {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-top: -10px;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

/* Hero Section */
.hero {
    padding: 180px 0 140px;
    background: #000;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.08) 0%, transparent 40%);
    animation: heroGlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-10%, -10%) scale(1.1); opacity: 0.8; }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-headline,
    .hero-tagline,
    .hero-tagline-end,
    .hero-subheadline {
        text-align: center;
    }
    
    .hero-signup-form {
        margin: 0 auto;
    }
}

/* Hero gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-visual {
        max-width: 400px;
    }
    
    .hero-phones-wrapper {
        position: relative;
        overflow: hidden;
        height: 268px; /* Fixed height to crop bottom 33% (400px * 0.67) */
    }
    
    .hero-graphic {
        max-width: 100%;
        height: auto;
        /* No transform - keep original size and position */
    }
    
    .hero-gradient-overlay {
        height: 30px; /* Fixed height gradient */
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline-end {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-signup-form {
        padding: 0 1rem;
    }
    
    .hero-signup-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-signup-form input[type="email"] {
        width: 100%;
        min-width: unset;
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .hero-signup-form .submit-button {
        width: 100%;
        font-size: 1rem;
        padding: 16px 32px;
    }
    
    .form-benefits {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
        padding: 0 1rem;
    }
    
    .hero-tagline-end {
        font-size: 1.75rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phones-wrapper {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    perspective: 1000px;
    width: 100%;
    max-width: 550px;
}

.hero-graphic {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7));
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* Hover effect removed for cleaner look */


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

.hero-headline {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-align: left;
}

.hero-headline > span {
    display: block;
    margin-bottom: 0.2em;
}

.hero-headline > span:first-child {
    font-weight: 600;
    font-size: 0.65em;
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-headline > span:nth-child(2) {
    font-weight: 700;
    font-size: 0.7em;
    margin-bottom: 0.5em;
    animation: fadeInUp 1s ease-out;
}

.hero-headline .highlight {
    display: block;
    font-weight: 700;
    font-size: 1.1em;
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 30%, #81C784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out, highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.hero-tagline {
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 1.2s ease-out;
    text-align: left;
}

.hero-tagline-end {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #FFFFFF;
    animation: fadeInUp 1.2s ease-out;
    text-align: left;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    animation: fadeInUp 1.4s ease-out;
    text-align: left;
}

.hero-signup-form {
    max-width: 600px;
}

.hero-signup-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-signup-form input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 20px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-signup-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-signup-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.hero-signup-form .submit-button {
    padding: 20px 48px;
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
}

.hero-signup-form .submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.4);
}

.hero-signup-form .form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-signup-form .benefit {
    font-size: 0.95rem;
    color: #B8BCC8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .hero-headline > span {
        margin-bottom: 0.15em;
    }
    
    .hero-headline .highlight {
        font-size: 1.05em;
    }
    
    .hero-tagline {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline-end {
        font-size: clamp(2.5rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
        font-weight: 900;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .hero-signup-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-signup-form input[type="email"] {
        min-width: 100%;
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .hero-signup-form .submit-button {
        width: 100%;
        padding: 18px 32px;
        font-size: 1rem;
    }
    
    .hero-signup-form .form-benefits {
        gap: 1rem;
    }
    
    .hero-signup-form .benefit {
        font-size: 0.875rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #B8BCC8;
    font-weight: 500;
    line-height: 1.3;
}

.hero-cta {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    color: white;
    border: none;
    padding: 24px 56px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(76, 175, 80, 0.25);
    animation: fadeInUp 1.6s ease-out;
}

.hero-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

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

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(76, 175, 80, 0.35);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease-out;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.hero-disclaimer span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-disclaimer span:before {
    content: '✓';
    color: #6cbd45;
    font-weight: 700;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 120px 0;
    background: #0F1419;
    position: relative;
}

.problem:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(76, 175, 80, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.section-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 5rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.section-headline .gradient-text {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.problem-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-item:hover:before {
    opacity: 1;
}

.problem-item:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.problem-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 80px;
    transition: transform 0.3s ease;
}

.problem-item:hover .problem-icon {
    transform: scale(1.1);
}

.problem-icon img {
    transition: transform 0.3s ease;
}

.problem-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.problem-item p {
    font-size: 1.1rem;
    color: #B8BCC8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Solution Section */
.solution {
    padding: 120px 0;
    background: #000;
    position: relative;
}

.solution:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
}

.solution-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(76, 175, 80, 0.2);
    transform: translateX(8px);
}

.feature-number {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    position: relative;
}

.feature-number:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6cbd45, #7dc95c);
    opacity: 0.3;
    z-index: -1;
}

.feature-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-content p {
    color: #B8BCC8;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Phone Mockup */
.solution-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 40px 20px 20px;
    height: 100%;
}

.app-interface h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.price-item.danger .price-value {
    color: #dc2626;
    font-weight: 800;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.financial-health {
    margin-top: 1rem;
}

.health-label {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.health-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.health-fill {
    height: 100%;
    background: #dc2626;
    transition: width 0.3s ease;
}

.health-bar.danger .health-fill {
    background: #dc2626;
}

.health-score {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: #0F1419;
    position: relative;
}

.social-proof:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(76, 175, 80, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover:before {
    opacity: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.testimonial-content h3 {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B8BCC8;
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Features Section */
.urgency {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0D14 0%, #1A1F2B 50%, #0A0D14 100%);
    color: white;
    position: relative;
}

.urgency:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.urgency-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.urgency-stat {
    margin-bottom: 4rem;
}

.urgency-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.urgency-label {
    font-size: 1.3rem;
    color: #B8BCC8;
    font-weight: 500;
}

.urgency-math {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.urgency-math h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.urgency-math p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #B8BCC8;
}

.urgency-math ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 1.8;
}

.urgency-math li {
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.urgency-math li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.urgency-math li:hover:before {
    opacity: 1;
}

.urgency-math li:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.urgency-math li strong {
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Signup Section */
.signup {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A0D14 0%, #1A1F2B 100%);
    color: white;
    position: relative;
}

.signup:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.signup-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.signup-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.signup-subheadline {
    font-size: 1.3rem;
    color: #B8BCC8;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.signup-form {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-signup {
    max-width: 600px;
    margin: 2rem auto 1rem auto;
}

.hero-signup .form-group {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-signup .form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: stretch;
}

#email, #heroEmail {
    flex: 1;
    min-width: 280px;
    padding: 20px 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    font-weight: 500;
}

#email::placeholder, #heroEmail::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#email:focus, #heroEmail:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.submit-button {
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    color: white;
    border: none;
    padding: 20px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

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

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.4);
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.benefit {
    font-size: 1rem;
    color: #B8BCC8;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.success-message h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #0A0D14;
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(76, 175, 80, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-logo p {
    color: #B8BCC8;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: #B8BCC8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6cbd45 0%, #7dc95c 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links a:hover:before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    color: #B8BCC8;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-signup .form-benefits {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-signup .benefit {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-headline {
        font-size: 1.8rem;
    }
    
    .problem-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* Additional Mobile Responsive Styles */

/* Questions Section Mobile */
@media (max-width: 768px) {
    .questions-section {
        padding: 80px 0 !important;
    }
    
    .questions-section h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .questions-grid {
        gap: 1.5rem !important;
    }
    
    .questions-grid > div {
        padding: 1.5rem !important;
    }
    
    .questions-grid h3 {
        font-size: 1.25rem !important;
    }
    
    .questions-grid p {
        font-size: 0.95rem !important;
    }
}

/* Demo Conclusion Mobile */
@media (max-width: 768px) {
    .demo-conclusion {
        font-size: 1.2rem !important;
        padding: 0 1rem;
    }
    
    .demo-conclusion span {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .demo-conclusion {
        font-size: 1.1rem !important;
    }
    
    .demo-conclusion span {
        font-size: 1.25rem !important;
        display: block;
        margin-top: 0.5rem;
    }
}

/* SVG Mobile Styling */
@media (max-width: 768px) {
    svg {
        margin: 0 !important;
    }
}

/* Value Demonstration Section Mobile */
@media (max-width: 768px) {
    #demo {
        padding: 80px 0 !important;
    }
    
    #demo .section-headline {
        font-size: 1.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    #demo .section-headline:nth-child(2) {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    #demo h3 {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .chart-container {
        padding: 2rem 1rem !important;
    }
    
    .chart-container > div:first-child {
        position: static !important;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .chart-container > div:first-child p:first-child {
        font-size: 1.5rem !important;
    }
    
    .chart-container svg {
        height: 200px !important;
    }
    
    .chart-container .highlight div {
        padding: 1.5rem !important;
    }
    
    .chart-container .highlight p:first-child {
        font-size: 1.75rem !important;
    }
    
    .chart-container .highlight p:last-child {
        font-size: 0.95rem !important;
    }
}

/* Solution Section Mobile */
@media (max-width: 768px) {
    .solution {
        padding: 80px 0 !important;
    }
    
    .solution-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .solution-visual {
        order: -1;
    }
    
    .solution-visual img {
        max-width: 300px !important;
    }
}

/* Signup Section Mobile */
@media (max-width: 768px) {
    .signup {
        padding: 80px 0 !important;
    }
    
    .signup-headline {
        font-size: 2rem !important;
    }
    
    .signup-subheadline {
        font-size: 1.1rem !important;
    }
}

/* Logo Mobile Styles */
@media (max-width: 768px) {
    .logo img {
        height: 65px !important;
        width: auto;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: -12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px !important;
        width: auto;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Very Small Screens */
@media (max-width: 380px) {
    .logo img {
        height: 40px !important;
        width: auto;
    }
    
    .hero-headline {
        font-size: 2rem !important;
        padding: 0 1rem;
    }
    
    .hero-tagline-end {
        font-size: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .hero-visual {
        max-width: 280px;
    }
    
    .hero-phones-wrapper {
        height: 188px; /* Proportional height for smaller screens (280 * 0.67) */
    }
    
    .questions-section h2 {
        font-size: 1.75rem !important;
    }
    
    #demo .section-headline {
        font-size: 1.75rem !important;
    }
}

/* App Store Badges Mobile */
@media (max-width: 480px) {
    .app-store-badges div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .app-store-badges img {
        height: 48px !important;
    }
}

/* Interactive Toggle Mobile */
@media (max-width: 768px) {
    .decision-toggles {
        gap: 1.2rem !important;
    }
    
    .decision-toggle {
        gap: 0.8rem !important;
    }
    
    .decision-toggle span {
        font-size: 0.95rem !important;
        flex: 1 !important;
    }
    
    .toggle-switch {
        width: 70px !important;
        height: 35px !important;
    }
    
    .toggle-switch .slider:before {
        height: 27px !important;
        width: 27px !important;
    }
    
    .toggle-switch input:checked + .slider:before {
        transform: translateX(35px) !important;
    }
}

@media (max-width: 480px) {
    .decision-toggles {
        padding: 0 0.5rem;
    }
    
    .decision-toggle span {
        font-size: 0.85rem !important;
    }
    
    .toggle-switch {
        width: 60px !important;
        height: 32px !important;
    }
    
    .toggle-switch .slider:before {
        height: 24px !important;
        width: 24px !important;
    }
    
    .toggle-switch input:checked + .slider:before {
        transform: translateX(28px) !important;
    }
}