/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mint-primary: #00BD9D;
    --mint-light: #00E5B8;
    --mint-dark: #009B82;
    --mint-gradient: linear-gradient(135deg, #00BD9D 0%, #00E5B8 100%);
    --mint-gradient-reverse: linear-gradient(135deg, #00E5B8 0%, #00BD9D 100%);
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--mint-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: floatBackground 8s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

/* Top row icons */
.floating-icon-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 12%;
    left: 25%;
    animation-delay: 1s;
}

.floating-icon-3 {
    top: 6%;
    left: 45%;
    animation-delay: 2s;
}

.floating-icon-4 {
    top: 15%;
    left: 65%;
    animation-delay: 3s;
}

.floating-icon-5 {
    top: 10%;
    left: 85%;
    animation-delay: 4s;
}

/* Middle row icons */
.floating-icon-6 {
    top: 40%;
    left: 8%;
    animation-delay: 0.5s;
}

.floating-icon-7 {
    top: 45%;
    left: 28%;
    animation-delay: 1.5s;
}

.floating-icon-8 {
    top: 38%;
    left: 48%;
    animation-delay: 2.5s;
}

.floating-icon-9 {
    top: 42%;
    left: 68%;
    animation-delay: 3.5s;
}

.floating-icon-10 {
    top: 46%;
    left: 88%;
    animation-delay: 4.5s;
}

/* Bottom row icons */
.floating-icon-11 {
    top: 75%;
    left: 12%;
    animation-delay: 1s;
}

.floating-icon-12 {
    top: 78%;
    left: 32%;
    animation-delay: 2s;
}

.floating-icon-13 {
    top: 72%;
    left: 52%;
    animation-delay: 3s;
}

.floating-icon-14 {
    top: 80%;
    left: 72%;
    animation-delay: 4s;
}

.floating-icon-15 {
    top: 76%;
    left: 92%;
    animation-delay: 5s;
}

/* Additional scattered icons */
.floating-icon-16 {
    top: 25%;
    left: 15%;
    animation-delay: 6s;
}

.floating-icon-17 {
    top: 60%;
    left: 20%;
    animation-delay: 7s;
}

.floating-icon-18 {
    top: 30%;
    left: 80%;
    animation-delay: 8s;
}

/* Extra floating icons for more coverage */
.floating-icon-19 {
    top: 18%;
    left: 35%;
    animation-delay: 9s;
}

.floating-icon-20 {
    top: 55%;
    left: 60%;
    animation-delay: 10s;
}

.floating-icon-21 {
    top: 85%;
    left: 25%;
    animation-delay: 11s;
}

.floating-icon-22 {
    top: 35%;
    left: 90%;
    animation-delay: 12s;
}

.floating-icon-23 {
    top: 65%;
    left: 5%;
    animation-delay: 13s;
}

.floating-icon-24 {
    top: 22%;
    left: 70%;
    animation-delay: 14s;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-60px) rotate(180deg) scale(0.9);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.1);
        opacity: 0.3;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 3rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: inline-block;
}

.main-logo {
    height: 120px; /* Much larger logo */
    width: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-section {
        padding: 2rem 0 1.5rem 0;
    }
    .main-logo {
        height: 80px; /* smaller logo on tablets */
    }
}

@media (max-width: 480px) {
    .logo-section {
        padding: 1.5rem 0 1rem 0;
    }
    .main-logo {
        height: 60px; /* smaller logo on phones */
    }
}

/* Main Content */
.main-content {
    padding: 3rem 0 2rem; /* Add padding to create space after the hero section */
}

/* Hero Section with Video */
.hero {
    position: relative;
    padding: 2rem 0; /* Restore padding */
    min-height: auto; /* Remove full height constraint */
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    width: 100%; /* Full width */
}

