/* ============================================================
   HotelHuddle Network — Unified Design System
   CDN: cdn.hotelhuddle.com/css/design-system.css
   
   This file combines the common styles from all network sites
   (hotelhuddle.com, grouprooms.org, bookmyteam.org, 
    hotelslots.org, hotelhaggle.org, harper.hotelhuddle.com)
   using hotelhuddle.com's funnel.css as the canonical reference.
   
   Brand-specific colors are defined as CSS custom properties
   that each site overrides in a small inline <style> block:
   
   :root {
     --accent: #1e3a5f;
     --accent-light: #2a5298;
     --accent-dark: #0f1b2d;
     --accent-2: #1a2d4a;
     --accent-2-light: #3a5578;
   }
   
   Brand color guide:
     hotelhuddle.com : --accent: #1e3a5f; --accent-light: #2a5298;
     grouprooms.org  : --accent: #14b8a6; --accent-light: #2dd4bf;  (teal)
     hotelhaggle.org : --accent: #8b5cf6; --accent-light: #a78bfa;  (purple)
     hotelslots.org  : --accent: #f59e0b; --accent-light: #fbbf24;  (amber)
     bookmyteam.org  : --accent: #3b82f6; --accent-light: #60a5fa;  (blue)
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties — Design Tokens
   Default values match hotelhuddle.com; each site overrides
   ============================================================ */
:root {
    /* --- Brand Colors (override per site) --- */
    --accent: #1e3a5f;
    --accent-light: #2a5298;
    --accent-dark: #0f1b2d;
    --accent-2: #1a2d4a;
    --accent-2-light: #3a5578;

    /* --- Neutral Palette --- */
    --bg-primary: #F8F9FC;
    --bg-card: rgba(0, 0, 0, 0.03);
    --bg-card-hover: rgba(0, 0, 0, 0.06);
    --bg-card-active: rgba(30, 58, 95, 0.08);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-active: rgba(30, 58, 95, 0.4);
    --text-primary: #1A1D2E;
    --text-secondary: #5A6078;
    --text-muted: #8892A6;

    /* --- Radius --- */
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* --- Shadows --- */
    --shadow-glow: 0 0 30px rgba(30, 58, 95, 0.08);

    /* --- Transitions --- */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- Network brand accent colors (for multi-brand displays) --- */
    --haggle: #8b5cf6;
    --slots: #f59e0b;
    --rooms: #14b8a6;
    --team: #3b82f6;
    --meeting: #ef4444;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   3. Sticky Nav Header (shared .hh- prefix)
   ============================================================ */
.hh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 249, 252, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.hh-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hh-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}
.hh-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.hh-logo-text-wrap {
    display: flex;
    flex-direction: column;
}
.hh-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}
.hh-logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
}
.hh-logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1px;
}
.hh-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.hh-nav a:not(.hh-nav-cta) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
    line-height: 1;
}
.hh-nav a:hover { color: var(--accent-light); }

/* ---- CTA Nav Button ---- */
.hh-nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s !important;
    box-shadow: 0 2px 8px rgba(30,58,95,0.35);
}
.hh-nav-cta:hover {
    background: var(--accent-light) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,58,95,0.4);
}

/* ---- Quiz highlight (Get Started arrow) ---- */
.hh-quiz-highlight {
    position: relative;
}
.hh-quiz-highlight::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl, 1rem);
    animation: hh-pulse-border 2s ease-out forwards;
    pointer-events: none;
    z-index: 10;
}
@keyframes hh-pulse-border {
    0%   { opacity: 1; box-shadow: 0 0 0 0 rgba(30,58,95,0.7), 0 0 12px 4px rgba(30,58,95,0.4); }
    40%  { opacity: 1; box-shadow: 0 0 30px 10px rgba(30,58,95,0.35), 0 0 60px 20px rgba(42,82,152,0.2); }
    70%  { opacity: 1; box-shadow: 0 0 20px 6px rgba(30,58,95,0.3), 0 0 40px 12px rgba(42,82,152,0.15); }
    100% { opacity: 0; box-shadow: 0 0 0 0 rgba(30,58,95,0), 0 0 0 0 rgba(42,82,152,0); }
}

