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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: white;
}

/* Advanced Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #667eea, #764ba2);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f093fb, #f5576c);
    top: 20%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #4facfe, #00f2fe);
    bottom: -175px;
    left: 30%;
    animation-delay: -14s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #43e97b, #38f9d7);
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, -30px) scale(0.9);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Mesh Gradient */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: mesh-shift 15s ease-in-out infinite;
}

@keyframes mesh-shift {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Enhanced Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-element 15s linear infinite;
}

.gift-icon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-icon {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.heart-icon {
    top: 80%;
    left: 70%;
    animation-delay: -10s;
}

.sparkle-icon {
    top: 30%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes float-element {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Glass Card Enhanced */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Modern Hero Section */
.hero-section {
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

/* Dynamic Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 20px;
}

.gradient-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: mesh-rotate 20s linear infinite;
    filter: blur(40px);
}

@keyframes mesh-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 160px;
    height: 160px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) translateX(-15px) rotate(240deg);
    }
}

.aurora-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(120, 119, 198, 0.1) 50%,
            transparent 60%);
    animation: aurora-flow 12s ease-in-out infinite;
}

@keyframes aurora-flow {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-100px);
    }

    50% {
        opacity: 0.8;
        transform: translateX(100px);
    }
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    min-height: 90vh;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.brand-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.brand-logo img {
    width: 260px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Hero Main Content */
.hero-main {
    grid-column: 1;
    text-align: left;
    max-width: 600px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.headline-accent {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.headline-primary {
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
}

.headline-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.headline-sub {
    display: block;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 0.5rem;
}

@keyframes gradient-shift {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-label {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-card {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50px;
    filter: blur(40px);
    animation: card-pulse 4s ease-in-out infinite;
}

@keyframes card-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.gift-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-box {
    font-size: 6rem;
    animation: gift-bounce 3s ease-in-out infinite;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-box svg {
    width: 100% !important;
    height: 100% !important;
}

@keyframes gift-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.gift-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle-float 4s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes sparkle-float {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-15px) rotate(180deg) scale(1.2);
    }
}

/* Modern Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 600px;
    justify-content: center;
    z-index: 10;
    pointer-events: auto;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 11;
    pointer-events: auto;
}

.scroll-social-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    z-index: 12;
    pointer-events: auto;
    position: relative;
}

.scroll-social-icon:hover {
    color: #ffbe3d;
    transform: translateY(-2px);
}

.scroll-social-icon svg {
    width: 100%;
    height: 100%;
}

.scroll-line-container {
    padding: 0 2rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.2) 100%);
    border-radius: 1px;
    position: relative;
    overflow: hidden;

}



.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom,
            rgba(102, 126, 234, 0.8) 0%,
            transparent 100%);
    animation: scroll-move 2s ease-in-out infinite;
}

@keyframes scroll-move {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

.scroll-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 4rem;
}

.countdown-card {
    padding: 3rem 2rem;
    text-align: center;
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.time-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 4rem;
}

.subscription-card {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.subscription-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.subscription-form {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

#email {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

#email:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 140px;
    text-decoration: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: rgba(72, 219, 251, 0.2);
    color: #48dbfb;
    opacity: 1;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    opacity: 1;
}

/* Footer */
.footer {
    margin-top: 2rem;
    position: relative;
    z-index: 100;
    padding: 24px;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 10;
    min-height: 60px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.footer-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    position: relative;
    pointer-events: auto;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-main {
        grid-column: 1;
        max-width: none;
        text-align: center;
    }

    .hero-visual {
        grid-column: 1;
        margin-top: 2rem;
    }

    .visual-card {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
    }

    .hero-container {
        padding: 0 1rem;
        min-height: 80vh;
    }

    .hero-headline {
        font-size: 3.8rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-mark {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .trust-badges {
        justify-content: center;
    }

    .visual-card {
        width: 260px;
        height: 260px;
    }

    .gift-box {
        font-size: 4rem;
        width: 260px;
        height: 260px;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-number {
        font-size: 2rem;
    }

    .input-group {
        display: flex;
        align-items: center;
        justify-content: center !important;
    }

    #email {
        min-width: auto;
    }

    .footer-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 3.2rem;
    }

    .headline-accent {
        font-size: 1rem;
    }

    .headline-sub {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .brand-logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        min-width: 200px;
    }

    .visual-card {
        width: 50px;
        height: 50px;
    }

    .gift-box {
        font-size: 3rem;
        width: 50px;
        height: 50px;
    }
    
    .scroll-hint {
        gap: 1.5rem;
        max-width: 350px;
    }
    
    .scroll-social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-icons-left,
    .social-icons-right {
        gap: 0.5rem;
    }

    .countdown-title,
    .subscription-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .orb {
        filter: blur(40px);
    }
}