.video-container {
    position: relative;
    width: 90vw; /* Large but not full width */
    max-width: 1400px; /* Reasonable max width */
    height: 75vh; /* Large height */
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background-color: var(--gray-800);
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-placeholder-content {
    text-align: center;
    color: var(--gray-600);
}

.video-placeholder-content i {
    font-size: 4rem;
    color: var(--mint-primary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.video-placeholder-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

.video-placeholder-content small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem 3rem 3rem; /* top right/left bottom */
    background: rgba(0, 0, 0, 0.6); /* default for desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-height: 75vh; /* Match container height */
    padding-bottom: 3rem; /* was 4rem – reduce bottom padding */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--mint-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: none;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--gray-200);
}

/* Hero Email Signup */
.hero-signup {
    width: 100%;
    max-width: 550px;
}

.hero-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem; /* was 1rem – tighten spacing */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.hero-input-group:focus-within {
    border-color: var(--mint-primary);
    box-shadow: 0 0 0 4px rgba(0, 189, 157, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.hero-email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: white;
    outline: none;
}

.hero-email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-submit-btn {
    background: var(--mint-gradient);
    border: none;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    white-space: nowrap;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-submit-btn:active {
    transform: translateY(0);
}

.hero-submit-btn.loading {
    pointer-events: none;
}

.hero-signup-note {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-top: 1rem; /* keep but ensure room below */
    opacity: 0.9;
}

/* Interest Checkboxes */
.interest-checkboxes {
    margin-bottom: 2rem; /* was 2.5rem – tighten spacing */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.interest-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-height: 50px;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--mint-primary);
    border-color: var(--mint-primary);
    box-shadow: 0 0 0 2px rgba(0, 189, 157, 0.2);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -1px;
    left: 3px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* Bottom form checkboxes (different styling) */
.bottom-interest {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bottom-interest .interest-title {
    color: white;
    font-weight: 600;
}

.bottom-interest .checkbox-item {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.bottom-interest .checkbox-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.bottom-interest .checkmark {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
}

.bottom-interest .checkbox-text {
    color: white;
    font-weight: 500;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--mint-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: scaleIn 0.6s ease-out;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.modal-body {
    padding: 0 2rem 2rem;
    text-align: center;
}

.modal-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-subtext {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1877F2;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    color: white;
    text-decoration: none;
}

.facebook-btn i {
    font-size: 1.2rem;
}

/* Cookie functionality removed */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .features-container {
        padding: 0;
    }
    
    .hero {
        padding: 0;
    }
    
    .video-container {
        width: 100vw;
        height: 100vw; /* Square aspect ratio on mobile */
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%); /* new - ensure full-bleed on the right too */
        max-height: none;
        position: relative;
    }
    
    .hero-overlay {
        padding: 1.5rem;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.35); /* lighter on mobile */
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-submit-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .interest-checkboxes {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Mobile carousel for features */
    .features-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem calc((100vw - 300px) / 2);
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none !important;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
    
    .feature-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
        margin-bottom: 0;
        min-width: 300px;
        max-width: 300px;
    }
    
    .features-section::after {
        content: "← Swipe to explore →";
        display: block;
        text-align: center;
        color: var(--gray-500);
        font-size: 0.9rem;
        margin-top: 1rem;
        font-style: italic;
    }
    
    /* Fix bottom email section padding */
    .email-signup-section {
        padding: 60px 0 80px 0;
    }
    
    .email-signup-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }
    
    .video-container {
        width: 100vw;
        height: 150vw; /* Taller on smaller phones */
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%); /* ensure full-bleed on both sides */
    }
    
    .hero-overlay {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Adjust form spacing for mobile */
    .hero-form {
        gap: 0.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.5rem 0.75rem;
        min-height: 40px;
    }
    
    .checkbox-text {
        font-size: 0.8rem;
    }
    
    .interest-checkboxes {
        margin-bottom: 0.5rem;
        padding: 0.75rem;
    }
    
    .interest-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }
    
    .feature-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .email-signup-section {
        padding: 50px 0;
    }

    .email-input-group {
        flex-direction: column;
        gap: 1rem;
        background: transparent;
        border: none;
        padding: 0;
    }

    .email-input {
        border-radius: 50px;
        text-align: center;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .email-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Button Loading States */
.btn-text,
.btn-loading {
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hero-submit-btn.loading .btn-text {
    opacity: 0;
}

.hero-submit-btn.loading .btn-loading {
    opacity: 1;
}

/* Loading States */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--mint-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--mint-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--mint-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--mint-primary);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    padding-left: 0.5rem;
}

.feature-list li:hover {
    color: var(--mint-primary);
    background: var(--gray-50);
    transform: translateX(5px);
}

.feature-list li i {
    color: var(--mint-primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-list li:hover i {
    transform: scale(1.2);
}

/* Email Signup Section */
.email-signup-section {
    padding: 80px 0;
    background: var(--mint-gradient);
    position: relative;
    overflow: hidden;
}

.email-signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.email-signup-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.email-signup-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.email-signup-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.email-signup-form {
    margin-bottom: 20px;
}

.email-input-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.email-input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-submit-btn {
    padding: 16px 32px;
    background: white;
    color: var(--mint-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: var(--gray-100);
}

.email-submit-btn:active {
    transform: translateY(0);
}

.email-submit-btn.loading {
    pointer-events: none;
}

.email-signup-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-top: 12px;
}

/* Thank You Section */
.thank-you-section {
    display: none !important;
    padding: 4rem 0;
    background: var(--white);
    border-radius: 24px;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.5s ease;
}

.thank-you-section.hidden {
    display: none !important;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--mint-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.back-btn {
    background: transparent;
    border: 2px solid var(--mint-primary);
    color: var(--mint-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: var(--mint-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    position: static;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Break out of container */
    background: var(--gray-900);
    backdrop-filter: none;
    border-top: 1px solid var(--gray-700);
    z-index: 10;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-links {
    margin: 0.5rem 0;
}

.footer-links a {
    color: var(--mint-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mint-light);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

.company-info {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.company-info p {
    margin: 0.25rem 0;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.social-link:hover {
    transform: translateY(-2px);
    color: var(--mint-primary);
}