/* Arrow card */
.hh-get-started-arrow {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(30,58,95,0.45), 0 0 0 2px rgba(42,82,152,0.25);
    white-space: nowrap;
    animation: hh-arrow-slide-down 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards,
               hh-card-float 2s ease-in-out 0.6s infinite alternate;
    pointer-events: none;
    z-index: 10;
}
.hh-get-started-arrow svg {
    width: 28px;
    height: 28px;
    stroke-width: 3.5;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
    animation: hh-arrow-bounce-down 0.8s ease-in-out infinite alternate;
}
@keyframes hh-arrow-slide-down {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes hh-card-float {
    from { transform: translateX(-50%) translateY(0); }
    to   { transform: translateX(-50%) translateY(5px); }
}
@keyframes hh-arrow-bounce-down {
    from { transform: translateY(0); }
    to   { transform: translateY(5px); }
}

/* ---- Underline accent ---- */
.hh-hero-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}

/* ---- Mobile Get Started CTA ---- */
.hh-mobile-cta {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(30,58,95,0.35);
    transition: background 0.2s, transform 0.2s;
}
.hh-mobile-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* ============================================================
   4. Hero Section
   ============================================================ */
.hh-hero {
    text-align: left;
    padding: 2rem 2rem 0;
    max-width: none;
    margin: 0 auto;
    position: relative;
    min-height: 624px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.hh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hh-hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hh-hero-bg-slide.active {
    opacity: 1;
}
.hh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,13,23,0.225) 0%, rgba(11,13,23,0.325) 50%, rgba(11,13,23,0.44) 100%);
    z-index: 1;
}
.hh-hero-layout {
    z-index: 2;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1 1 100%;
    padding-top: 0;
}
.hh-hero-left {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
}
.hh-hero-text-card {
    background: linear-gradient(135deg, rgba(248, 249, 252, 0.92), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: 0.7rem;
    padding-left: calc(0.7rem + 5%);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.hh-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent) !important;
    -webkit-text-fill-color: var(--accent) !important;
    background: none !important;
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
    margin-bottom: 0.25rem;
}
.hh-hero-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
    max-width: 540px;
    margin: 3% 0 0.25rem 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hh-hero-body {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
    margin-bottom: 0.75rem;
}

.hh-hero-illustration {
    width: 19%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    position: absolute;
    bottom: 0;
    left: 20%;
    z-index: 0;
    border-radius: var(--radius-xl, 1rem);
}
.hh-hero-form-col {
    flex: 0 0 calc(40% - 1rem);
    max-width: calc(40% - 1rem);
    background: linear-gradient(135deg, rgba(248, 249, 252, 0.92), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: 0.7rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   5. Quiz Container & Progress
   ============================================================ */
.hh-quiz-container {
    width: 100%;
    position: relative;
    padding: 3%;
}
.hh-progress {
    margin-bottom: 1rem;
}
.hh-progress-track {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.hh-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* ============================================================
   6. Quiz Steps
   ============================================================ */
.hh-quiz-step {
    display: none;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hh-quiz-step.active {
    display: block;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Step Questions */
.hh-step-question {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
    color: var(--accent);
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
    text-align: center;
}
.hh-step-hint {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* ============================================================
   7. Option Cards
   ============================================================ */
.hh-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.hh-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.hh-option-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.35rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
}
.hh-option-card:hover {
    border-color: var(--border-active);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.hh-option-card:active {
    transform: translateY(0);
    background: var(--bg-card-active);
}
.hh-option-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.hh-option-icon {
    font-size: 1.4rem;
    line-height: 1;
}
.hh-option-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.hh-option-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0;
}

/* ============================================================
   8. Form Elements
   ============================================================ */
.hiw-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.hiw-body {
    display: flex;
    gap: 1.25rem;
    flex: 1;
    min-height: 0;
}
.hiw-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hh-details-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hh-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hh-field-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.hh-input-wrapper {
    position: relative;
}
.hh-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}
.hh-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}
.hh-input::placeholder {
    color: var(--text-muted);
}
.hh-input-date {
    cursor: pointer;
}

/* Autocomplete dropdown */
.hh-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111322;
    border: 1px solid var(--border-subtle);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}
.hh-autocomplete-dropdown.visible {
    display: block;
}
.hh-autocomplete-item {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.95rem;
    color: var(--text-primary);
}
.hh-autocomplete-item:hover {
    background: var(--bg-card-hover);
}
.hh-autocomplete-item small {
    color: var(--text-muted);
    display: block;
    font-size: 0.8rem;
}

/* ============================================================
   9. Buttons
   ============================================================ */
.hh-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}
.hh-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.35);
}
.hh-submit-btn:active {
    transform: translateY(0);
}
.hh-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Field Row */
.hh-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.hh-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ============================================================
   10. Disclaimer / Affiliate Note
   ============================================================ */
