/* ============================================
   CAMPA COLA — Premium Distributorship Website
   Full Redesign · Bold Red & Dark Theme
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* === BRAND COLORS === */
    --color-primary: #D90429;
    --color-primary-dark: #A8001C;
    --color-primary-light: #FF1A3C;
    --color-gold: #FFC107;
    --color-gold-dark: #E09900;
    --color-gold-light: #FFE066;

    /* === DARK PALETTE === */
    --color-dark: #0D0D0D;
    --color-dark-2: #141414;
    --color-dark-3: #1C1C1C;
    --color-dark-4: #272727;

    /* === NEUTRAL === */
    --color-white: #FFFFFF;
    --color-off-white: #F9F9F9;
    --color-gray-100: #F4F4F4;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #CCCCCC;
    --color-gray-400: #999999;
    --color-gray-500: #666666;
    --color-gray-600: #444444;

    /* === TEXT === */
    --color-text-primary: #111111;
    --color-text-secondary: #444444;
    --color-text-muted: #777777;
    --color-text-light: #AAAAAA;
    --color-text-on-dark: rgba(255,255,255,0.85);
    --color-text-on-dark-muted: rgba(255,255,255,0.5);

    /* === BORDER === */
    --color-border: #E5E5E5;
    --color-border-dark: rgba(255,255,255,0.08);
    --color-border-red: rgba(217, 4, 41, 0.2);

    /* === STATUS === */
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;

    /* === GRADIENTS === */
    --gradient-primary: linear-gradient(135deg, #D90429 0%, #FF1A3C 100%);
    --gradient-dark: linear-gradient(135deg, #0D0D0D 0%, #1C1C1C 100%);
    --gradient-hero: linear-gradient(135deg, #0D0D0D 0%, #200005 50%, #0D0D0D 100%);
    --gradient-cta: linear-gradient(135deg, #D90429 0%, #8B0000 100%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FF8C00 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F9F9F9 100%);

    /* === SHADOWS === */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 48px rgba(0,0,0,0.16);
    --shadow-red: 0 8px 32px rgba(217, 4, 41, 0.35);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.13);

    /* === TYPOGRAPHY === */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* === FONT SIZES === */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;

    /* === 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;
    --space-5xl: 8rem;

    /* === BORDER RADIUS === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* === TRANSITIONS === */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* === Z-INDEX === */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    --z-preloader: 9999;

    /* === LAYOUT === */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    --header-height: 72px;
    --vh: 1vh;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-primary);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-dark); }

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(217, 4, 41, 0.07);
    border: 1px solid rgba(217, 4, 41, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-tag i { font-size: 0.85rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.section-title span {
    color: var(--color-primary);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header.center .section-desc {
    text-align: center;
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn i { font-size: 1rem; flex-shrink: 0; }

/* Primary */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(217, 4, 41, 0.25);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: var(--color-white);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* White (for dark backgrounds) */
.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Outline Gold (for dark CTA backgrounds) */
.btn-outline-white {
    background: transparent;
    color: var(--color-gold);
    border-color: rgba(255,193,7,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,193,7,0.08);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Sizes */
.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn-lg { padding: 0.85rem 2rem; font-size: var(--text-base); }
.btn-block { width: 100%; }
.btn.loading { opacity: 0.7; pointer-events: none; }

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    height: var(--header-height);
    background: linear-gradient(135deg, #4A0072 0%, #6B21A8 50%, #5B1A8A 100%);
    transition: background var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 2px 20px rgba(74, 0, 114, 0.35);
}

.header.scrolled {
    background: linear-gradient(135deg, #3A0058 0%, #5B1A8A 50%, #4A0072 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 28px rgba(74, 0, 114, 0.55);
}

.header .container { height: 100%; }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-base);
}

.header.scrolled .logo img { filter: brightness(0) invert(1); }

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
    background: rgba(255,255,255,0.12);
}

.nav-link.active {
    color: var(--color-gold);
    font-weight: 600;
}

.nav-login {
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
}

.nav-login:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

/* Nav CTA - Gold button on purple header */
.nav-cta .btn {
    font-size: var(--text-sm);
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.nav-cta .btn:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.nav-toggle:hover { background: rgba(255,255,255,0.08); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   7. HERO SECTION — Full Screen Bold Design
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #06000C;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

/* ── Background paint wash layers ── */
.hero-bg-paint {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 15% 85%, rgba(217, 4, 41, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 88% 12%, rgba(107, 33, 168, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(155, 8, 100, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-bg-glow-red {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.45) 0%, transparent 65%);
    bottom: -20vw;
    left: -15vw;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-glow-purple {
    position: absolute;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.55) 0%, transparent 65%);
    top: -15vw;
    right: -12vw;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-diagonal {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
        rgba(217, 4, 41, 0.12) 0%,
        rgba(155, 0, 128, 0.08) 30%,
        rgba(107, 33, 168, 0.12) 65%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* ── Floating sparkles ── */
.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: sparkleAnim 3.5s ease-in-out infinite;
}

@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.4) rotate(180deg); }
}

.s1 { top: 18%; left: 12%; animation-delay: 0s; width: 6px; height: 6px; background: rgba(255,193,7,0.8); }
.s2 { top: 65%; left: 6%; animation-delay: 0.7s; width: 3px; height: 3px; }
.s3 { top: 40%; left: 42%; animation-delay: 1.4s; width: 3px; height: 3px; background: rgba(255,193,7,0.5); }
.s4 { top: 10%; right: 22%; animation-delay: 0.3s; background: rgba(255,193,7,0.6); }
.s5 { top: 72%; right: 12%; animation-delay: 1.1s; width: 5px; height: 5px; }
.s6 { top: 55%; left: 26%; animation-delay: 2s; width: 3px; height: 3px; }
.s7 { top: 25%; right: 40%; animation-delay: 0.9s; width: 4px; height: 4px; background: rgba(217,4,41,0.7); }

/* ── Grid layout ── */
.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 2rem;
    min-height: calc(100vh - var(--header-height));
    padding: 3.5rem 0 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ── Left: Text ── */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.75rem;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px #22C55E;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 4px #22C55E; }
    50% { box-shadow: 0 0 14px #22C55E, 0 0 28px rgba(34,197,94,0.35); }
}

/* ── Main headline ── */
.hero-headline-block { margin-bottom: 1.25rem; }

.hero-campa-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5.5rem, 14vw, 11rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.85;
    letter-spacing: -0.01em;
    text-shadow:
        0 0 80px rgba(217, 4, 41, 0.55),
        8px 8px 0 rgba(107, 33, 168, 0.25),
        -2px -2px 0 rgba(107, 33, 168, 0.15);
    margin-bottom: 0.3rem;
}

.hero-franchise-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-franchise-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.45));
}

