/* ============================================
   SEARCH IT - HIDDEN OBJECTS
   Candy Pop Design System
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Primary Palette */
    --candy-red: #ff6b6b;
    --candy-red-dark: #e85555;
    --candy-red-light: #ff9a9a;
    --candy-teal: #4ecdc4;
    --candy-teal-dark: #3db8b0;
    --candy-teal-light: #7eddd7;
    --candy-yellow: #ffe66d;
    --candy-yellow-dark: #f5d84a;
    --candy-pink: #c44569;
    --candy-pink-light: #e8789a;
    --candy-purple: #6c5ce7;
    --candy-purple-dark: #5a4bd1;
    --candy-green: #00b894;
    --candy-orange: #e17055;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fef9f4;
    --cream: #fff8f0;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --dark-purple: #2d1b4e;
    --dark-bg: #1a0e30;

    /* Typography */
    --font-display: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-candy: 0 6px 24px rgba(255, 107, 107, 0.25);
    --shadow-teal: 0 6px 24px rgba(78, 205, 196, 0.25);
    --shadow-yellow: 0 6px 24px rgba(255, 230, 109, 0.3);
    --shadow-inset-candy: inset 0 -4px 0 rgba(0,0,0,0.12);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-cookie: 500;
    --z-top: 600;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--candy-red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--candy-red-dark);
}

a:focus-visible {
    outline: 3px solid var(--candy-teal);
    outline-offset: 2px;
    border-radius: 4px;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

button:focus-visible {
    outline: 3px solid var(--candy-teal);
    outline-offset: 2px;
    border-radius: 4px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--gray-900);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Utility Classes --- */
.text-gradient {
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--candy-teal), var(--candy-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    color: var(--candy-yellow);
    text-shadow: 0 0 20px rgba(255, 230, 109, 0.5), 0 0 40px rgba(255, 230, 109, 0.2);
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-candy-stripe {
    height: 4px;
    background: linear-gradient(90deg,
        var(--candy-red) 0%,
        var(--candy-yellow) 25%,
        var(--candy-teal) 50%,
        var(--candy-purple) 75%,
        var(--candy-red) 100%
    );
    background-size: 200% 100%;
    animation: stripeSlide 8s linear infinite;
}

@keyframes stripeSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 10;
}

.logo-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce);
}

.logo-bubble-sm {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
}

.logo:hover .logo-bubble {
    transform: rotate(-8deg) scale(1.08);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--candy-red);
    background: rgba(255, 107, 107, 0.08);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg);
    box-shadow: var(--shadow-candy), var(--shadow-inset-candy);
    border-radius: var(--radius-full);
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, var(--candy-red-dark), var(--candy-pink));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 107, 0.35), var(--shadow-inset-candy);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 107, 0.08);
    z-index: 10;
    gap: 5px;
    transition: background var(--transition-fast);
}

.hamburger:hover {
    background: rgba(255, 107, 107, 0.15);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--candy-red);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    opacity: 0;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--candy-yellow);
}

.mobile-nav-overlay.active .mobile-nav-close {
    opacity: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
    color: var(--candy-yellow);
}

.mobile-nav-cta {
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    padding: var(--space-sm) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: 1.4rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-candy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-candy::after {
    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 ease;
}

.btn-candy:hover::after {
    left: 100%;
}

.btn-candy-primary {
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    color: var(--white);
    box-shadow: var(--shadow-candy), inset 0 -3px 0 rgba(0,0,0,0.15);
}

.btn-candy-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 107, 107, 0.4), inset 0 -3px 0 rgba(0,0,0,0.15);
}

.btn-candy-primary:active {
    transform: translateY(-1px);
}

.btn-candy-secondary {
    background: linear-gradient(135deg, var(--candy-teal), var(--candy-teal-dark));
    color: var(--white);
    box-shadow: var(--shadow-teal), inset 0 -3px 0 rgba(0,0,0,0.12);
}

.btn-candy-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(78, 205, 196, 0.4), inset 0 -3px 0 rgba(0,0,0,0.12);
}

.btn-candy-outline {
    background: transparent;
    color: var(--candy-teal);
    border: 2.5px solid var(--candy-teal);
    box-shadow: none;
}

