/* ============================================================
   hotelhuddle.com — Brand Funnel
   Light glass design system per site navy palette
   Colors: White #FFFFFF background, Dark #1A1D2E text, Navy #1e3a5f, Accent #2a5298
   ============================================================ */

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

:root {
    --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;
    --accent: #1e3a5f;
    --accent-light: #2a5298;
    --accent-dark: #0f1b2d;
    --accent-2: #1a2d4a;
    --accent-2-light: #3a5578;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-glow: 0 0 30px rgba(30, 58, 95, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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;
}

/* ---- Sticky Nav Header ---- */
.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: #1e3a5f;
    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: #8892A6;
    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: #2a5298; }

/* ---- Get Started CTA Nav Button ---- */
.hh-nav-cta {
    background: #1e3a5f !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: #2a5298 !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 #1e3a5f;
    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 at top of quiz, pointing down (desktop only) */
.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, #1e3a5f 0%, #2a5298 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 on "Wherever" ---- */
.hh-hero-underline {
    text-decoration: underline;
    text-decoration-color: #1e3a5f;
    text-underline-offset: 3px;
}

/* ---- Mobile Get Started CTA (hidden on desktop) ---- */
.hh-mobile-cta {
    display: none;
    align-items: center;
    justify-content: center;
    background: #1e3a5f;
    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: #2a5298;
    transform: translateY(-1px);
}

/* ---- Hero with rotating background slideshow ---- */
.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: #1e3a5f !important;
    -webkit-text-fill-color: #1e3a5f !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: #5A6078 !important;
    -webkit-text-fill-color: #5A6078 !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: #5A6078 !important;
    -webkit-text-fill-color: #5A6078 !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);
}

/* ---- Quiz Container ---- */
.hh-quiz-container {
    width: 100%;
    position: relative;
    padding: 3%;
}

/* ---- Progress Bar ---- */
.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, #1e3a5f, #2a5298);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}


/* ---- 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: #1e3a5f;
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
    text-align: center;
}
.hh-step-hint {
    color: #8892A6;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* ---- 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;
}

/* ---- Details Form (Step 5) ---- */
.hiw-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

/* TOC sidebar */
.hiw-body {
    display: flex;
    gap: 1.25rem;
    flex: 1;
    min-height: 0;
}
/* Main content area */
.hiw-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ---- Details Form (Step 5) ---- */
.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: #1e3a5f;
    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;
}

/* ---- Submit Button ---- */
.hh-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    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, #2a5298, #1e3a5f);
    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 (side-by-side) ---- */
.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;
}

/* ---- 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: #2a5298;
}

.hh-affiliate-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}
.hh-affiliate-note a {
    color: #2a5298;
    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;
}

/* ---- 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: #1e3a5f;
    -webkit-text-fill-color: #1e3a5f;
    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: #8892A6;
    margin-top: 2px;
    font-weight: 500;
}
.hh-result-timer {
    font-size: 0.85rem;
    color: #8892A6;
    margin-bottom: 1.25rem;
}
.hh-result-timer span {
    font-weight: 700;
    color: #1e3a5f;
}
.hh-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 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, #2a5298 0%, #1e3a5f 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: #1e3a5f;
    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: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
    color: #1e3a5f;
}
.hh-result-alt-lockup-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ---- How It Works Section ---- */
.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, #1e3a5f, #2a5298);
    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 (navy blue with shadow) */
.hh-logo-title,
.hh-section-title,
.hh-step-card h3,
.hh-step-question {
    color: #1e3a5f !important;
    -webkit-text-fill-color: #1e3a5f !important;
    background: none !important;
    text-shadow: 0 1px 3px rgba(10,22,40,0.15);
}

/* ---- How It Works — Grey gradient bg + white card ---- */
.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);
}

/* Steps — CTA card style */
.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 #1e3a5f;
    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;
}

/* ---- 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, #1e3a5f 0%, #2a5298 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, #2a5298 0%, #1e3a5f 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, #1e3a5f 0%, #2a5298 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, #2a5298 0%, #1e3a5f 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: #1e3a5f;
    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: #1e3a5f;
    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: #1e3a5f;
    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: #1e3a5f;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hiw-logo-watermark-tagline {
    font-size: 0.6rem;
    color: #8892A6;
    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: #1e3a5f;
    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, #1e3a5f, #2a5298);
    width: 0%;
    transition: width 0.05s linear;
    border-radius: 2px;
}

/* Top bar: Get Started Now button */
.hiw-top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 1rem 0;
}
.hiw-get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    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: #5A6078;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.hiw-watch-again-link:hover {
    color: #2a5298;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .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;
        text-align: center;
    }
    .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) {
    .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;
    }
}

/* ---- Brands Grid (Full Width — Brandbook format) ---- */
.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: #1e3a5f;
    border-left: 3px solid #1e3a5f;
    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: #1e3a5f;
    -webkit-text-fill-color: #1e3a5f;
    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: #8892A6;
    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);
}
@media (max-width: 768px) {
    .hh-brands-grid-full {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .hh-brands-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ---- 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: #1e3a5f;
    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;
}

/* ---- 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: #1e3a5f;
}
.hh-faq-item[open] {
    border-color: #1e3a5f;
    border-left-color: #1e3a5f;
    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: #1e3a5f;
    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: #2a5298;
    text-decoration: none;
}
.hh-faq-item a:hover {
    text-decoration: underline;
}

/* ---- 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: #1e3a5f;
    text-shadow: 0 1px 2px rgba(10,22,40,0.12);
}
.hh-footer-tagline-text {
    color: #8892A6;
    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: #2a5298;
}
.hh-footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ---- Responsive ---- */
@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-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hh-footer-cols { 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; }
}

@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; }
}

/* ---- 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: #1A1D2E !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: #ffffff !important;
}
.flatpickr-day.today {
    border-color: #1e3a5f !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #1A1D2E !important;
}
span.flatpickr-weekday {
    color: #5A6078 !important;
}

/* ---- 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: #8892A6;
    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: #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: #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: #8892A6;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .hh-footer-latest-posts-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hh-footer-latest-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}