.hero-franchise-line:last-child {
    background: linear-gradient(90deg, rgba(255,193,7,0.45), transparent);
}

.hero-franchise-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 400;
    background: linear-gradient(135deg, #FFE066 0%, #FFB300 40%, #FF8C00 70%, #FFB300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3em;
    white-space: nowrap;
    line-height: 1;
}

/* ── Tagline & body ── */
.hero-tagline-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    margin-bottom: 1.1rem;
}

.hero-body-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2rem;
}

.hero-body-text strong {
    color: #FFD700;
    font-weight: 700;
}

/* ── CTA buttons ── */
.hero-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #D90429 0%, #FF1A3C 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(217, 4, 41, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    border: none;
}

.hero-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(217, 4, 41, 0.6);
    color: #fff;
}

.hero-apply-btn i { font-size: 1rem; transition: transform 0.3s; }
.hero-apply-btn:hover i { transform: translateX(4px); }

.hero-plans-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.hero-plans-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

/* ── Stats strip ── */
.hero-stats-inline {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 460px;
}

.hi-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hi-stat strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.03em;
}

.hi-stat span {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 3px;
}

.hi-divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,0.09);
    flex-shrink: 0;
}

/* ── Right: Product visual ── */
.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-wrap {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated rings */
.hp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.hp-ring-outer {
    width: 390px;
    height: 390px;
    border-color: rgba(217, 4, 41, 0.1);
    animation: ringSpin 16s linear infinite;
}

.hp-ring-middle {
    width: 310px;
    height: 310px;
    border-color: rgba(107, 33, 168, 0.15);
    animation: ringSpin 10s linear infinite reverse;
    border-style: dashed;
}

.hp-ring-inner {
    width: 240px;
    height: 240px;
    border-color: rgba(255, 193, 7, 0.08);
    animation: ringSpin 6s linear infinite;
}

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

/* Glow behind product */
.hp-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(217, 4, 41, 0.35) 0%,
        rgba(107, 33, 168, 0.25) 45%,
        transparent 70%);
    filter: blur(36px);
    animation: glowBreath 4s ease-in-out infinite;
}