.hh-disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.35rem 2rem 0.5rem;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.4;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hh-disclaimer a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-style: dotted;
}
.hh-disclaimer a:hover {
    color: var(--accent-light);
}
.hh-affiliate-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}
.hh-affiliate-note a {
    color: var(--accent-light);
    text-decoration: underline;
    text-decoration-style: dotted;
}
.hh-affiliate-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* ============================================================
   11. Result Card
   ============================================================ */
.hh-result {
    text-align: center;
}
.hh-result-subtitle {
    display: none;
}
.hh-result-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
}
.hh-result-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1.25rem auto;
}
.hh-result-lockup-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}
.hh-result-lockup-text {
    display: flex;
    flex-direction: column;
}
.hh-result-lockup-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(10, 22, 40, 0.15);
}
.hh-result-lockup-domain {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}
.hh-result-timer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.hh-result-timer span {
    font-weight: 700;
    color: var(--accent);
}
.hh-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.3);
}
.hh-result-cta:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 58, 95, 0.4);
}

/* Result Alt Links */
.hh-result-alt {
    margin-bottom: 2rem;
}
.hh-result-alt p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.hh-result-alt-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hh-result-alt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hh-result-alt-link:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
    color: var(--accent);
}
.hh-result-alt-lockup-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ============================================================
   12. Sections (How It Works, Brands, Stats, FAQ)
   ============================================================ */
.hh-section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    scroll-margin-top: 70px;
}
.hh-section-dark {
    background: rgba(0, 0, 0, 0.03);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 550px);
    padding-right: calc(50vw - 550px);
}
.hh-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.75rem;
}
.hh-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}
.hh-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.hiw-subtitle-img {
    display: block;
    max-width: 100%;
    width: 480px;
    margin: 0 auto 2rem;
    border-radius: 16px;
}

/* Steps */
.hh-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
/* Logo-style title formatting */
.hh-logo-title,
.hh-section-title,
.hh-step-card h3,
.hh-step-question {
    color: var(--accent) !important;
    -webkit-text-fill-color: var(--accent) !important;
    background: none !important;
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
}

/* How It Works — Grey gradient bg */
.hh-section-how {
    background: linear-gradient(180deg, #e8eaef 0%, #f4f5f8 100%);
    max-width: none;
    padding: 4rem 2rem;
    scroll-margin-top: 70px;
}
.hh-section-how > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hh-how-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

/* Step Cards */
.hh-step-card {
    background: linear-gradient(135deg, rgba(248, 249, 252, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.hh-step-card:hover {
    border-color: var(--border-active);
    border-left: 3px solid var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.12), 0 4px 24px rgba(0, 0, 0, 0.06);
}
.hh-step-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.hh-step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================================
   13. How It Works — Animated Split Presentation
   ============================================================ */
.hiw-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}
.hiw-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 2rem auto 0;
    padding: 1.15rem 3.2rem;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.3s;
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.35);
    letter-spacing: 0.02em;
    max-width: 90vw;
    text-align: center;
}
.hiw-start-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 44px rgba(30, 58, 95, 0.5);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.hiw-start-btn:active {
    transform: translateY(0) scale(0.97);
}

/* Language chooser */
.hiw-lang-chooser {
    display: none;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.hiw-lang-btn {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.3s;
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.35);
    letter-spacing: 0.02em;
}
.hiw-lang-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 44px rgba(30, 58, 95, 0.5);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.hiw-lang-btn:active {
    transform: translateY(0) scale(0.97);
}

/* Presentation stage — split layout */
.hiw-stage {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}
.hiw-split {
    display: flex;
    min-height: 420px;
}

/* Left panel: Image swap area */
.hiw-left {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hiw-left-img {
    position: absolute;
    max-height: 90%;
    max-width: 85%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.4s ease-in-out, transform 1.8s ease-in-out;
}
.hiw-left-img-b {
    opacity: 0;
}
.hiw-lights-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
    z-index: 5;
}
.hiw-left-img.pulse {
    animation: hiw-pulse 1.8s ease-in-out infinite;
}
@keyframes hiw-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Logo Intro Slide */
.hiw-logo-intro {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 380px;
    text-align: center;
    overflow: hidden;
    padding: 2rem 1rem;
    box-sizing: border-box;
}
.hiw-logo-intro-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: scale(0.1);
    opacity: 0;
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease-out;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.hiw-logo-intro-lockup.grow {
    transform: scale(1);
    opacity: 1;
}
.hiw-logo-intro-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.hiw-logo-intro-name {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    overflow-wrap: break-word;
    word-break: break-word;
}
.hiw-logo-intro-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
    margin-top: 1.5rem;
    min-height: 2rem;
    white-space: pre;
}
.hiw-logo-intro-tagline .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.6s steps(1) infinite;
}
@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hiw-logo-watermark {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
    pointer-events: none;
    user-select: none;
}
.hiw-logo-watermark-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}
.hiw-logo-watermark-text {
    display: flex;
    flex-direction: column;
}
.hiw-logo-watermark-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hiw-logo-watermark-tagline {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 1px;
}

