@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@600;900&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: #0c0c0c;
    --primary: #00e676; 
    --primary-glow: rgba(0, 230, 118, 0.4);
    --accent: #ff9100;  
    --accent-red: #8b0000; 
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --grid-color: rgba(255, 255, 255, 0.05); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* Typography Highlights */
.highlight { color: var(--primary); }
.text-primary { color: var(--primary); }
.text-glow { text-shadow: 0 0 20px var(--primary-glow); }
.font-bold { font-weight: 700; }
.m-0 { margin: 0 !important; }

/* Layout Helpers */
.hero-flex {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0 4rem;
}

.hero-content h1 {
    max-width: 580px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-banner {
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(0 0 40px rgba(0, 230, 118, 0.25));
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-flex {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    .hero-content h1 {
        max-width: 100%;
    }
    .hero-subtext {
        margin: 0 auto 2rem;
    }
}

/* Specific UI Elements */
.badge-urgent {
    width: fit-content;
    background: rgba(255, 145, 0, 0.1);
    color: var(--accent);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 145, 0, 0.2);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00e676 0%, #ffd600 100%);
    border-radius: 12px 12px 0 0;
}

.glass-card-center {
    max-width: 850px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .hero-flex {
        padding: 2rem 0;
    }
    .hero-content h1 {
        font-size: 2.45rem; /* Increased size to match visual weight of the cards */
        line-height: 1.2;
    }
    .hero-subtext {
        font-size: 1.15rem;
    }
    .hero-banner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        transform: scale(1.35); /* Scales the image visually wider without causing overflow */
        transform-origin: top center; /* Keeps it pinned to the top while expanding outwards */
        margin-bottom: 3.5rem; /* Give room since it scales up */
    }
    .glass-card, .features-card {
        padding: 2.2rem 1.4rem; /* More balanced inner padding */
        width: 100%;
    }
    .feature-item {
        gap: 1.2rem;
        align-items: center;
    }
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    .feature-content h3 {
        font-size: 1.35rem; /* Large enough but fits beautifully */
    }
    .feature-content p {
        font-size: 1.1rem;
    }
    .form-input {
        font-size: 1.15rem;
        padding: 1.4rem;
    }
}

/* Features List */
.features-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    align-items: flex-start;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.feature-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}



/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.3rem;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.1;
    transition: var(--transition-smooth);
    text-decoration: none;
    text-align: center;
}

.btn-submit span {
    font-size: 1.5rem;
}

.btn-submit:hover {
    background: #00ff82;
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.btn-success {
    background: #00c853 !important;
}

.form-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 1rem auto 1rem;
}

.form-disclaimer {
    margin-top: 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Thank You Page Specifics */
.logo-header {
    text-align: center;
    padding: 4rem 0 3rem;
}
.logo-header img {
    height: 40px;
    width: auto;
}

.success-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.success-header h1 {
    font-size: clamp(1rem, 2.8vw, 1.8rem);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.success-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.success-logo {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.sub-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.sub-card-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.icon-blue { background: #2979ff; color: white; }
.icon-red { background: #ff5252; color: white; }

.sub-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.sub-card-content {
    flex: 1;
}

.sub-card-list {
    list-style: none;
    margin-bottom: 2rem;
}

.sub-card-list li {
    margin-bottom: 1.25rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-white);
}

.sub-card-list li::before {
    content: '•';
    position: absolute;
    left: 0.8rem;
    color: #2979ff;
    font-size: 1.8rem;
    line-height: 1;
}

.sub-card-gift-content {
    padding-left: 4.5rem;
}

.sub-card-gift-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.urgent-notice {
    color: var(--accent);
    font-weight: 800;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.15rem;
}

.watermark {
    position: fixed;
    bottom: 15px;
    right: 15px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1000;
}
.watermark img {
    height: 18px;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.font-bold {
    font-weight: 800;
}

.sub-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.sub-card-body {
    color: var(--text-white);
    line-height: 1.5;
    font-size: 0.9rem;
}

.email-subject {
    color: var(--text-muted);
}

.form-divider-lg {
    margin: 1.5rem auto 1rem;
}