@keyframes glowBreath {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Product image */
.hp-img {
    position: relative;
    z-index: 2;
    height: 420px;
    width: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 60px rgba(217, 4, 41, 0.5))
        drop-shadow(0 0 40px rgba(107, 33, 168, 0.3));
    animation: productFloat 4.5s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-22px) rotate(1.5deg); }
}

/* Floating info cards */
.hp-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1.1rem;
    background: rgba(15, 5, 25, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    z-index: 3;
    min-width: 160px;
}

.hp-float-card i {
    font-size: 1.4rem;
    color: #FFD700;
    flex-shrink: 0;
}

.hp-float-card div {
    display: flex;
    flex-direction: column;
}

.hp-float-card strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hp-float-card small {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1px;
}

.hp-card-top {
    top: 30px;
    left: -30px;
    animation: cardFloat 4s ease-in-out infinite;
}

.hp-card-bottom {
    bottom: 50px;
    right: -30px;
    animation: cardFloat 4s ease-in-out infinite 1.8s;
}

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

/* ── Scroll cue ── */
.hero-scroll-cue {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.28);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 3;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-scroll-cue:hover { color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.6); }

.hero-scroll-cue i {
    font-size: 1rem;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.stats-section {
    background: #0A0010;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 100% at 0% 50%, rgba(217,4,41,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 100% at 100% 50%, rgba(107,33,168,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #0A0010;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.stat-card:hover {
    background: rgba(217,4,41,0.06);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before { opacity: 1; }

.stat-icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: center;
    opacity: 0.7;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 0.02em;
    display: inline;
}

.stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--color-gold);
    line-height: 1;
    display: inline;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================
   9. PRODUCTS SECTION
   ============================================ */
.products-section {
    background: #06000C;
    padding: var(--space-5xl) 0;
    overflow: hidden;
    position: relative;
}

.products-section::before {
    content: 'CAMPA';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10rem, 20vw, 18rem);
    color: rgba(255,255,255,0.018);
    letter-spacing: 0.05em;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-xl);
}

.products-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 0.9;
    position: relative;
}

.products-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    margin-top: 0.6rem;
}

.products-title em {
    font-style: normal;
    color: var(--color-primary);
}

.products-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-bottom: 0.5rem;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--color-white);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.products-carousel {
    overflow: hidden;
    margin: 0 calc(-1 * var(--space-lg));
    padding: 0 var(--space-lg) var(--space-xl);
}

/* Drag hint */
.products-carousel::after {
    content: '';
    display: block;
    clear: both;
}

/* Product Cards */
.product-card {
    background: #0E0016;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(255,255,255,0.06);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 40px rgba(217,4,41,0.08);
    border-color: rgba(217,4,41,0.18);
}

.product-card:hover::after { transform: scaleX(1); }

