    /* ═══════════════════════════════════════════
       GLOBAL RESET & TOKENS
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; }
    :root {
        --pink:       #ff497c;
        --pink-dark:  #e0345f;
        --pink-light: #fff0f4;
        --dark:       #0f0f1a;
        --dark2:      #1c1c30;
        --text:       #2d2d3a;
        --muted:      #6b7280;
        --border:     #e5e7eb;
        --bg:         #f9fafb;
        --white:      #ffffff;
        --nav-h:      68px;
        --topbar-h:   40px;
        --pink-rgb:   255,73,124;
        --white-rgb:  255,255,255;
        --black-rgb:  0,0,0;
        --dark-rgb:   15,15,26;
    }
    body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); }
    a { text-decoration: none; }
    ul { list-style: none; margin: 0; padding: 0; }
    img { max-width: 100%; }

    /* ═══════════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════════ */
    .topbar {
        background: var(--dark);
        height: var(--topbar-h);
        display: flex; align-items: center;
    }
    .topbar-inner {
        max-width: 1280px; margin: 0 auto; padding: 0 24px;
        width: 100%; display: flex; align-items: center; justify-content: space-between;
    }
    .topbar-left { display: flex; align-items: center; gap: 20px; }
    .topbar-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(var(--white-rgb), .65); }
    .topbar-item i { color: var(--pink); font-size: 12px; }
    .topbar-right { display: flex; align-items: center; gap: 14px; }
    .topbar-social a {
        width: 26px; height: 26px; border-radius: 50%;
        border: 1px solid rgba(var(--white-rgb), .2); color: rgba(var(--white-rgb), .65);
        font-size: 11px; display: inline-flex; align-items: center; justify-content: center;
        transition: background .2s, border-color .2s, color .2s;
    }
    .topbar-social a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
    .topbar-phone { font-size: 13px; font-weight: 600; color: #fff; }
    .topbar-phone a { color: var(--pink); }
    .topbar-phone a:hover { color: #fff; }

    /* ═══════════════════════════════════════════
       MAIN HEADER / NAV
    ═══════════════════════════════════════════ */
    .site-header {
        position: sticky; top: 0; z-index: 1000;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 20px rgba(var(--black-rgb), .06);
        height: var(--nav-h);
    }
    .header-inner {
        max-width: 1280px; margin: 0 auto; padding: 0 24px;
        height: 100%; display: flex; align-items: center; justify-content: space-between;
    }

    /* Logo */
    .site-logo {
        display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0;
    }
    .site-logo img { height: 38px; width: auto; }
    .site-logo-text { line-height: 1.2; }
    .site-logo-text .brand { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -.3px; }
    .site-logo-text .brand em { font-style: normal; color: var(--pink); }
    .mobile-menu-head .site-logo-text .brand { font-size: 16px; }
    .site-logo-text .sub { font-size: 10px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

    /* Desktop nav */
    .site-nav { display: flex; align-items: center; gap: 2px; }
    .nav-item { position: relative; }
    .nav-link {
        display: flex; align-items: center; gap: 4px;
        padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text);
        border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap;
        cursor: pointer;
    }
    .nav-link:hover, .nav-item.active > .nav-link { color: var(--pink); background: var(--pink-light); }
    .nav-link .caret {
        font-size: 9px; opacity: .6; transition: transform .2s;
        display: inline-block;
    }
    .nav-item:hover > .nav-link .caret { transform: rotate(180deg); }

    /* Dropdown */
    .nav-dropdown {
        position: absolute; top: calc(100% + 8px); left: 0;
        background: var(--white); border: 1px solid var(--border);
        border-radius: 10px; box-shadow: 0 12px 40px rgba(var(--black-rgb), .12);
        min-width: 220px; padding: 8px 0;
        opacity: 0; visibility: hidden; transform: translateY(8px);
        transition: opacity .2s, transform .2s, visibility .2s;
        z-index: 100;
    }
    .nav-item:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-dropdown a {
        display: block; padding: 9px 18px; font-size: 13.5px; color: var(--text);
        transition: color .15s, background .15s; border-radius: 0;
    }
    .nav-dropdown a:hover { color: var(--pink); background: var(--pink-light); }
    .nav-dropdown .dd-divider { height: 1px; background: var(--border); margin: 6px 12px; }

    /* Nested dropdown */
    .nav-dropdown .has-child { position: relative; }
    .nav-dropdown .has-child > a::after { content: '›'; float: right; opacity: .5; }
    .nav-dropdown .sub-dropdown {
        position: absolute; top: 0; left: 100%;
        background: var(--white); border: 1px solid var(--border);
        border-radius: 10px; box-shadow: 0 12px 40px rgba(var(--black-rgb), .12);
        min-width: 210px; padding: 8px 0;
        opacity: 0; visibility: hidden; transform: translateX(6px);
        transition: opacity .2s, transform .2s, visibility .2s;
    }
    .nav-dropdown .has-child:hover > .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }

    /* Nav CTA */
    .nav-cta {
        display: inline-flex; align-items: center; gap: 6px;
        background: var(--pink); color: #fff !important; font-weight: 600; font-size: 14px;
        padding: 9px 20px; border-radius: 8px;
        transition: background .2s, transform .15s, box-shadow .2s;
        margin-left: 8px; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--pink-dark) !important; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(var(--pink-rgb), .3); }

    /* Hamburger */
    .hamburger {
        display: none; flex-direction: column; justify-content: center;
        gap: 5px; width: 40px; height: 40px; cursor: pointer;
        background: none; border: none; padding: 4px;
    }
    .hamburger span {
        display: block; width: 24px; height: 2px; background: var(--text);
        border-radius: 2px; transition: transform .3s, opacity .3s;
        transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ═══════════════════════════════════════════
       MOBILE MENU OVERLAY
    ═══════════════════════════════════════════ */
    .mobile-menu-overlay {
        position: fixed; inset: 0; background: rgba(var(--dark-rgb), .5);
        z-index: 1500; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
    }
    .mobile-menu-overlay.open { opacity: 1; visibility: visible; }

    .mobile-menu {
        position: fixed; top: 0; right: 0; bottom: 0; width: 320px;
        background: var(--white); z-index: 1600;
        transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
        overflow-y: auto; display: flex; flex-direction: column;
    }
    .mobile-menu.open { transform: translateX(0); }

    .mobile-menu-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 20px 24px; border-bottom: 1px solid var(--border);
        position: sticky; top: 0; background: var(--white); z-index: 1;
    }
    .mobile-menu-close {
        width: 36px; height: 36px; border-radius: 8px; background: var(--bg);
        border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
        color: var(--text);
    }
    .mobile-menu-body { padding: 16px 0; flex: 1; }

    .mob-nav-item { border-bottom: 1px solid var(--border); }
    .mob-nav-link {
        display: flex; align-items: center; justify-content: space-between;
        padding: 14px 24px; font-size: 15px; font-weight: 500; color: var(--text);
        cursor: pointer; transition: color .15s;
    }
    .mob-nav-link:hover, .mob-nav-link.active { color: var(--pink); }
    .mob-nav-link .mob-caret { font-size: 12px; transition: transform .25s; }
    .mob-nav-link.expanded .mob-caret { transform: rotate(90deg); }

    .mob-submenu { display: none; background: var(--bg); }
    .mob-submenu.open { display: block; }
    .mob-submenu a {
        display: block; padding: 11px 24px 11px 36px;
        font-size: 13.5px; color: var(--muted); border-bottom: 1px solid var(--border);
        transition: color .15s;
    }
    .mob-submenu a:last-child { border-bottom: none; }
    .mob-submenu a:hover { color: var(--pink); }

    .mobile-menu-footer {
        padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px;
    }
    .mob-cta-btn {
        display: block; text-align: center; background: var(--pink);
        color: #fff; font-weight: 600; font-size: 15px; padding: 14px;
        border-radius: 8px; transition: background .2s;
    }
    .mob-cta-btn:hover { background: var(--pink-dark); color: #fff; }
    .mob-phone-btn {
        display: block; text-align: center; background: var(--bg);
        color: var(--text); font-weight: 500; font-size: 14px; padding: 13px;
        border-radius: 8px; border: 1px solid var(--border); transition: border-color .2s;
    }
    .mob-phone-btn:hover { border-color: var(--pink); color: var(--pink); }

    /* ═══════════════════════════════════════════
       FLASH ALERTS
    ═══════════════════════════════════════════ */
    .flash-alert {
        position: fixed; top: 24px; right: 24px; z-index: 9999;
        max-width: 400px; border-radius: 10px; padding: 16px 20px;
        box-shadow: 0 8px 32px rgba(var(--black-rgb), .15); display: flex; align-items: flex-start; gap: 12px;
        animation: slideInRight .3s ease;
    }
    .flash-alert.success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
    .flash-alert.warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
    .flash-alert .flash-close {
        background: none; border: none; cursor: pointer; font-size: 18px;
        line-height: 1; color: inherit; opacity: .6; margin-left: auto; flex-shrink: 0;
    }
    .flash-close:hover { opacity: 1; }
    @keyframes slideInRight { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: translateX(0); } }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .site-footer {
        background: var(--dark); color: rgba(var(--white-rgb), .75);
        padding: 80px 0 0;
    }
    .footer-inner {
        max-width: 1280px; margin: 0 auto; padding: 0 24px;
        display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
    }
    .footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .footer-brand .footer-logo img { height: 36px; width: auto; filter: brightness(1.1); }
    .footer-brand .footer-logo-text .brand { font-size: 17px; font-weight: 800; color: #fff; }
    .footer-brand .footer-logo-text .brand em { font-style: normal; color: var(--pink); }
    .footer-brand .footer-logo-text .sub { font-size: 10px; color: rgba(var(--white-rgb), .4); letter-spacing: .5px; text-transform: uppercase; }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(var(--white-rgb), .55); margin: 0 0 24px; }

    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .footer-contact-item i { color: var(--pink); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
    .footer-contact-item a, .footer-contact-item span { font-size: 13.5px; color: rgba(var(--white-rgb), .65); transition: color .2s; }
    .footer-contact-item a:hover { color: var(--pink); }

    .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
    .footer-social-link {
        width: 36px; height: 36px; border-radius: 8px;
        border: 1px solid rgba(var(--white-rgb), .15); color: rgba(var(--white-rgb), .6);
        display: flex; align-items: center; justify-content: center; font-size: 13px;
        transition: background .2s, border-color .2s, color .2s;
    }
    .footer-social-link:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

    /* Footer columns */
    .footer-col h3 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .8px; text-transform: uppercase; margin: 0 0 20px; }
    .footer-col ul + h3 { margin-top: 28px; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(var(--white-rgb), .55); transition: color .2s, padding-left .2s; display: inline-block; }
    .footer-col ul li a:hover { color: var(--pink); padding-left: 4px; }

    /* Footer CTA box */
    .footer-cta-box {
        background: linear-gradient(135deg, rgba(var(--pink-rgb), .15), rgba(var(--pink-rgb), .05));
        border: 1px solid rgba(var(--pink-rgb), .25); border-radius: 12px; padding: 20px;
        margin-top: 24px;
    }
    .footer-cta-box p { font-size: 13px; color: rgba(var(--white-rgb), .65); margin: 0 0 12px; line-height: 1.6; }
    .footer-cta-box a {
        display: inline-block; background: var(--pink); color: #fff; font-size: 13px; font-weight: 600;
        padding: 9px 18px; border-radius: 7px; transition: background .2s;
    }
    .footer-cta-box a:hover { background: var(--pink-dark); }

    /* Footer divider */
    .footer-divider { max-width: 1280px; margin: 48px auto 0; padding: 0 24px; border-top: 1px solid rgba(var(--white-rgb), .08); }

    /* Footer bottom bar */
    .footer-bottom {
        max-width: 1280px; margin: 0 auto; padding: 20px 24px;
        display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-copyright { font-size: 13px; color: rgba(var(--white-rgb), .4); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 13px; color: rgba(var(--white-rgb), .4); transition: color .2s; }
    .footer-legal a:hover { color: var(--pink); }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
        .site-nav, .nav-cta { display: none; }
        .hamburger { display: flex; }
        .topbar-left .topbar-item:not(:first-child) { display: none; }
        .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
        .topbar { display: none; }
        .footer-inner { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .footer-legal { flex-wrap: wrap; justify-content: center; }
    }

    /* ═══════════════════════════════════════════
       BACK TO TOP BUTTON
    ═══════════════════════════════════════════ */
    #toTop {
        position: fixed;
        bottom: 60px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--pink);
        border-radius: 12px;
        opacity: 0.92;
        z-index: 9999;
        box-shadow: 0 6px 24px rgba(var(--pink-rgb), .4);
        transition: opacity .25s, transform .25s, box-shadow .25s, bottom .25s;
        overflow: hidden;
        text-decoration: none;
        color: transparent;
        font-size: 0;
    }
    #toTop::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -52%) rotate(45deg);
        width: 11px;
        height: 11px;
        border-top: 2.5px solid #fff;
        border-left: 2.5px solid #fff;
        border-radius: 1px;
    }
    #toTopHover, #toTop:hover {
        opacity: 1;
        bottom: 32px;
        box-shadow: 0 12px 32px rgba(var(--pink-rgb), .55);
        transform: scale(1.06);
    }

    /* ═══════════════════════════════════════════
       COOKIE CONSENT BANNER
    ═══════════════════════════════════════════ */
    .consent-banner {
        display: none;
        position: fixed; bottom: 0; left: 0; right: 0;
        background: #0A0F1E; color: #fff; padding: 16px 24px; z-index: 99999;
        box-shadow: 0 -4px 20px rgba(var(--black-rgb), .3);
    }
    .consent-banner-inner {
        max-width: 1200px; margin: 0 auto;
        display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .consent-banner-text { margin: 0; font-size: 14px; line-height: 1.6; flex: 1; min-width: 220px; }
    .consent-banner-link { color: var(--pink); text-decoration: underline; }
    .consent-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .consent-btn { border: none; padding: 10px 22px; border-radius: 6px; cursor: pointer; font-size: 14px; }
    .consent-btn-accept { background: var(--pink); color: #fff; font-weight: 600; }
    .consent-btn-decline { background: transparent; color: #fff; border: 1px solid rgba(var(--white-rgb), .4); }