.btn-candy-outline:hover {
    background: var(--candy-teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.btn-candy-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-candy-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
    background: linear-gradient(160deg,
        #fff5f5 0%,
        #fff0f0 20%,
        #f0fffe 50%,
        #fffef0 80%,
        #fff5f5 100%
    );
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--candy-red-light);
    top: -100px;
    right: -100px;
    animation: blobFloat1 12s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--candy-teal-light);
    bottom: -50px;
    left: -100px;
    animation: blobFloat2 15s ease-in-out infinite;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--candy-yellow);
    top: 30%;
    left: 40%;
    animation: blobFloat3 10s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0.15;
}

.hero-circle-1 {
    width: 120px;
    height: 120px;
    border-color: var(--candy-red);
    top: 15%;
    left: 8%;
    animation: circleRotate 20s linear infinite;
}

.hero-circle-2 {
    width: 80px;
    height: 80px;
    border-color: var(--candy-teal);
    bottom: 25%;
    right: 12%;
    animation: circleRotate 15s linear infinite reverse;
}

.hero-circle-3 {
    width: 60px;
    height: 60px;
    border-color: var(--candy-yellow);
    top: 60%;
    left: 20%;
    animation: circleRotate 25s linear infinite;
}

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

.hero-star {
    position: absolute;
    animation: starTwinkle 3s ease-in-out infinite;
}

.hero-star-1 {
    top: 12%;
    right: 20%;
    animation-delay: 0s;
}

.hero-star-2 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
}

.hero-star-3 {
    bottom: 30%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.2) rotate(15deg); }
}

/* Hero Content */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    background: rgba(255, 230, 109, 0.2);
    border: 2px solid rgba(255, 230, 109, 0.4);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--candy-pink);
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title-line1 {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink), var(--candy-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-line2 {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--candy-teal);
    -webkit-text-fill-color: var(--candy-teal);
    line-height: 1.2;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 107, 107, 0.1);
    max-width: fit-content;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
    border-radius: 1px;
}

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

.hero-phone-frame {
    position: relative;
    width: 280px;
    border-radius: 36px;
    background: var(--gray-900);
    padding: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--gray-900);
    border-radius: 0 0 16px 16px;
    z-index: 3;
}

.hero-phone-screen {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.hero-phone-shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 80%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.12) 50%, transparent 55%);
    transform: skewX(-15deg);
    pointer-events: none;
    animation: phoneShine 6s ease-in-out infinite;
}

@keyframes phoneShine {
    0%, 100% { left: -80%; }
    50% { left: 120%; }
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
    border: 2px solid rgba(0,0,0,0.04);
}

.hero-floating-card-1 {
    top: 15%;
    right: -20px;
}

.hero-floating-card-2 {
    bottom: 20%;
    left: -30px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-pop {
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s ease both;
}

.animate-slide-up.delay-1 { animation-delay: 0.15s; }
.animate-slide-up.delay-2 { animation-delay: 0.3s; }
.animate-slide-up.delay-3 { animation-delay: 0.45s; }

.animate-float {
    animation: floatUpDown 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceSlow 4s ease-in-out infinite;
}

.animate-bounce-slow-delay {
    animation: bounceSlow 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll-triggered animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-section {
    padding: var(--space-lg) 0;
    background: var(--white);
    position: relative;
    z-index: 4;
}

.social-proof-ticker {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.06), rgba(255, 230, 109, 0.06));
    border: 2px solid rgba(78, 205, 196, 0.15);
    border-radius: var(--radius-full);
    max-width: 500px;
    margin: 0 auto;
}

.ticker-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-live-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--candy-green);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.ticker-messages {
    position: relative;
    height: 24px;
    overflow: hidden;
    flex: 1;
}

.ticker-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
}

.ticker-message.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--candy-teal-dark);
    margin-bottom: var(--space-md);
}

.section-badge-alt {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
    color: var(--candy-red);
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: var(--space-2xl);
}

.about-card-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    background: linear-gradient(135deg, var(--off-white), var(--cream));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 2px solid rgba(255, 107, 107, 0.1);
    box-shadow: var(--shadow-md);
}