/* Flavor color accents */
.product-card[data-flavor="cola"] { background: linear-gradient(160deg, #0E0008 0%, #1A0010 100%); }
.product-card[data-flavor="orange"] { background: linear-gradient(160deg, #0E0800 0%, #1A0E00 100%); }
.product-card[data-flavor="lemon"] { background: linear-gradient(160deg, #060E00 0%, #0C1600 100%); }
.product-card[data-flavor="powerup"] { background: linear-gradient(160deg, #06000E 0%, #0C0018 100%); }
.product-card[data-flavor="cricket"] { background: linear-gradient(160deg, #0A0800 0%, #180E00 100%); }

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

.product-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 1;
}

.product-image img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(217,4,41,0.15));
    transition: transform var(--transition-base), filter var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)) drop-shadow(0 0 30px rgba(217,4,41,0.25));
}

/* ============================================
   10. ABOUT PREVIEW SECTION
   ============================================ */
.about-preview-section {
    background: #06000C;
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(217,4,41,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 100% 0%, rgba(107,33,168,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Big background decade number */
.about-preview-section::before {
    content: '55';
    position: absolute;
    right: -2%;
    bottom: -10%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14rem, 30vw, 26rem);
    color: rgba(255,255,255,0.015);
    letter-spacing: -0.02em;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

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

/* Image Stack */
.image-stack {
    position: relative;
    height: 540px;
}

.image-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 75%;
    height: 85%;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.85) contrast(1.1);
}

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

.image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 52%;
    overflow: hidden;
    border: 2px solid rgba(217,4,41,0.3);
    box-shadow: 0 0 40px rgba(217,4,41,0.1);
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
}

.floating-badge {
    position: absolute;
    top: -16px;
    left: 68%;
    background: var(--color-primary);
    color: var(--color-white);
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(217,4,41,0.15), 0 0 0 12px rgba(217,4,41,0.06);
    z-index: 3;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.badge-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
}

.badge-text {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* About Content */
.about-preview-content {
    position: relative;
}

.about-preview-content .section-tag {
    color: var(--color-gold);
    background: rgba(255,193,7,0.08);
    border-color: rgba(255,193,7,0.2);
}

.about-preview-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    line-height: 1.15;
}

.about-preview-content .section-title span {
    background: linear-gradient(135deg, var(--color-primary), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.25s;
}

.about-features li:hover { color: rgba(255,255,255,0.9); }

.about-features li i {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(217,4,41,0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

/* ============================================
   11. REQUIREMENTS SECTION
   ============================================ */
.requirements-section {
    background: #0A0010;
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217,4,41,0.4), rgba(255,193,7,0.3), transparent);
}

.requirements-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107,33,168,0.3), transparent);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.requirements-content .section-title {
    margin-top: var(--space-sm);
    color: var(--color-white);
}

.requirements-content .section-tag {
    color: var(--color-primary);
    background: rgba(217,4,41,0.08);
    border-color: rgba(217,4,41,0.2);
}

.section-desc {
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.45);
    font-size: var(--text-sm);
}

.requirements-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: var(--space-xl);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: #0A0010;
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.35s ease;
}

.requirement-item:hover {
    background: rgba(217,4,41,0.04);
}

.requirement-item:hover::before { height: 100%; }

.requirement-icon {
    width: 40px;
    height: 40px;
    background: rgba(217,4,41,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(217,4,41,0.15);
}

.requirement-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.requirement-info p {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

/* CTA Card (sidebar) */
.cta-card {
    background: linear-gradient(145deg, #16001F 0%, #0E0016 100%);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid rgba(217,4,41,0.2);
    position: sticky;
    top: 100px;
    box-shadow: 0 0 60px rgba(217,4,41,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(217,4,41,0.15), rgba(255,193,7,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-gold);
    margin: 0 auto var(--space-lg);
    border: 1px solid rgba(255,193,7,0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.cta-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-transform: uppercase;
}

.cta-card p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.cta-features span i { color: var(--color-gold); }

/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: #06000C;
    padding: var(--space-5xl) 0;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    left: -2%;
    top: -5%;
    font-size: clamp(16rem, 35vw, 28rem);
    font-family: Georgia, serif;
    color: rgba(217,4,41,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testimonials-section .section-header { position: relative; z-index: 1; }

.testimonials-section .section-tag {
    color: var(--color-gold);
    background: rgba(255,193,7,0.08);
    border-color: rgba(255,193,7,0.2);
}

.testimonials-section .section-title { color: var(--color-white); }
.testimonials-section .section-title span { color: var(--color-primary); }

.testimonials-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 2px solid rgba(217,4,41,0.2);
    padding: var(--space-2xl) var(--space-xl);
    height: auto;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(217,4,41,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(217,4,41,0.15);
    border-top-color: var(--color-primary);
    background: rgba(255,255,255,0.04);
}

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

.testimonial-quote {
    color: var(--color-primary);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.4;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.author-avatar {
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(217,4,41,0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.author-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2px;
}

.author-info span {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.testimonial-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   13. FAQ SECTION
   ============================================ */
.faq-section {
    background: #0A0010;
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.faq-section .section-header { position: relative; z-index: 1; }

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

.faq-section .section-title span {
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section .section-tag {
    color: var(--color-primary);
    background: rgba(217,4,41,0.08);
    border-color: rgba(217,4,41,0.2);
}

.faq-section .section-desc { color: rgba(255,255,255,0.4); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-bottom: var(--space-2xl);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #0A0010;
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--color-primary), var(--color-gold));
    transition: height 0.4s ease;
}

.faq-item:hover { background: rgba(255,255,255,0.02); }

.faq-item.active {
    background: rgba(217,4,41,0.03);
}

.faq-item.active::before { height: 100%; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    user-select: none;
    transition: background var(--transition-fast);
}

.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-item.active .faq-question { background: transparent; }

.faq-question h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    flex: 1;
    transition: color 0.25s;
}

.faq-item.active .faq-question h4 { color: var(--color-white); }

.faq-question i {
    color: rgba(255,255,255,0.25);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform var(--transition-base), color var(--transition-base);
    background: rgba(255,255,255,0.04);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--color-primary);
    background: rgba(217,4,41,0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
}

.faq-cta {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.faq-cta p {
    color: rgba(255,255,255,0.4);
    font-size: var(--text-sm);
}

/* ============================================
   14. CTA SECTION
   ============================================ */
.cta-section {
    background: #06000C;
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

/* Diagonal red-to-gold slash */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217,4,41,0.12) 0%, rgba(255,193,7,0.04) 100%);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* Big background text */
.cta-section::after {
    content: 'REVIVAL';
    position: absolute;
    right: -3%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 18vw, 15rem);
    color: rgba(255,255,255,0.018);
    letter-spacing: 0.05em;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.cta-bg { display: none; } /* remove old bubble layer */

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Top accent line */
.cta-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    margin: 0 auto var(--space-xl);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.cta-content h2 span {
    display: block;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
}

.cta-content p {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
    background: #050008;
    color: var(--color-text-on-dark);
    position: relative;
    overflow: hidden;
}

/* Top edge glow line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(217,4,41,0.5) 30%, rgba(255,193,7,0.4) 50%, rgba(107,33,168,0.4) 70%, transparent 100%);
}

.footer-top {
    padding: var(--space-4xl) 0 var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo img {
    height: 42px;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-lg);
    opacity: 0.85;
}

.footer-brand p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.3);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

/* Reliance badge in footer */
.footer-brand::after {
    content: 'A RELIANCE CONSUMER PRODUCT';
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(255,193,7,0.5);
    text-transform: uppercase;
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: var(--space-md);
}

.footer-social {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links ul a {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.3);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.02em;
}

.footer-links ul a::before {
    content: '—';
    font-size: 0.6rem;
    opacity: 0.4;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links ul a:hover {
    color: rgba(255,255,255,0.8);
    padding-left: 4px;
}

.footer-links ul a:hover::before { opacity: 1; color: var(--color-primary); }

.footer-contact ul { display: flex; flex-direction: column; gap: var(--space-md); }

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.3);
    line-height: 1.6;
}

.footer-contact ul li i {
    color: var(--color-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(217,4,41,0.08);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact ul a {
    color: rgba(255,255,255,0.3);
    transition: color var(--transition-fast);
}

.footer-contact ul a:hover { color: var(--color-primary); }

.footer-bottom {
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 1;
}

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

.footer-bottom-content p {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.03em;
}

.footer-bottom-content p span { color: var(--color-primary); }

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

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.2);
    transition: color var(--transition-fast);
    letter-spacing: 0.04em;
}

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

/* ============================================
   16. PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(217, 4, 41, 0.15) 0%, transparent 70%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-header-content h1 span { color: var(--color-primary); }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--color-primary); }

.breadcrumb i {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

.breadcrumb span { color: rgba(255,255,255,0.7); }

/* ============================================
   17. FRANCHISE PAGE - BUSINESS MODELS
   ============================================ */
.franchise-intro-section {
    background: var(--color-white);
    padding: var(--space-4xl) 0;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.intro-feature i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.business-models-section {
    background: var(--color-gray-100);
    padding: var(--space-4xl) 0;
}

.business-model {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.business-model:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
    border-color: var(--color-border-red);
}

.business-model.featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(217, 4, 41, 0.12);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

.model-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-border);
}

.business-model.featured .model-header {
    background: rgba(217, 4, 41, 0.04);
    border-bottom-color: rgba(217, 4, 41, 0.1);
}

.model-icon {
    width: 52px;
    height: 52px;
    background: rgba(217, 4, 41, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.model-title { flex: 1; }

.model-title h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.model-tag {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.model-investment {
    text-align: right;
}

.model-investment .label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.model-investment .amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.model-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: var(--space-2xl);
}

.model-description { padding-right: var(--space-2xl); border-right: 1px solid var(--color-border); }
.model-details { padding-left: var(--space-2xl); }

.model-description h4,
.model-details h5 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.model-description h4:first-child,
.model-details h5:first-child { margin-top: 0; }

.model-description p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.feature-list { display: flex; flex-direction: column; gap: 0.5rem; }

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.feature-list li i { color: var(--color-success); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.detail-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-border);
}

.detail-card.highlight {
    background: rgba(217, 4, 41, 0.04);
    border-color: rgba(217, 4, 41, 0.12);
}

.breakdown-list { display: flex; flex-direction: column; gap: 0.5rem; }

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border);
}

.breakdown-list li:last-child { border-bottom: none; }
.breakdown-list li span:last-child { font-weight: 600; color: var(--color-text-primary); }

.profit-info { display: flex; flex-direction: column; gap: var(--space-sm); }

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(217, 4, 41, 0.08);
}

.profit-item:last-child { border-bottom: none; }

.profit-label { font-size: var(--text-sm); color: var(--color-text-muted); }

.profit-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 400;
}

.detail-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.model-footer {
    padding: var(--space-lg) var(--space-2xl);
    border-top: 1px solid var(--color-border);
    background: var(--color-gray-100);
}

/* ============================================
   18. COMPARISON TABLE
   ============================================ */
.comparison-section {
    background: var(--color-white);
    padding: var(--space-4xl) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    background: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    white-space: nowrap;
}

.comparison-table th:first-child { text-align: left; padding-left: var(--space-xl); }
.comparison-table th.highlight { background: var(--color-primary); }

.comparison-table td {
    padding: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-primary);
    padding-left: var(--space-xl);
}

.comparison-table td.highlight { background: rgba(217, 4, 41, 0.04); font-weight: 600; }

.comparison-table tbody tr:hover td { background: var(--color-gray-100); }
.comparison-table tbody tr:hover td.highlight { background: rgba(217, 4, 41, 0.06); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table .yes { color: var(--color-success); font-size: 1.1rem; }
.comparison-table .no { color: var(--color-gray-300); font-size: 1.1rem; }

/* ============================================
   19. PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--color-dark);
    padding: var(--space-4xl) 0;
}

.process-section .section-title { color: var(--color-white); }
.process-section .section-title span { color: var(--color-primary); }
.process-section .section-desc { color: rgba(255,255,255,0.5); }
.process-section .section-tag {
    color: var(--color-gold);
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

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

.process-step {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.process-step:hover::before { opacity: 0.05; }
.process-step:hover { border-color: rgba(217, 4, 41, 0.2); transform: translateY(-4px); }

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(217, 4, 41, 0.12);
    line-height: 1;
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    letter-spacing: -0.02em;
    z-index: 0;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(217, 4, 41, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.process-step:hover .step-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.process-step h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.process-step p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   20. DOCUMENTS SECTION
   ============================================ */
.documents-section {
    background: var(--color-gray-100);
    padding: var(--space-4xl) 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-4xl);
    align-items: start;
}

.documents-content .section-title { margin-top: var(--space-sm); }
.documents-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    font-size: var(--text-sm);
}

.doc-categories { display: flex; flex-direction: column; gap: var(--space-lg); }

.doc-category {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
}

.doc-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.doc-category h4 i { color: var(--color-primary); }

.doc-category ul { display: flex; flex-direction: column; gap: 0.5rem; }

.doc-category ul li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding-left: 1rem;
    position: relative;
}

.doc-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
}

.documents-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: 100px;
}