/* Right panel: Text explainer */
.hiw-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    position: relative;
    background: #fff;
    border-radius: 0 16px 16px 0;
}
.hiw-slide-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hiw-slide-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.hiw-slide-text {
    font-size: 1.05rem;
    color: #4b5c72;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hiw-slide-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar */
.hiw-progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e8eaef;
}
.hiw-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    width: 0%;
    transition: width 0.05s linear;
    border-radius: 2px;
}

/* Get Started button */
.hiw-get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.02em;
}
.hiw-get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 58, 95, 0.4);
}

/* Watch Again */
.hiw-watch-again {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 0 0;
}
.hiw-rewind-icon {
    font-size: 1.1rem;
    margin-right: 0.2rem;
}
.hiw-watch-again-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.hiw-watch-again-link:hover {
    color: var(--accent-light);
}

/* ============================================================
   14. Brands Grid
   ============================================================ */
.hh-section-brands {
    background: linear-gradient(180deg, #e8eaef 0%, #f4f5f8 100%);
    padding: 4rem 2rem;
    max-width: 100%;
    scroll-margin-top: 70px;
}
.hh-section-brands > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hh-brands-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hh-brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
}
.hh-brand-tile:hover {
    background: #ffffff;
    border-color: var(--accent);
    border-left: 3px solid var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hh-brand-lockup-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hh-brand-cube {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.hh-brand-cube-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}
.hh-brand-lockup-text {
    display: flex;
    flex-direction: column;
}
.hh-brand-lockup-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(10, 22, 40, 0.15);
    letter-spacing: -0.01em;
}
.hh-brand-lockup-domain {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.hh-brand-tile-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.hh-brand-status {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    align-self: flex-start;
}
.hh-brand-status.active {
    background: rgba(52,211,153,0.12);
    color: #34D399;
    border: 1px solid rgba(52,211,153,0.2);
}
.hh-brand-status.coming-soon {
    background: rgba(251,191,36,0.12);
    color: #FBBF24;
    border: 1px solid rgba(251,191,36,0.2);
}

/* ============================================================
   15. Stats
   ============================================================ */
.hh-stats {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.hh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.hh-stats-grid > div {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.hh-stats-grid > div:last-child {
    border-right: none;
}
.hh-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.hh-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   16. FAQ
   ============================================================ */
.hh-faq {
    max-width: 720px;
    margin: 0 auto;
}
.hh-faq-item {
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.hh-faq-item:hover {
    border-color: var(--border-active);
    border-left-color: var(--accent);
}
.hh-faq-item[open] {
    border-color: var(--accent);
    border-left-color: var(--accent);
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
}
.hh-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hh-faq-item summary::-webkit-details-marker { display: none; }
.hh-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.2s;
}
.hh-faq-item[open] summary::after {
    transform: rotate(45deg);
}
.hh-faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.hh-faq-item a {
    color: var(--accent-light);
    text-decoration: none;
}
.hh-faq-item a:hover {
    text-decoration: underline;
}

/* ============================================================
   17. Footer
   ============================================================ */
.hh-footer {
    background: rgba(0, 0, 0, 0.04);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
    margin-top: 4rem;
}
.hh-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hh-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hh-footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}
.hh-footer-logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    flex-shrink: 0;
}
.hh-footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.hh-footer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 1px 2px rgba(10,22,40,0.12);
}
.hh-footer-tagline-text {
    color: var(--text-muted);
    font-size: 0.7rem;
}
.hh-footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}
.hh-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.hh-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.hh-footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.hh-footer-col a:hover {
    color: var(--accent-light);
}
.hh-footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Footer Latest Posts */
.hh-footer-latest-posts {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 58, 95, 0.15);
}
.hh-footer-latest-posts-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.hh-footer-latest-posts-header h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0;
}
.hh-footer-latest-posts-see-all {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a6dd4;
    text-decoration: none;
    transition: color 0.2s;
}
.hh-footer-latest-posts-see-all:hover {
    color: #4da3ff;
    text-decoration: underline;
}
.hh-footer-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.hh-footer-latest-posts-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
}
.hh-footer-latest-posts-card:hover {
    border-color: #1a6dd4;
    transform: translateY(-2px);
    text-decoration: none;
}
.hh-footer-latest-posts-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8edf3;
}
.hh-footer-latest-posts-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hh-footer-latest-posts-card:hover .hh-footer-latest-posts-card-image img {
    transform: scale(1.05);
}
.hh-footer-latest-posts-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2, #1a2d4a);
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f0f4f8, #d6e4f0);
}
.hh-footer-latest-posts-card-body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hh-footer-latest-posts-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark, #0f1b2d);
    margin: 0 0 0.3rem;
    line-height: 1.3;
}
.hh-footer-latest-posts-card-summary {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 0.4rem;
    flex: 1;
}
.hh-footer-latest-posts-card-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ============================================================
   18. Flatpickr Light Overrides
   ============================================================ */
.flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}
.flatpickr-day {
    color: var(--text-primary, #1A1D2E) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #ffffff !important;
}
.flatpickr-day.today {
    border-color: var(--accent) !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: var(--text-primary, #1A1D2E) !important;
}
span.flatpickr-weekday {
    color: var(--text-secondary, #5A6078) !important;
}

/* ============================================================
   19. Responsive Breakpoints
   ============================================================ */
@media (max-width: 768px) {
    .hh-hero-title { font-size: 1.8rem; }
    .hh-hero-subtitle { font-size: 0.8rem; }
    .hh-hero-body { font-size: 0.9rem; }
    .hh-nav { display: none; }
    .hh-get-started-arrow { display: none !important; }
    .hh-mobile-cta { display: flex; }
    .hh-hero-layout {
        flex-direction: column;
    }
    .hh-hero-left,
    .hh-hero-form-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .hh-hero-illustration {
        display: none;
    }
    .hh-hero-form-col {
        margin-top: 0.7rem;
    }
    .hh-hero {
        padding: 1.8rem 1rem 0;
    }
    .hh-quiz-container {
        max-width: 100%;
    }
    .hh-options-grid { grid-template-columns: 1fr; }
    .hh-steps { grid-template-columns: 1fr; }
    .hh-brands-grid { grid-template-columns: 1fr; }
    .hh-brands-grid-full { grid-template-columns: 1fr 1fr; }
    .hh-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hh-footer-cols { grid-template-columns: 1fr; }
    .hh-footer-latest-posts-grid { grid-template-columns: 1fr; }
    .hh-section-dark {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hh-option-card { padding: 1.25rem; }
    .hh-brand-lockup { width: 160px; }
    .hh-result-lockup-name { font-size: 1.1rem; }

    /* HIW responsive */
    .hiw-split { flex-direction: column; }
    .hiw-left { flex: 0 0 220px; min-height: 220px; }
    .hiw-left-img { max-height: 80%; }
    .hiw-right { padding: 2rem 1.5rem; border-radius: 0 0 16px 16px; }
    .hiw-slide-title { font-size: 1.4rem; }
    .hiw-logo-intro { min-height: 280px; padding: 1rem; }
    .hiw-logo-intro-lockup { flex-direction: column; gap: 0.75rem; }
    .hiw-logo-intro-icon { width: 64px; height: 64px; }
    .hiw-logo-intro-name { font-size: 2.5rem; }
    .hiw-logo-intro-tagline { font-size: 1rem; margin-top: 1rem; padding: 0 1rem; }
    .hiw-start-btn { margin: 1.5rem auto 0; padding: 1rem 2rem; font-size: 1rem; white-space: normal; max-width: 90vw; }
    .hiw-stage { max-width: 100%; }
    .hiw-slide-text { font-size: 0.95rem; }
    .hh-how-card { padding: 2rem 1.25rem; border-radius: 12px; }
}

@media (max-width: 480px) {
    .hh-hero { padding: 1.8rem 1rem 0; }
    .hh-quiz-container { padding: 0 1rem 3rem; }
    .hh-hero-title { font-size: 1.25rem; }
    .hh-step-question { font-size: 1.35rem; }
    .hh-header-inner { padding: 0.5rem 1rem; }
    .hh-logo-img { width: 36px; height: 36px; }

    .hiw-logo-intro { min-height: 240px; padding: 0.75rem; }
    .hiw-logo-intro-icon { width: 48px; height: 48px; }
    .hiw-logo-intro-name { font-size: 1.75rem; }
    .hiw-logo-intro-tagline { font-size: 0.9rem; padding: 0 0.5rem; }
    .hiw-start-btn { margin: 1rem auto 0; padding: 0.9rem 1.5rem; font-size: 0.9rem; max-width: 95vw; }
    .hiw-left { flex: 0 0 160px; min-height: 160px; }
    .hiw-right { padding: 1.5rem 1rem; }
    .hiw-slide-title { font-size: 1.15rem; }
    .hiw-slide-text { font-size: 0.875rem; }
    .hiw-get-started-btn { font-size: 0.875rem; padding: 0.6rem 1.5rem; }
    .hh-how-card { padding: 1.25rem 0.75rem; }
    .hh-brands-grid-full { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hh-footer-latest-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   20. Hero Form Styles (shared across sister sites)
   Extracted from grouprooms/hotelhaggle/hotelslots welcome pages
   ============================================================ */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
    padding: 2rem 1.5rem;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary, #1A1D2E);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary, #5A6078);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 640px;
}

.hero-form {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-form-field {
    flex: 1;
    min-width: 0;
}

.hero-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a4560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-field-location { flex: 1.8; position: relative; }
.hero-field-dates { flex: 1.4; }
.hero-field-rooms { flex: 0.7; }
.hero-field-submit { flex: 0 0 auto; align-self: flex-end; }

.hero-field-location .form-input,
.hero-form-field .form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg-primary, #F8F9FC);
    color: var(--text-primary, #1A1D2E);
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.hero-field-location .form-input:focus,
.hero-form-field .form-input:focus {
    border-color: var(--accent);
}

.hero-field-location .form-input::placeholder {
    color: var(--text-muted, #8892A6);
}

.hero-submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--accent);
    border-radius: 8px;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    transition: all 0.2s;
}

.hero-submit-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.hero-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Autocomplete */
.autocomplete-wrapper { position: relative; }

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.autocomplete-dropdown.visible { display: block; }

.autocomplete-item {
    padding: 0.6rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.04));
}

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

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(30, 58, 95, 0.08);
}

.autocomplete-item .city-name { font-weight: 500; }
.autocomplete-item .city-state { color: var(--text-secondary, #5A6078); font-size: 0.85rem; }

/* Date & select inputs */
.hero-form-field input[type="date"],
.hero-form-field select.form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg-primary, #F8F9FC);
    color: var(--text-primary, #1A1D2E);
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-form-field input[type="date"]:focus,
.hero-form-field select.form-input:focus {
    border-color: var(--accent);
}

.hero-form-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

.hero-form-field select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.hero-form-field select.form-input option {
    background: #F8F9FC;
    color: #1A1D2E;
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-section { padding: 2rem 1rem; min-height: auto; }
    .hero-form { flex-direction: column; }
    .hero-form-field,
    .hero-field-location,
    .hero-field-dates,
    .hero-field-rooms { flex: 1 1 100%; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* ── Header Component ──────────────────────────── */

.site-header {
    background: rgba(248, 249, 252, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container-full {
    max-width: none;
}

/* Brand */
.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary, #1A1D2E);
}

.brand-logo {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
    line-height: 1.2;
}

.brand-domain {
    font-size: 0.7rem;
    color: var(--text-muted, #8892A6);
    line-height: 1.2;
}

/* Compact auth header */
.header-brand-compact {
    /* same as .header-brand but slightly smaller for backend */
}

.header-user-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.header-help-link {
    color: var(--text-muted, #8892A6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.header-help-link:hover {
    color: var(--accent, #1e3a5f);
    background: var(--bg-card-hover, rgba(0, 0, 0, 0.06));
}

.header-logout-form {
    display: inline;
}

.header-logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: var(--text-muted, #8892A6);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.header-logout-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

/* Guest Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary, #5A6078);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--accent, #1e3a5f);
    background: var(--bg-card-hover, rgba(0, 0, 0, 0.06));
}

.nav-link.active {
    color: var(--accent, #1e3a5f);
}

/* Right-aligned items (Help, Login, Partners) */
.nav-item--right {
    margin-left: auto;
}

.nav-link--separated {
    border-left: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    padding-left: 1rem;
}

.nav-link--separated:hover {
    color: var(--text-primary, #1A1D2E);
    background: var(--bg-card-hover, rgba(0, 0, 0, 0.06));
}

/* Login ghost/accent button */
.nav-link--login {
    color: var(--accent, #1e3a5f);
    border: 1px solid var(--accent, #1e3a5f);
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-weight: 600;
}

.nav-link--login:hover {
    color: #fff;
    background: var(--accent, #1e3a5f);
    border-color: var(--accent, #1e3a5f);
}


/* Language Switcher */
.nav-item--lang {
    margin-left: 0.25rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-option {
    display: inline-block;
    padding: 0.25rem 0.4rem;
    line-height: 1;
}

.lang-active {
    color: var(--accent, #1e3a5f);
}

.lang-link {
    color: var(--text-muted, #8892A6);
    text-decoration: none;
    transition: color 0.2s;
}

.lang-link:hover {
    color: var(--text-primary, #1A1D2E);
    text-decoration: none;
}

.lang-separator {
    color: var(--border-subtle, rgba(0, 0, 0, 0.08));
    margin: 0 0.15rem;
}

.lang-label {
    color: var(--text-muted, #8892A6);
    margin-right: 0.35rem;
    font-weight: 400;
    font-size: 0.85em;
}

.header-user-bar .language-switcher {
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary, #1A1D2E);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 249, 252, 0.98);
        border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
        padding: 1rem 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .header-nav.is-open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .hamburger.is-active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-item--right {
        margin-left: 0;
    }

    .nav-link--separated {
        border-left: none;
        padding-left: 1rem;
    }

    .nav-link--login {
        border: 1px solid var(--accent, #1e3a5f);
        display: block;
        width: 100%;
        text-align: center;
    }

}

/* Mobile for auth header */
@media (max-width: 767px) {
    .header-user-bar {
        gap: 0.5rem;
    }
    .header-help-link {
        display: none;
    }
}

/* ── Footer Component ──────────────────────────── */

.site-footer {
    background: rgba(0, 0, 0, 0.04);
    border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Brand ── */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent, #1e3a5f);
    line-height: 1.2;
}

.footer-brand-domain {
    font-size: 0.7rem;
    color: var(--text-muted, #8892A6);
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted, #8892A6);
    margin: 0.5rem 0 0;
}

/* ── Four-column link grid ── */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
}

.footer-col-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-primary, #1A1D2E);
    margin: 0 0 0.75rem;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-list li {
    margin-bottom: 0.35rem;
}

.footer-link {
    color: var(--text-secondary, #5A6078);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent, #1e3a5f);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Headroom for social section in Connect column */
.footer-social-section {
    margin-top: 1rem;
}

/* Login button for guests */
.footer-login-btn {
    display: inline-block;
    color: #fff;
    background: var(--accent, #1e3a5f);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, opacity 0.2s;
}

.footer-login-btn:hover {
    background: var(--accent-light, #2a5298);
    color: #fff;
    text-decoration: none;
}

/* ── Footer Articles ── */
.footer-articles {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
}

.footer-articles-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.footer-articles-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #1A1D2E);
    margin: 0;
}

.footer-articles-see-all {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-articles-see-all:hover {
    color: var(--accent-light, #2a5298);
    text-decoration: underline;
}

.footer-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.footer-article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card, rgba(0, 0, 0, 0.03));
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
}

.footer-article-card:hover {
    border-color: var(--accent, #1e3a5f);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-article-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-card, rgba(0, 0, 0, 0.03));
}

.footer-article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.footer-article-card:hover .footer-article-card-image img {
    transform: scale(1.05);
}

.footer-article-card-body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-article-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #1A1D2E);
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.footer-article-card-summary {
    font-size: 0.8rem;
    color: var(--text-muted, #8892A6);
    line-height: 1.5;
    margin: 0 0 0.4rem;
    flex: 1;
}

.footer-article-card-date {
    font-size: 0.7rem;
    color: var(--text-muted, #8892A6);
    letter-spacing: 0.02em;
}

.footer-articles-coming-soon {
    text-align: center;
    padding: 2rem 1rem;
}

.footer-articles-coming-soon-text {
    font-size: 0.95rem;
    color: var(--text-muted, #8892A6);
    margin: 0 0 0.5rem;
}

.footer-articles-coming-soon-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent, #1e3a5f);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-articles-coming-soon-link:hover {
    color: var(--accent-light, #2a5298);
    text-decoration: underline;
}

/* ── Network Partners ── */
.footer-network {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
}

.footer-network-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-primary, #1A1D2E);
    margin: 0 0 0.75rem;
}

.footer-network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.footer-network-card {
    display: block;
    text-decoration: none;
    padding: 0.75rem;
    background: var(--bg-card, rgba(0, 0, 0, 0.03));
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.footer-network-card:hover {
    background: var(--bg-card-hover, rgba(0, 0, 0, 0.06));
    border-color: var(--border-active, rgba(30, 58, 95, 0.4));
}

.footer-network-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-network-logo {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

.footer-network-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-network-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #1A1D2E);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-network-tagline {
    font-size: 0.65rem;
    color: var(--text-muted, #8892A6);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Footer bottom ── */
.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted, #8892A6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: var(--text-muted, #8892A6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--accent, #1e3a5f);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

/* ── Date Range Picker Component ────────────────────── */

/* ── Date Range Picker ──────────────────────────────────── */
.date-range-picker {
    position: relative;
    width: 100%;
}

.drp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.drp-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: var(--text-muted, #5A6078);
    pointer-events: none;
    z-index: 1;
}

.drp-input {
    width: 100%;
    padding: 0.625rem 0.75rem 0.625rem 2.5rem;
    background: var(--bg-surface, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    color: var(--text, #1A1D2E);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.drp-input:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.drp-input:focus,
.drp-input.active {
    border-color: var(--accent, #3b82f6);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Selected dates row */
.drp-selected-dates {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
    flex-wrap: wrap;
}

.drp-date-label {
    font-weight: 500;
    color: var(--text, #1A1D2E);
}

.drp-date-value {
    color: var(--accent, #3b82f6);
    font-weight: 600;
}

.drp-date-sep {
    color: var(--text-muted, #8892A6);
    font-size: 1rem;
}

/* ── Cookie Consent Component ──────────────────────── */
/* ── Cookie Consent Component ──────────────────────────── */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg, #0b0d17);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-consent-text {
    color: var(--text-muted, rgba(232, 234, 242, 0.7));
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--accent, #1e3a5f);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--accent-light, #2a5298);
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--accent, #1e3a5f);
    color: #fff;
}

.cookie-btn-primary:hover {
    background: var(--accent-hover, #2a5298);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-muted, rgba(232, 234, 242, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text, #1A1D2E);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: var(--bg-surface, #131525);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-modal-header h2 {
    color: var(--text, #1A1D2E);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-muted, #5A6078);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.2s;
}

.cookie-modal-close:hover {
    color: var(--text, #1A1D2E);
}

.cookie-modal-body {
    padding: 1.25rem 1.5rem;
}

.cookie-modal-intro {
    color: var(--text-muted, rgba(232, 234, 242, 0.7));
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category-name {
    color: var(--text, #1A1D2E);
    font-size: 0.9rem;
}

.cookie-category-name strong {
    font-weight: 600;
}

.cookie-category-required {
    color: var(--text-muted, #5A6078);
    font-size: 0.75rem;
    font-weight: 400;
}

.cookie-category-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted, #5A6078);
}

.cookie-category-toggle.disabled {
    cursor: default;
    color: var(--accent, #1e3a5f);
    font-weight: 600;
}

.cookie-category-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 11px;
    transition: background 0.3s;
    cursor: pointer;
}

.cookie-category-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: var(--accent, #1e3a5f);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.cookie-category-toggle input[type="checkbox"]:checked + .toggle-slider::after {
    transform: translateX(18px);
}

.cookie-category-description {
    color: var(--text-muted, #5A6078);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    .cookie-modal-content {
        max-height: 90vh;
        margin: 0.5rem;
    }
}
/* ── Room Selector Component ────────────────────────── */
/* ── Room Selector Component ──────────────────────────── */
.room-selector {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.room-selector-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted, #5A6078);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-selector-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.room-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-muted, #5A6078);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.room-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text, #1A1D2E);
}

.room-btn:active {
    background: rgba(255, 255, 255, 0.12);
}

.room-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    color: var(--text, #1A1D2E);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 0.25rem;
    width: 100%;
    min-width: 40px;
    cursor: pointer;
    outline: none;
}

.room-select:focus {
    color: var(--accent, #1e3a5f);
}

.room-select option {
    background: var(--bg, #0b0d17);
    color: var(--text, #1A1D2E);
}

@media (max-width: 767px) {
    .room-selector-control {
        border-radius: 8px;
    }
    .room-btn {
        width: 32px;
        height: 36px;
    }
}
/* ── Toast Component ────────────────────────────────── */
/* ── Toast Component ──────────────────────────────────── */
#toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    animation: toast-slide-in 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.toast-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.toast-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.toast-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

.toast-dismissing {
    animation: toast-slide-out 0.3s ease forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    #toast-container {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
/* ── Missing icon sizing (backpack character) ──────────────────── */
.brand-cube-icon {
    width: 42px;
    height: auto;
    display: block;
}

.footer-cube-icon {
    width: 40px;
    height: auto;
    display: block;
}

.footer-network-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Skip link (accessibility) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent, #1e3a5f);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}