.about-card-image {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    border: 4px solid var(--white);
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.about-tag {
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-candy);
}

/* About Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.about-stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 107, 0.2);
}

.about-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
}

.about-stat-icon-1 { background: rgba(255, 107, 107, 0.08); }
.about-stat-icon-2 { background: rgba(78, 205, 196, 0.08); }
.about-stat-icon-3 { background: rgba(255, 230, 109, 0.12); }
.about-stat-icon-4 { background: rgba(196, 69, 105, 0.08); }

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    opacity: 0.06;
}

.about-deco-circle-1 {
    width: 300px;
    height: 300px;
    border-color: var(--candy-red);
    top: -50px;
    right: -100px;
}

.about-deco-circle-2 {
    width: 200px;
    height: 200px;
    border-color: var(--candy-teal);
    bottom: -50px;
    left: -50px;
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.screenshots-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(255, 107, 107, 0.04) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: center;
}

.screenshot-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 700px;
    width: 100%;
    border: 4px solid var(--white);
    transition: transform var(--transition-base);
}

.screenshot-card:hover {
    transform: scale(1.02);
}

.screenshot-card img {
    width: 100%;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.screenshot-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--candy-red);
    color: var(--white);
    border-color: var(--candy-red);
    box-shadow: var(--shadow-candy);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--candy-red);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

.carousel-dot:hover:not(.active) {
    background: var(--gray-400);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.feature-card-deco {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.06;
    transition: all var(--transition-base);
}

.feature-card-1 .feature-card-deco { background: var(--candy-red); }
.feature-card-2 .feature-card-deco { background: var(--candy-teal); }
.feature-card-3 .feature-card-deco { background: var(--candy-yellow); }
.feature-card-4 .feature-card-deco { background: var(--candy-pink); }
.feature-card-5 .feature-card-deco { background: var(--candy-purple); }
.feature-card-6 .feature-card-deco { background: var(--candy-green); }

.feature-card:hover .feature-card-deco {
    opacity: 0.12;
    transform: scale(1.5);
}

.feature-card-1:hover { border-color: rgba(255, 107, 107, 0.3); }
.feature-card-2:hover { border-color: rgba(78, 205, 196, 0.3); }
.feature-card-3:hover { border-color: rgba(255, 230, 109, 0.5); }
.feature-card-4:hover { border-color: rgba(196, 69, 105, 0.3); }
.feature-card-5:hover { border-color: rgba(108, 92, 231, 0.3); }
.feature-card-6:hover { border-color: rgba(0, 184, 148, 0.3); }

.feature-icon {
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--dark-purple), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.how-bg-wave,
.how-bg-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.how-bg-wave {
    top: -2px;
}

.how-bg-wave-bottom {
    bottom: -2px;
}

.how-bg-wave svg,
.how-bg-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.how-section .container {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.step-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-candy);
}

.step-connector {
    display: none;
}

.step-icon {
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--off-white), var(--cream));
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 107, 0.08);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--white), var(--off-white));
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(255, 107, 107, 0.2);
}

.faq-item.active {
    border-color: var(--candy-red);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(255, 107, 107, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: var(--space-md);
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--candy-red);
}

.faq-item.active .faq-question {
    color: var(--candy-red);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gray-500);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--candy-red);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--candy-teal-dark);
    text-decoration: underline;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--dark-purple), #3d2066, var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.signup-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.signup-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.signup-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--candy-red);
    top: -100px;
    right: -50px;
}

.signup-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--candy-teal);
    bottom: -80px;
    left: -80px;
}

.signup-star {
    position: absolute;
    animation: starTwinkle 3s ease-in-out infinite;
}

.signup-star-1 {
    top: 15%;
    left: 10%;
}

.signup-star-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.signup-content {
    color: var(--white);
}

.signup-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.signup-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.signup-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Signup Form */
.signup-form-wrap {
    position: relative;
}

.signup-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 107, 107, 0.15);
}

.signup-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-optional {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.8rem;
}

.form-input-wrap {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--candy-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.12);
}

.form-input:focus + .form-input-icon,
.form-input:focus ~ .form-input-icon {
    color: var(--candy-teal);
}