.documents-cta .cta-card { padding: var(--space-xl); }
.documents-cta .cta-card.highlight {
    border-color: var(--color-primary);
    background: rgba(217, 4, 41, 0.03);
}

/* ============================================
   21. APPLICATION FORM (Apply Page)
   ============================================ */
.application-section {
    background: var(--color-gray-100);
    padding: var(--space-4xl) 0;
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-2xl);
    align-items: start;
}

.application-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.form-header { margin-bottom: var(--space-2xl); }

.form-header .section-title { margin-top: var(--space-sm); }

.form-header p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.required { color: var(--color-primary); }
.optional { color: var(--color-text-muted); font-size: var(--text-xs); }

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.progress-text {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* Form Sections */
.form-section { margin-bottom: var(--space-2xl); }

.form-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-gray-200);
}

.section-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-section-header h3 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-row.three-cols { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: var(--space-lg); }
.form-group:last-child { margin-bottom: 0; }

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-control {
    width: 100%;
    padding: 0.65rem var(--space-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-control::placeholder { color: var(--color-text-light); }

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.08);
    background: var(--color-white);
}

.form-control.error { border-color: var(--color-error); }
.form-control.success { border-color: var(--color-success); }

.form-control:disabled {
    background: var(--color-gray-100);
    cursor: not-allowed;
    opacity: 0.7;
}

textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Input Group */
.input-group { display: flex; align-items: stretch; }

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0.65rem var(--space-md);
    background: var(--color-gray-100);
    border: 1.5px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.input-group .form-control { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* Error / Char Count */
.error-message {
    font-size: var(--text-xs);
    color: var(--color-error);
    font-weight: 500;
    min-height: 16px;
}

.char-count {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 2px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    display: block;
    margin-bottom: 2px;
}

.checkbox-label a { color: var(--color-primary); font-weight: 600; }
.checkbox-label a:hover { text-decoration: underline; }

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.success-icon {
    font-size: 3rem;
    color: var(--color-success);
    margin-bottom: var(--space-lg);
}

.reference-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(217, 4, 41, 0.07);
    border: 1px solid rgba(217, 4, 41, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

/* Application Sidebar */
.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.sidebar-card.highlight {
    border-color: var(--color-primary);
    background: rgba(217, 4, 41, 0.02);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-gray-100);
    border-bottom: 1px solid var(--color-border);
}

.sidebar-card.highlight .sidebar-card-header {
    background: rgba(217, 4, 41, 0.05);
    border-bottom-color: rgba(217, 4, 41, 0.1);
}

.sidebar-card-header i {
    color: var(--color-primary);
    font-size: 1rem;
}

.sidebar-card-header h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text-primary);
}

.sidebar-card-body { padding: var(--space-lg); }

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.investment-item:last-of-type { border-bottom: none; margin-bottom: var(--space-md); }
.inv-type { color: var(--color-text-secondary); }
.inv-amount { font-weight: 700; color: var(--color-primary); font-size: var(--text-sm); }

.doc-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--space-md); }

.doc-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.doc-list li i { color: var(--color-primary); font-size: 0.9rem; }

.doc-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding: var(--space-sm);
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    line-height: 1.5;
}

.doc-note i { flex-shrink: 0; margin-top: 1px; }

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

.timeline-mini-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.tm-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(217, 4, 41, 0.25);
}

.tm-content h5 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1px;
}

.tm-content p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.help-contacts { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }

.help-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    color: var(--color-primary);
    padding: 0.6rem;
    border-radius: var(--radius-md);
    background: rgba(217, 4, 41, 0.05);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.help-link:hover { background: rgba(217, 4, 41, 0.1); }
.help-link i { font-size: 1rem; }

/* Security Notice */
.security-notice-section {
    background: var(--color-white);
    padding: var(--space-2xl) 0;
}

.security-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.security-icon {
    font-size: 1.75rem;
    color: var(--color-success);
    flex-shrink: 0;
}

.security-content h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.security-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   22. ABOUT PAGE
   ============================================ */
.about-intro-section {
    background: var(--color-white);
    padding: var(--space-4xl) 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.lead-text {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.about-intro-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.about-stat .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 0.02em;
}

.about-stat .stat-text {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

.about-intro-image { position: relative; }

.image-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.image-overlay { display: none; }

.floating-card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    box-shadow: var(--shadow-red);
}

.floating-card i { font-size: 1.1rem; color: var(--color-gold); }

/* Timeline */
.timeline-section {
    background: var(--color-gray-100);
    padding: var(--space-4xl) 0;
}

.timeline { position: relative; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-marker { order: 2; }
.timeline-item:nth-child(odd) .timeline-content { order: 3; }
.timeline-item:nth-child(odd) > :first-child { order: 1; }

.timeline-item:nth-child(even) .timeline-marker { order: 2; }
.timeline-item:nth-child(even) .timeline-content { order: 1; text-align: right; }
.timeline-item:nth-child(even) > :last-child { order: 3; }

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.timeline-marker span {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    box-shadow: var(--shadow-red);
    letter-spacing: 0.05em;
}

.timeline-content {
    padding: 0 var(--space-xl);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: rgba(217, 4, 41, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.timeline-item:nth-child(even) .timeline-icon { margin-left: auto; }

.timeline-content h3 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   23. CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--color-gray-100);
    padding: var(--space-4xl) 0;
}

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

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--color-border-red);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(217, 4, 41, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.contact-card-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-card-content a {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--text-sm);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

/* ============================================
   24. WHATSAPP FLOAT & BACK TO TOP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: var(--z-fixed);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   25. FRANCHISE INTRO (same page sections)
   ============================================ */
.franchise-intro-content { text-align: center; }

/* ============================================
   26. REGIONAL OFFICES
   ============================================ */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.office-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.office-card:hover {
    border-color: var(--color-border-red);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

/* ============================================
   27. ANIMATIONS & UTILITIES
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
[data-animate].animated { opacity: 1; transform: none; }
[data-animate="fade-left"] { transform: translateX(-24px); }
[data-animate="fade-right"] { transform: translateX(24px); }
[data-animate="fade-left"].animated,
[data-animate="fade-right"].animated { transform: none; }

/* Loading spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

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

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

/* ============================================
   28. RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Old hero classes (no-op) */
    .hero-content { grid-template-columns: 1fr; text-align: center; padding: 110px 0 60px; }
    .hero-visual { display: none; }
    .hero-btns { justify-content: center; }
    .hero-desc { margin: 0 auto var(--space-xl); }

    /* New hero grid */
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-2xl); text-align: center; }
    .hero-visual-col { display: none; }
    .hero-action-row { justify-content: center; }
    .hero-stats-inline { justify-content: center; }
    .hero-franchise-wrap { justify-content: center; }
    .hero-campa-text { font-size: clamp(5rem, 18vw, 9rem); }
    .hero-live-badge { justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card + .stat-card::before { display: none; }

    .about-preview-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
    .image-stack { height: 340px; }
    .about-preview-image { order: -1; }
    .about-preview-section::before { font-size: 12rem; bottom: 0; }

    .requirements-grid { grid-template-columns: 1fr; }
    .requirements-cta { position: static; }
    .cta-card { position: static; }

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

    .model-body { grid-template-columns: 1fr; }
    .model-description { padding-right: 0; border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-xl); }
    .model-details { padding-left: 0; }

    .documents-grid { grid-template-columns: 1fr; }
    .documents-cta { position: static; flex-direction: row; }

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

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

    .timeline::before { left: 28px; }
    .timeline-item { grid-template-columns: 60px 1fr; }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { order: 2; text-align: left; padding: 0 0 0 var(--space-lg); }
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker { order: 1; align-items: flex-start; }
    .timeline-item > :first-child,
    .timeline-item > :last-child { display: none; }
    .timeline-item:nth-child(even) .timeline-content > :first-child { margin-left: 0; }

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

    .application-grid { grid-template-columns: 1fr; }
    .application-sidebar { position: static; }

    .comparison-table { font-size: 0.8rem; }
}