.form-input.error {
    border-color: var(--candy-red);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--candy-red);
    margin-top: 4px;
    min-height: 18px;
    font-weight: 500;
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: var(--space-md);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    transition: all var(--transition-fast);
    position: relative;
    margin-top: 1px;
}

.form-checkbox-label input:checked + .form-checkbox-custom {
    background: var(--candy-teal);
    border-color: var(--candy-teal);
}

.form-checkbox-label input:checked + .form-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.form-checkbox-label a {
    color: var(--candy-teal-dark);
    text-decoration: underline;
}

/* Submit Button */
.btn-candy-full {
    margin-top: var(--space-md);
}

.btn-text,
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.spinner {
    animation: spin 1s linear infinite;
}

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

/* Form Message */
.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(0, 184, 148, 0.1);
    color: var(--candy-green);
    border: 2px solid rgba(0, 184, 148, 0.2);
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--candy-red);
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: var(--space-md);
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--candy-teal);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.trust-card a {
    color: var(--candy-teal-dark);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--dark-purple);
}

.footer-wave {
    position: relative;
    top: -2px;
    z-index: 1;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-inner {
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--candy-yellow);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--candy-yellow);
}

.footer-address {
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-xl);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-responsible {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--candy-yellow);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-candy);
    z-index: var(--z-base);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(255, 107, 107, 0.4);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--white);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--candy-yellow);
    padding: var(--space-xl);
    animation: slideUpCookie 0.5s ease;
}

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

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 2px;
}

.cookie-text strong {
    color: var(--gray-800);
    font-family: var(--font-display);
}

.cookie-text a {
    color: var(--candy-teal-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--candy-teal), var(--candy-teal-dark));
    color: var(--white);
    border-color: var(--candy-teal);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn-cookie-reject {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-cookie-reject:hover {
    background: var(--gray-200);
}

.btn-cookie-manage {
    background: transparent;
    color: var(--candy-teal-dark);
    border-color: var(--candy-teal);
}

.btn-cookie-manage:hover {
    background: rgba(78, 205, 196, 0.08);
}

.cookie-settings {
    max-width: 1200px;
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.cookie-setting-item {
    margin-bottom: var(--space-sm);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--gray-700);
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--candy-teal);
}

.cookie-settings .btn-cookie {
    margin-top: var(--space-md);
}

/* ============================================
   AGE MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    background: rgba(45, 27, 78, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.age-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 107, 107, 0.15);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-modal-icon {
    margin-bottom: var(--space-lg);
}

.age-modal-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.age-modal-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.age-modal-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding: calc(76px + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, #fff5f5, #f0fffe);
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.legal-section {
    padding: var(--space-3xl) 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-2xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--candy-red);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(255, 107, 107, 0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    font-size: 0.95rem;
    list-style: disc;
}

.legal-content li strong {
    color: var(--gray-800);
}

.legal-content a {
    color: var(--candy-teal-dark);
    text-decoration: underline;
}

.legal-footer-info {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--gray-100);
    text-align: center;
}

.legal-footer-info p {
    color: var(--gray-500);
    font-size: 0.88rem;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.gdpr-right-card {
    padding: var(--space-xl);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

.gdpr-right-card:hover {
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: var(--shadow-md);
}

.gdpr-right-icon {
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--gray-800);
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone-frame {
        width: 240px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .signup-benefits {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        height: 64px;
    }

    .hero-section {
        padding-top: 68px;
    }

    .hero-title-line1 {
        font-size: 2.4rem;
    }

    .hero-title-line2 {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md) var(--space-lg);
    }

    .hero-stat-divider {
        width: 40px;
        height: 2px;
    }

    .hero-floating-card {
        display: none;
    }

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

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

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

    .about-card-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-card-image {
        margin: 0 auto;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .legal-content {
        padding: var(--space-lg);
    }

    .legal-hero {
        padding-top: calc(68px + var(--space-2xl));
    }

    .carousel-slide {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-title-line1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-candy {
        width: 100%;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-modal-content {
        padding: var(--space-xl);
    }

    .signup-form {
        padding: var(--space-lg);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-consent,
    .age-modal,
    .back-to-top,
    .hero-bg-shapes,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}
```

Now the JavaScript:

```js