/* ============================================
   29. RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --header-height: 64px;
    }

    /* Nav */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(160deg, #3A0058 0%, #5B1A8A 100%);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        gap: var(--space-xs);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: var(--z-fixed);
        overflow-y: auto;
    }

    .nav-menu.active { transform: translateX(0); }

    .nav-item { width: 100%; }
    .nav-link { width: 100%; padding: var(--space-md); border-radius: var(--radius-lg); font-size: var(--text-base); }
    .nav-cta { margin-top: var(--space-md); }
    .nav-cta .btn { width: 100%; }

    body.menu-open { overflow: hidden; }

    /* Sections */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }

    .products-header { grid-template-columns: 1fr; gap: var(--space-md); }
    .products-nav { align-self: flex-start; }
    .products-title { font-size: clamp(2.8rem, 12vw, 5rem); }

    .requirements-list { grid-template-columns: 1fr; }

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

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

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

    .form-row { grid-template-columns: 1fr; }
    .form-row.three-cols { grid-template-columns: 1fr; }

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

    .documents-cta { flex-direction: column; }

    .model-investment .amount { font-size: 1.2rem; }
    .model-header { flex-wrap: wrap; }

    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { text-align: center; justify-content: center; }

    .faq-question { padding: var(--space-md); }
    .faq-answer p { padding: 0 var(--space-md) var(--space-md); }

    .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-campa-text { font-size: clamp(4rem, 20vw, 7rem); }
    .hero-franchise-text { font-size: clamp(1.4rem, 6vw, 2.5rem); }
    .hero-tagline-text { font-size: 0.7rem; letter-spacing: 0.12em; }
    .hero-stats-inline { flex-wrap: wrap; gap: var(--space-sm); }

    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

    .about-stats { flex-wrap: wrap; gap: var(--space-lg); }

    .sidebar-card { position: static; }
}

/* ============================================
   30. RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }

    .products-title { font-size: clamp(2.2rem, 14vw, 3.5rem); }
    .products-title::after { width: 40px; }

    .intro-features { gap: var(--space-md); }
    .intro-feature { font-size: var(--text-xs); }

    .hero-btns .btn { flex: 1; min-width: 140px; }

    .comparison-section { overflow-x: hidden; }
}

/* ============================================
   31. FRANCHISE SECTION TAG ON DARK
   ============================================ */
.process-section .section-header,
.testimonials-section .section-header {
    margin-bottom: var(--space-2xl);
}

/* ============================================
   32. ACTIVE NAV HIGHLIGHT BAR
   ============================================ */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
}

/* ============================================
   33. PRINT STYLES
   ============================================ */
@media print {
    .header, .footer, .whatsapp-float, .back-to-top { display: none; }
    .page-header { padding: var(--space-xl) 0; }
    body { font-size: 12pt; }
}
