/* Marriage Solution BD — HomeNew3 (premium violet brand) */

:root {
    /* Brand violet */
    --hn2-primary: #6d28d9;
    --hn2-primary-dark: #5b21b6;
    --hn2-primary-deep: #3b0764;
    --hn2-primary-light: #8b5cf6;
    --hn2-primary-soft: #ede9fe;
    --hn2-primary-rgb: 109, 40, 217;

    /* Luxury accents */
    --hn2-gold: #d4a853;
    --hn2-gold-light: #f0d78c;
    --hn2-gold-dark: #a67c1a;
    --hn2-rose: #e11d68;
    --hn2-rose-soft: #fce7f3;
    --hn2-teal: #0d9488;
    --hn2-teal-dark: #0f766e;
    --hn2-teal-deep: #134e4a;

    /* Brand aliases */
    --hn2-red: var(--hn2-primary);
    --hn2-red-dark: var(--hn2-primary-dark);
    --hn2-red-light: var(--hn2-primary-soft);
    --hn2-cyan: var(--hn2-primary-light);
    --hn2-purple: var(--hn2-primary-dark);

    /* Neutrals */
    --hn2-white: #ffffff;
    --hn2-cream: #faf8ff;
    --hn2-pearl: #f5f3ff;
    --hn2-ink: #1e1b4b;
    --hn2-text: #1e1b4b;
    --hn2-muted: #64748b;
    --hn2-header-h: 72px;
    --hn2-font: 'DM Sans', system-ui, sans-serif;
    --hn2-serif: 'Playfair Display', Georgia, serif;
    --hn2-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hn2-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --hn2-radius: 18px;
    --hn2-radius-lg: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.hn3-page {
    margin: 0;
    font-family: var(--hn2-font);
    color: var(--hn2-text);
    background: var(--hn2-cream);
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: var(--hn2-header-h);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.hn2-container {
    width: min(1280px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* ─── Header ─── */
.hn2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--hn2-white);
    border-bottom: 1px solid rgba(65, 62, 102, 0.08);
    transition: box-shadow 0.35s var(--hn2-ease);
}

.hn2-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(6, 94, 119, 0.1);
}

.hn2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    min-height: var(--hn2-header-h);
}

.hn2-header__logo img {
    max-height: 52px;
    width: auto;
}

.hn2-header__nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
    justify-content: center;
}

.hn2-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--hn2-purple);
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.hn2-nav-link:hover,
.hn2-nav-link.is-active {
    color: var(--hn2-red);
}

.hn2-nav-link i {
    font-size: 0.55rem;
    opacity: 0.7;
}

.hn2-nav-dropdown {
    position: relative;
}

.hn2-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: var(--hn2-white);
    border-radius: var(--hn2-radius);
    box-shadow: 0 20px 50px rgba(6, 94, 119, 0.15);
    border: 1px solid rgba(65, 62, 102, 0.08);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s var(--hn2-ease), visibility 0.3s;
    z-index: 50;
}

.hn2-nav-dropdown:hover .hn2-nav-dropdown__menu,
.hn2-nav-dropdown.is-open .hn2-nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hn2-nav-dropdown__menu a {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hn2-purple);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.hn2-nav-dropdown__menu a:hover {
    background: var(--hn2-red-light);
    color: var(--hn2-red);
}

.hn2-header__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hn2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 0.3s var(--hn2-ease), box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.hn2-btn:hover {
    transform: translateY(-2px);
}

.hn2-btn--outline {
    border: 2px solid var(--hn2-red);
    color: var(--hn2-red);
    background: transparent;
}

.hn2-btn--outline:hover {
    background: var(--hn2-red-light);
}

.hn2-btn--solid {
    background: var(--hn2-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--hn2-primary-rgb), 0.35);
}

.hn2-btn--gold {
    background: linear-gradient(135deg, var(--hn2-gold), var(--hn2-gold-dark));
    color: #1a1a1a;
    box-shadow: 0 8px 28px rgba(232, 185, 35, 0.4);
    font-weight: 800;
}

.hn2-btn--ghost {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.hn2-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
}

.hn2-btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.875rem;
}

.hn2-btn--search {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--hn2-primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(var(--hn2-primary-rgb), 0.45);
}

.hn2-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--hn2-red-light);
}

.hn2-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--hn2-purple);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hn2-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hn2-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.hn2-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Trust bar (scrolls — not fixed) ─── */
.hn2-trustbar {
    background: linear-gradient(90deg, var(--hn2-teal-dark), var(--hn2-teal));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hn2-trustbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.55rem 1.25rem;
    min-height: 44px;
}

.hn2-trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.hn2-trustbar__item i {
    color: var(--hn2-gold);
    font-size: 0.8rem;
}

/* ─── Hero ─── */
.hn2-hero {
    position: relative;
    padding-top: 0;
    padding-bottom: 5rem;
    overflow: hidden;
    min-height: 620px;
}

.hn2-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(161, 9, 9, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(10, 152, 192, 0.15), transparent 50%),
        linear-gradient(145deg, var(--hn2-teal-deep) 0%, var(--hn2-teal-dark) 45%, var(--hn2-teal) 100%);
}

.hn2-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: hn2GlowPulse 8s ease-in-out infinite;
}

.hn2-hero__glow--1 {
    width: 400px;
    height: 400px;
    background: rgba(161, 9, 9, 0.2);
    top: 10%;
    left: -5%;
}

.hn2-hero__glow--2 {
    width: 350px;
    height: 350px;
    background: rgba(10, 152, 192, 0.18);
    bottom: 5%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes hn2GlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.hn2-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-block: 3rem 2rem;
}

.hn2-hero__badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    background: rgba(232, 185, 35, 0.15);
    border: 1px solid rgba(232, 185, 35, 0.35);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hn2-gold);
    margin-bottom: 1.25rem;
}

.hn2-hero__badge i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hn2-gold);
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 0.65rem;
}

.hn2-hero__badge-bn {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.7rem;
}

.hn2-hero__title {
    font-family: var(--hn2-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 0.75rem;
}

.hn2-hero__perfect {
    font-style: italic;
    color: var(--hn2-gold);
    position: relative;
    display: inline-block;
}

.hn2-hero__perfect::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: var(--hn2-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: hn2Underline 1s var(--hn2-ease) 0.8s forwards;
}

@keyframes hn2Underline {
    to { transform: scaleX(1); }
}

.hn2-hero__subtitle {
    font-family: var(--hn2-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hn2-hero__subtitle-bn {
    font-family: var(--hn2-font);
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hn2-gold);
}

.hn2-hero__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
    margin: 0 0 1.75rem;
    line-height: 1.7;
}

.hn2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hn2-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hn2-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hn2-hero-stat i {
    font-size: 1.1rem;
    color: var(--hn2-gold);
}

.hn2-hero-stat strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hn2-hero-stat span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* Hero photo + floats */
.hn2-hero__visual {
    position: relative;
}

.hn2-hero__photo-wrap {
    position: relative;
    border-radius: var(--hn2-radius-lg);
    overflow: visible;
}

.hn2-hero__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--hn2-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.4s var(--hn2-ease);
}

.hn2-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 5;
}

.hn2-float--verified {
    top: 8%;
    left: -4%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 200px;
}

.hn2-float--match {
    top: 6%;
    right: -2%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hn2-float--today {
    bottom: 28%;
    left: -6%;
    min-width: 180px;
}

.hn2-float--success {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
}

.hn2-float__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hn2-float__icon--green {
    background: #dcfce7;
    color: #c026d3;
}

.hn2-float__icon--orange {
    background: #ffedd5;
    color: #ea580c;
}

.hn2-float strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--hn2-text);
    line-height: 1.2;
}

.hn2-float span,
.hn2-float small {
    font-size: 0.65rem;
    color: var(--hn2-muted);
    font-weight: 600;
}

.hn2-float--success span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hn2-teal);
}

.hn2-float__avatars {
    display: flex;
    margin: 0.4rem 0 0.25rem;
}

.hn2-float__avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hn2-float__avatars span:first-child {
    margin-left: 0;
}

.hn2-float__meta {
    font-size: 0.65rem !important;
    color: var(--hn2-cyan) !important;
    font-weight: 700 !important;
}

.hn2-float__stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 0.35rem;
}

.hn2-float__stars i {
    color: var(--hn2-gold);
    font-size: 0.65rem;
}

.hn2-float-anim {
    opacity: 0;
    animation: hn2FloatIn 0.8s var(--hn2-ease) forwards, hn2FloatBob 4s ease-in-out infinite;
}

.hn2-float-anim--1 { animation-delay: 0.5s, 0.5s; }
.hn2-float-anim--2 { animation-delay: 0.7s, 0.7s; }
.hn2-float-anim--3 { animation-delay: 0.9s, 0.9s; }
.hn2-float-anim--4 { animation-delay: 1.1s, 1.1s; }

@keyframes hn2FloatIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hn2-float-anim--4 {
    animation-name: hn2FloatInCenter, hn2FloatBobCenter;
}

@keyframes hn2FloatInCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

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

@keyframes hn2FloatBobCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ─── Search bar ─── */
.hn2-search-wrap {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
    padding-bottom: 4rem;
}

/* Keep open picker above the full-page backdrop so lists can scroll */
.hn2-search-wrap:has(.hn2-picker.is-open) {
    z-index: 50;
}

.hn2-search {
    background: rgba(3, 42, 53, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--hn2-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1.75rem 1.25rem;
    box-shadow: 0 30px 80px rgba(3, 42, 53, 0.45);
}

.hn2-search__head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
}

.hn2-search__head h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hn2-search__head h2 i {
    color: var(--hn2-gold);
}

.hn2-search__head-bn {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.hn2-search__fields {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
    align-items: end;
}

.hn2-search__field label,
.hn2-picker__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
}

/* ─── Custom picker (iOS / Tailwind-style) ─── */
.hn2-picker {
    position: relative;
    min-width: 0;
    z-index: 1;
}

.hn2-picker.is-open {
    z-index: 30;
}

.hn2-picker__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.hn2-picker__trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.hn2-picker.is-open .hn2-picker__trigger,
.hn2-picker__trigger:focus-visible {
    outline: none;
    border-color: var(--hn2-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.25);
}

.hn2-picker__value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hn2-picker__chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.6rem;
    transition: transform 0.35s var(--hn2-ease-spring), background 0.25s ease;
}

.hn2-picker.is-open .hn2-picker__chevron {
    transform: rotate(180deg);
    background: rgba(6, 94, 119, 0.45);
    color: #fff;
}

.hn2-picker__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top center;
    transition: opacity 0.28s var(--hn2-ease), transform 0.32s var(--hn2-ease-spring), visibility 0.28s;
    pointer-events: none;
}

.hn2-picker.is-open .hn2-picker__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hn2-picker__panel-inner {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(6, 94, 119, 0.12);
    box-shadow:
        0 4px 6px rgba(3, 42, 53, 0.04),
        0 20px 50px rgba(6, 94, 119, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 0.4rem;
    max-height: min(280px, 50vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.hn2-picker__panel-inner::-webkit-scrollbar {
    width: 5px;
}

.hn2-picker__panel-inner::-webkit-scrollbar-thumb {
    background: rgba(6, 94, 119, 0.25);
    border-radius: 999px;
}

.hn2-picker__option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border: none;
    border-radius: 11px;
    background: transparent;
    color: var(--hn2-text);
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hn2-picker__option:hover {
    background: rgba(6, 94, 119, 0.08);
    color: var(--hn2-teal-dark);
}

.hn2-picker__option.is-selected {
    background: linear-gradient(135deg, rgba(6, 94, 119, 0.12), rgba(10, 152, 192, 0.08));
    color: var(--hn2-teal-dark);
}

.hn2-picker__check {
    font-size: 0.7rem;
    color: var(--hn2-teal);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.25s var(--hn2-ease-spring);
}

.hn2-picker__option.is-selected .hn2-picker__check {
    opacity: 1;
    transform: scale(1);
}

.hn2-picker-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: transparent;
}

.hn2-search__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hn2-search__foot-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hn2-search__advanced {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--hn2-gold);
    transition: opacity 0.25s ease;
}

.hn2-search__advanced:hover {
    opacity: 0.85;
}

.hn2-search__count {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.hn2-search__count strong {
    color: var(--hn2-gold);
    font-weight: 800;
}

/* ─── Entrance animations ─── */
.hn2-rise {
    opacity: 0;
    transform: translateY(28px);
    animation: hn2Rise 0.85s var(--hn2-ease) forwards;
}

.hn2-rise--1 { animation-delay: 0.1s; }
.hn2-rise--2 { animation-delay: 0.22s; }
.hn2-rise--3 { animation-delay: 0.34s; }
.hn2-rise--4 { animation-delay: 0.46s; }
.hn2-rise--5 { animation-delay: 0.58s; }
.hn2-rise--6 { animation-delay: 0.7s; }

@keyframes hn2Rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hn2-fade-in {
    opacity: 0;
    animation: hn2FadeIn 0.6s var(--hn2-ease) forwards;
    animation-delay: var(--hn2-delay, 0s);
}

@keyframes hn2FadeIn {
    to { opacity: 1; }
}

.hn2-future-sections {
    min-height: 0;
}

/* ─── Success Stories (glassy gallery slider) ─── */
.hn2-stories {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 40%, #f1f5f9 100%);
    overflow: hidden;
}

.hn2-stories__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hn2-stories__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: hn2OrbFloat 12s ease-in-out infinite;
}

.hn2-stories__orb--1 {
    width: 320px;
    height: 320px;
    background: rgba(236, 72, 153, 0.15);
    top: -5%;
    left: 10%;
}

.hn2-stories__orb--2 {
    width: 280px;
    height: 280px;
    background: rgba(124, 58, 237, 0.12);
    top: 30%;
    right: -5%;
    animation-delay: -4s;
}

.hn2-stories__orb--3 {
    width: 240px;
    height: 240px;
    background: rgba(232, 185, 35, 0.12);
    bottom: 5%;
    left: 35%;
    animation-delay: -8s;
}

@keyframes hn2OrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.06); }
    66% { transform: translate(-15px, 10px) scale(0.96); }
}

.hn2-stories__intro {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.hn2-stories__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    background: rgba(252, 231, 243, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #db2777;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.12);
    animation: hn2BadgePulse 3s ease-in-out infinite;
}

.hn2-stories__badge i {
    color: #ec4899;
    animation: hn2HeartBeat 1.4s ease-in-out infinite;
}

@keyframes hn2BadgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(236, 72, 153, 0.12); }
    50% { box-shadow: 0 6px 28px rgba(236, 72, 153, 0.22); }
}

@keyframes hn2HeartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
}

.hn2-stories__title {
    font-family: var(--hn2-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
    line-height: 1.15;
}

.hn2-stories__title em {
    font-style: italic;
    color: #b8860b;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hn2-stories__title-bn {
    font-size: 1rem;
    font-weight: 600;
    color: #b8860b;
    margin: 0;
}

.hn2-stories__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.hn2-stories__label {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}

.hn2-stories__toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hn2-stories__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #9333ea;
    transition: gap 0.3s var(--hn2-ease), color 0.25s ease;
}

.hn2-stories__view-all:hover {
    gap: 0.55rem;
    color: #7c3aed;
}

.hn2-stories__arrows {
    display: flex;
    gap: 0.5rem;
}

.hn2-stories__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #9333ea;
    font-size: 0.85rem;
    transition: transform 0.3s var(--hn2-ease-spring), background 0.25s ease, box-shadow 0.25s ease;
}

.hn2-stories__arrow:hover {
    background: #9333ea;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.35);
}

.hn2-stories__stage {
    position: relative;
    z-index: 2;
}

.hn2-stories__viewport {
    overflow: hidden;
    padding: 1.5rem 0 2rem;
    margin: 0 -0.5rem;
}

.hn2-stories__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.65s var(--hn2-ease);
    will-change: transform;
}

.hn2-stories__slide {
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: 0;
    transition: transform 0.65s var(--hn2-ease), opacity 0.5s ease;
    transform: scale(0.88);
    opacity: 0.55;
}

.hn2-stories__slide.is-center {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

.hn2-stories__slide.is-near {
    transform: scale(0.94);
    opacity: 0.82;
    z-index: 2;
}

.hn2-stories__glass {
    position: relative;
    border-radius: 2rem;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: box-shadow 0.5s ease, transform 0.5s var(--hn2-ease);
    overflow: hidden;
}

.hn2-stories__slide.is-center .hn2-stories__glass {
    box-shadow:
        0 20px 60px rgba(147, 51, 234, 0.2),
        0 0 40px rgba(236, 72, 153, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.hn2-stories__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 65%
    );
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    z-index: 4;
    pointer-events: none;
}

.hn2-stories__slide.is-center .hn2-stories__glass:hover .hn2-stories__shine {
    transform: translateX(120%);
}

.hn2-stories__photo {
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
}

.hn2-stories__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--hn2-ease);
}

.hn2-stories__slide.is-center .hn2-stories__photo img {
    transform: scale(1.03);
}

.hn2-stories__glass:hover .hn2-stories__photo img {
    transform: scale(1.08);
}

.hn2-stories__overlay {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(calc(100% + 1rem));
    opacity: 0;
    transition: transform 0.45s var(--hn2-ease-spring), opacity 0.35s ease;
    z-index: 5;
}

.hn2-stories__slide.is-center .hn2-stories__glass:hover .hn2-stories__overlay,
.hn2-stories__glass:focus-within .hn2-stories__overlay {
    transform: translateY(0);
    opacity: 1;
}

.hn2-stories__overlay h4 {
    margin: 0 0 0.25rem;
    font-family: var(--hn2-serif);
    font-size: 1.1rem;
    color: #0f172a;
}

.hn2-stories__overlay p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.hn2-stories__overlay p i {
    color: #9333ea;
    margin-right: 0.2rem;
}

.hn2-stories__heart-pulse {
    position: absolute;
    top: -14px;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.45);
    animation: hn2HeartBeat 1.4s ease-in-out infinite;
}

.hn2-stories__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hn2-stories__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.35s var(--hn2-ease-spring), background 0.3s ease, width 0.35s ease;
}

.hn2-stories__dot.is-active {
    background: #9333ea;
    width: 28px;
    border-radius: 999px;
    transform: scale(1.05);
}

.hn2-stories__dot:hover:not(.is-active) {
    background: #a78bfa;
    transform: scale(1.15);
}

@media (hover: none) {
    .hn2-stories__slide.is-center .hn2-stories__overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ─── How It Works (4-step) ─── */
.hn2-how {
    --hn2-step-green: #0d7a5c;
    --hn2-step-green-light: #e8f7f1;
    --hn2-step-orange: #f59e0b;
    --hn2-step-orange-light: #fff8e8;
    --hn2-step-purple: var(--hn2-primary);
    --hn2-step-purple-light: var(--hn2-primary-soft);
    --hn2-step-pink: #e11d6a;
    --hn2-step-pink-light: #fff0f6;
    position: relative;
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #fdfbf7 0%, #f8fafb 45%, #fff 100%);
    overflow: hidden;
}

.hn2-how__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(13, 122, 92, 0.07) 0%, transparent 40%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(65, 62, 102, 0.025) 48px,
            rgba(65, 62, 102, 0.025) 49px
        );
    pointer-events: none;
}

.hn2-how__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: hn2HowGlow 8s ease-in-out infinite alternate;
}

.hn2-how__glow--1 {
    width: 360px;
    height: 360px;
    top: 8%;
    left: -8%;
    background: rgba(147, 51, 234, 0.12);
}

.hn2-how__glow--2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: -6%;
    background: rgba(13, 122, 92, 0.14);
    animation-delay: -4s;
}

@keyframes hn2HowGlow {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(24px, -18px) scale(1.08); }
}

.hn2-how__intro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.hn2-how__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.18);
    backdrop-filter: blur(12px);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.12);
}

.hn2-how__badge i {
    animation: hn2HowSpin 4s linear infinite;
}

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

.hn2-how__title {
    margin: 0 0 0.5rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--hn2-teal-deep);
}

.hn2-how__title em {
    font-style: normal;
    color: var(--hn2-teal);
    background: linear-gradient(135deg, var(--hn2-teal) 0%, var(--hn2-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hn2-how__title-bn {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #b45309;
}

.hn2-how__desc {
    margin: 0;
    font-size: 1.05rem;
    color: var(--hn2-muted);
    line-height: 1.65;
}

.hn2-how__flow {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.hn2-how__flow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 920px;
    margin: 0 auto 2.75rem;
    padding: 0 0.5rem;
}

.hn2-how__icon-cell {
    flex: 0 0 auto;
    opacity: 0;
    transform: scale(0.5) translateY(24px);
}

.hn2-how.is-animated .hn2-how__icon-cell {
    animation: hn2StepPop 0.7s var(--hn2-ease-spring) var(--hn2-step-delay, 0s) forwards;
}

@keyframes hn2StepPop {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hn2-how__icon-box {
    position: relative;
    width: clamp(72px, 10vw, 96px);
    height: clamp(72px, 10vw, 96px);
    border-radius: 1.65rem;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.65rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s var(--hn2-ease-spring), box-shadow 0.4s var(--hn2-ease);
    cursor: default;
}

.hn2-how__icon-box:hover {
    transform: translateY(-8px) scale(1.06);
}

.hn2-how__icon-box--green {
    background: linear-gradient(145deg, #0d7a5c 0%, #0a5c45 100%);
    box-shadow: 0 16px 40px rgba(13, 122, 92, 0.35);
}

.hn2-how__icon-box--orange {
    background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.35);
}

.hn2-how__icon-box--purple {
    background: linear-gradient(145deg, var(--hn2-primary) 0%, var(--hn2-primary-dark) 100%);
    box-shadow: 0 16px 40px rgba(147, 51, 234, 0.35);
}

.hn2-how__icon-box--pink {
    background: linear-gradient(145deg, #e11d6a 0%, #be185d 100%);
    box-shadow: 0 16px 40px rgba(225, 29, 106, 0.35);
}

.hn2-how__icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 1.85rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    opacity: 0;
    animation: hn2IconRing 2.5s ease-out infinite;
}

.hn2-how.is-animated .hn2-how__icon-box--green .hn2-how__icon-ring { animation-delay: 0s; }
.hn2-how.is-animated .hn2-how__icon-box--orange .hn2-how__icon-ring { animation-delay: 0.6s; }
.hn2-how.is-animated .hn2-how__icon-box--purple .hn2-how__icon-ring { animation-delay: 1.2s; }
.hn2-how.is-animated .hn2-how__icon-box--pink .hn2-how__icon-ring { animation-delay: 1.8s; }

@keyframes hn2IconRing {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

.hn2-how__icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0.4;
    z-index: -1;
    animation: hn2IconPulse 3s ease-in-out infinite;
}

@keyframes hn2IconPulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.12); opacity: 0.55; }
}

.hn2-how__icon-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: var(--hn2-text);
    font-size: 0.75rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid currentColor;
}

.hn2-how__icon-box--green .hn2-how__icon-num { color: var(--hn2-step-green); }
.hn2-how__icon-box--orange .hn2-how__icon-num { color: var(--hn2-step-orange); }
.hn2-how__icon-box--purple .hn2-how__icon-num { color: var(--hn2-step-purple); }
.hn2-how__icon-box--pink .hn2-how__icon-num { color: var(--hn2-step-pink); }

.hn2-how__connector {
    flex: 1 1 48px;
    max-width: 88px;
    min-width: 32px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding: 0 0.15rem;
}

.hn2-how__connector-line {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left center;
}

.hn2-how.is-animated .hn2-how__connector-line {
    animation: hn2ConnDraw 0.65s var(--hn2-ease) var(--hn2-conn-delay, 0.3s) forwards;
}

@keyframes hn2ConnDraw {
    to { transform: scaleX(1); }
}

.hn2-how__connector--green-orange .hn2-how__connector-line {
    background: linear-gradient(90deg, var(--hn2-step-green), var(--hn2-step-orange));
}

.hn2-how__connector--orange-purple .hn2-how__connector-line {
    background: linear-gradient(90deg, var(--hn2-step-orange), var(--hn2-step-purple));
}

.hn2-how__connector--purple-pink .hn2-how__connector-line {
    background: linear-gradient(90deg, var(--hn2-step-purple), var(--hn2-step-pink));
}

.hn2-how__connector-arrow {
    flex: 0 0 auto;
    font-size: 0.65rem;
    opacity: 0;
    transform: translateX(-6px);
}

.hn2-how.is-animated .hn2-how__connector-arrow {
    animation: hn2ArrowIn 0.4s var(--hn2-ease) calc(var(--hn2-conn-delay, 0.3s) + 0.5s) forwards;
}

.hn2-how__connector--green-orange .hn2-how__connector-arrow { color: var(--hn2-step-orange); }
.hn2-how__connector--orange-purple .hn2-how__connector-arrow { color: var(--hn2-step-purple); }
.hn2-how__connector--purple-pink .hn2-how__connector-arrow { color: var(--hn2-step-pink); }

@keyframes hn2ArrowIn {
    to { opacity: 1; transform: translateX(0); }
}

.hn2-how__summaries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hn2-how__summary {
    position: relative;
    text-align: center;
    padding: 0 0.5rem;
    opacity: 0;
    transform: translateY(28px);
    transition: transform 0.35s var(--hn2-ease);
}

.hn2-how.is-animated .hn2-how__summary {
    animation: hn2SummaryIn 0.75s var(--hn2-ease) var(--hn2-step-delay, 0.5s) forwards;
}

@keyframes hn2SummaryIn {
    to { opacity: 1; transform: translateY(0); }
}

.hn2-how__ghost-num {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--hn2-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.hn2-how__summary h3 {
    position: relative;
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--hn2-text);
}

.hn2-how__summary-bn {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.hn2-how__summary--green .hn2-how__summary-bn { color: var(--hn2-step-green); }
.hn2-how__summary--orange .hn2-how__summary-bn { color: var(--hn2-step-orange); }
.hn2-how__summary--purple .hn2-how__summary-bn { color: var(--hn2-step-purple); }
.hn2-how__summary--pink .hn2-how__summary-bn { color: var(--hn2-step-pink); }

.hn2-how__summary-desc {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--hn2-muted);
    line-height: 1.55;
}

.hn2-how__summary.is-highlight {
    transform: translateY(-4px);
}

.hn2-how__summary.is-highlight h3 {
    color: var(--hn2-teal);
}

.hn2-how__summary.is-highlight .hn2-how__ghost-num {
    opacity: 0.14;
}

.hn2-how__cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hn2-how__card {
    position: relative;
    border-radius: 1.35rem;
    padding: 1.35rem 1.25rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.45s var(--hn2-ease-spring), box-shadow 0.45s var(--hn2-ease);
    opacity: 0;
    transform: translateY(32px) scale(0.96);
}

.hn2-how__card.is-visible {
    animation: hn2CardIn 0.7s var(--hn2-ease) var(--hn2-card-delay, 0s) forwards;
}

@keyframes hn2CardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hn2-how__card--green {
    background: linear-gradient(160deg, rgba(232, 247, 241, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(13, 122, 92, 0.1);
}

.hn2-how__card--orange {
    background: linear-gradient(160deg, rgba(255, 248, 232, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.1);
}

.hn2-how__card--purple {
    background: linear-gradient(160deg, rgba(245, 238, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.1);
}

.hn2-how__card--pink {
    background: linear-gradient(160deg, rgba(255, 240, 246, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 12px 32px rgba(225, 29, 106, 0.1);
}

.hn2-how__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.hn2-how__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--hn2-ease);
    pointer-events: none;
}

.hn2-how__card:hover .hn2-how__card-shine {
    transform: translateX(120%);
}

.hn2-how__card-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hn2-how__card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hn2-text);
    line-height: 1.4;
}

.hn2-how__check {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.55rem;
    color: #fff;
}

.hn2-how__check--green { background: var(--hn2-step-green); }
.hn2-how__check--orange { background: var(--hn2-step-orange); }
.hn2-how__check--purple { background: var(--hn2-step-purple); }
.hn2-how__check--pink { background: var(--hn2-step-pink); }

.hn2-how__card-foot {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hn2-muted);
}

.hn2-how__card--green .hn2-how__card-foot i { color: var(--hn2-step-green); }
.hn2-how__card--orange .hn2-how__card-foot i { color: var(--hn2-step-orange); }
.hn2-how__card--purple .hn2-how__card-foot i { color: var(--hn2-step-purple); }
.hn2-how__card--pink .hn2-how__card-foot i { color: var(--hn2-step-pink); }

.hn2-how__cta {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow:
        0 20px 60px rgba(6, 94, 119, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hn2-how__cta-text {
    margin: 0 0 1.35rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--hn2-teal-deep);
}

.hn2-how__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hn2-how__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    overflow: hidden;
    transition: transform 0.35s var(--hn2-ease-spring), box-shadow 0.35s var(--hn2-ease);
}

.hn2-how__btn--primary {
    background: linear-gradient(135deg, var(--hn2-teal) 0%, #0a7a5c 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(6, 94, 119, 0.35);
    animation: hn2CtaPulse 2.8s ease-in-out infinite;
}

@keyframes hn2CtaPulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(6, 94, 119, 0.35); }
    50% { box-shadow: 0 16px 44px rgba(6, 94, 119, 0.5), 0 0 0 8px rgba(6, 94, 119, 0.08); }
}

.hn2-how__btn--primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 48px rgba(6, 94, 119, 0.45);
}

.hn2-how__btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
    animation: hn2BtnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hn2BtnShine {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

.hn2-how__btn--outline {
    background: #fff;
    color: var(--hn2-teal);
    border-color: var(--hn2-teal);
}

.hn2-how__btn--outline:hover {
    background: rgba(6, 94, 119, 0.06);
    transform: translateY(-3px);
}

.hn2-how__btn--block {
    width: 100%;
}

.hn2-how__cta-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--hn2-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.hn2-how__cta-note i {
    color: var(--hn2-gold);
}

/* Demo modal */
.hn2-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.hn2-demo-modal[hidden] {
    display: none;
}

.hn2-demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 42, 53, 0.65);
    backdrop-filter: blur(8px);
    animation: hn2FadeIn 0.35s var(--hn2-ease);
}

.hn2-demo-modal__panel {
    position: relative;
    width: min(520px, 100%);
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    animation: hn2ModalUp 0.45s var(--hn2-ease-spring);
    text-align: center;
}

@keyframes hn2FadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hn2ModalUp {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hn2-demo-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--hn2-muted);
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s;
}

.hn2-demo-modal__close:hover {
    background: var(--hn2-teal);
    color: #fff;
}

.hn2-demo-modal__panel h3 {
    margin: 0 0 0.5rem;
    font-family: var(--hn2-serif);
    font-size: 1.5rem;
    color: var(--hn2-teal-deep);
}

.hn2-demo-modal__panel > p {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--hn2-muted);
}

.hn2-demo-modal__video {
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--hn2-teal-deep) 0%, var(--hn2-teal) 100%);
}

.hn2-demo-modal__placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
}

.hn2-demo-modal__placeholder i {
    font-size: 2.5rem;
    opacity: 0.9;
    animation: hn2PlayPulse 1.5s ease-in-out infinite;
}

@keyframes hn2PlayPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.hn2-demo-modal__placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .hn2-how__summaries {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.25rem;
    }

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

@media (max-width: 700px) {
    .hn2-how__flow-track {
        flex-direction: column;
        gap: 0;
        max-width: 280px;
    }

    .hn2-how__connector {
        flex: 0 0 auto;
        width: 3px;
        height: 36px;
        max-width: none;
        min-width: 0;
        flex-direction: column;
        padding: 0;
    }

    .hn2-how__connector-line {
        width: 3px;
        height: 100%;
        flex: none;
        transform: scaleY(0);
        transform-origin: top center;
    }

    .hn2-how.is-animated .hn2-how__connector-line {
        animation-name: hn2ConnDrawV;
    }

    @keyframes hn2ConnDrawV {
        to { transform: scaleY(1); }
    }

    .hn2-how__connector-arrow {
        transform: translateY(-4px);
    }

    .hn2-how.is-animated .hn2-how__connector-arrow {
        animation-name: hn2ArrowInV;
    }

    @keyframes hn2ArrowInV {
        to { opacity: 1; transform: translateY(0); }
    }

    .hn2-how__connector-arrow i {
        transform: rotate(90deg);
    }

    .hn2-how__summaries {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hn2-how__cards {
        grid-template-columns: 1fr;
    }

    .hn2-how__cta-actions {
        flex-direction: column;
    }

    .hn2-how__btn {
        width: 100%;
    }
}

/* ─── Videos of Happy Moments ─── */
.hn2-videos {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    overflow: hidden;
}

.hn2-videos__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hn2-videos__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: hn2VideoOrb 10s ease-in-out infinite alternate;
}

.hn2-videos__orb--1 {
    width: 280px;
    height: 280px;
    top: 10%;
    right: -5%;
    background: rgba(255, 0, 0, 0.06);
}

.hn2-videos__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 8%;
    left: -4%;
    background: rgba(147, 51, 234, 0.08);
    animation-delay: -5s;
}

@keyframes hn2VideoOrb {
    from { transform: translate(0, 0); }
    to { transform: translate(-20px, 16px); }
}

.hn2-videos__toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.hn2-videos__title {
    margin: 0;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #475569;
}

.hn2-videos__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #9333ea;
    transition: gap 0.3s var(--hn2-ease), color 0.3s;
}

.hn2-videos__view-all:hover {
    gap: 0.55rem;
    color: #7c3aed;
}

.hn2-videos__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
}

.hn2-videos__card[data-hn2-reveal] {
    transition-delay: var(--hn2-video-delay, 0s);
}

.hn2-videos__glass {
    position: relative;
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow:
        0 16px 48px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform 0.45s var(--hn2-ease-spring), box-shadow 0.45s var(--hn2-ease);
}

.hn2-videos__card:hover .hn2-videos__glass {
    transform: translateY(-8px);
    box-shadow:
        0 28px 60px rgba(147, 51, 234, 0.14),
        0 0 0 1px rgba(147, 51, 234, 0.08);
}

.hn2-videos__card.is-playing .hn2-videos__glass {
    transform: none;
    box-shadow: 0 20px 56px rgba(225, 29, 106, 0.15);
}

.hn2-videos__shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.75s var(--hn2-ease);
    pointer-events: none;
}

.hn2-videos__card:hover .hn2-videos__shine {
    transform: translateX(120%);
}

.hn2-videos__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.hn2-videos__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hn2-ease), filter 0.4s;
}

.hn2-videos__card:hover .hn2-videos__thumb img {
    transform: scale(1.06);
    filter: brightness(0.92);
}

.hn2-videos__card.is-playing .hn2-videos__thumb {
    display: none;
}

.hn2-videos__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.hn2-videos__channel {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.hn2-videos__channel-logo {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hn2-teal) 0%, #9333ea 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.55rem;
}

.hn2-videos__channel-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--hn2-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hn2-videos__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hn2-videos__play i {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #ff0000;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
    transition: transform 0.35s var(--hn2-ease-spring);
}

.hn2-videos__play-ring {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    animation: hn2PlayRing 2s ease-in-out infinite;
}

.hn2-videos__card:hover .hn2-videos__play i {
    transform: scale(1.12);
}

@keyframes hn2PlayRing {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.08); box-shadow: 0 12px 36px rgba(255, 0, 0, 0.25); }
}

.hn2-videos__embed {
    aspect-ratio: 16 / 9;
    background: #000;
}

.hn2-videos__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hn2-videos__card:not(.is-playing) .hn2-videos__embed {
    display: none;
}

.hn2-videos__foot {
    padding: 0.85rem 1rem 1rem;
}

.hn2-videos__foot p {
    margin: 0 0 0.45rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--hn2-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hn2-videos__yt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hn2-muted);
    transition: color 0.25s;
}

.hn2-videos__yt-link i {
    color: #ff0000;
}

.hn2-videos__yt-link:hover {
    color: #9333ea;
}

@media (max-width: 700px) {
    .hn2-videos__grid {
        grid-template-columns: 1fr;
    }

    .hn2-videos__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── Quran & Hadith Quote Slider ─── */
.hn2-quotes {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafb 0%, #eef5f3 100%);
}

.hn2-quotes__wrap {
    position: relative;
}

.hn2-quotes__glass {
    position: relative;
    border-radius: 2rem;
    padding: 3.25rem 2.5rem 4.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #043528 0%, #0a4d3a 35%, #0d3d32 70%, #061f18 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 80px rgba(4, 53, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: hn2QuoteBgShift 12s ease-in-out infinite alternate;
}

@keyframes hn2QuoteBgShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hn2-quotes__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 18px,
            rgba(232, 185, 35, 0.08) 18px,
            rgba(232, 185, 35, 0.08) 19px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.04) 18px,
            rgba(255, 255, 255, 0.04) 19px
        );
    pointer-events: none;
    animation: hn2PatternDrift 24s linear infinite;
}

.hn2-quotes__pattern--2 {
    opacity: 0.08;
    background-image: radial-gradient(circle at 25% 25%, rgba(232, 185, 35, 0.25) 1px, transparent 1px);
    background-size: 32px 32px;
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes hn2PatternDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(24px, -16px); }
}

.hn2-quotes__mark {
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-family: var(--hn2-serif);
    font-size: clamp(5rem, 12vw, 8rem);
    line-height: 1;
    color: var(--hn2-gold);
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
    animation: hn2MarkPulse 4s ease-in-out infinite;
}

@keyframes hn2MarkPulse {
    0%, 100% { opacity: 0.16; transform: scale(1); }
    50% { opacity: 0.24; transform: scale(1.03); }
}

.hn2-quotes__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: hn2QuoteGlow 8s ease-in-out infinite alternate;
}

.hn2-quotes__glow--1 {
    width: 200px;
    height: 200px;
    top: -40px;
    right: 10%;
    background: rgba(232, 185, 35, 0.2);
}

.hn2-quotes__glow--2 {
    width: 160px;
    height: 160px;
    bottom: -30px;
    left: 8%;
    background: rgba(10, 152, 192, 0.15);
    animation-delay: -4s;
}

@keyframes hn2QuoteGlow {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-12px, 10px) scale(1.15); }
}

.hn2-quotes__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 185, 35, 0.25);
    backdrop-filter: blur(8px);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 185, 35, 0.95);
}

.hn2-quotes__badge i {
    font-size: 0.65rem;
}

.hn2-quotes__viewport {
    position: relative;
    z-index: 2;
    min-height: clamp(140px, 22vw, 190px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hn2-quotes__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    pointer-events: none;
    transition:
        opacity 0.75s var(--hn2-ease),
        transform 0.75s var(--hn2-ease);
}

.hn2-quotes__slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hn2-quotes__slide.is-leaving {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
}

.hn2-quotes__type {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hn2-quotes__type--quran {
    background: rgba(232, 185, 35, 0.15);
    color: var(--hn2-gold);
    border: 1px solid rgba(232, 185, 35, 0.3);
}

.hn2-quotes__type--hadith {
    background: rgba(10, 152, 192, 0.15);
    color: #7dd3fc;
    border: 1px solid rgba(10, 152, 192, 0.3);
}

.hn2-quotes__text {
    margin: 0 0 1.15rem;
    max-width: 820px;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hn2-quotes__cite {
    font-style: normal;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 700;
    color: var(--hn2-gold);
    text-shadow: 0 0 24px rgba(232, 185, 35, 0.45);
    animation: hn2CiteGlow 3s ease-in-out infinite;
}

@keyframes hn2CiteGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(232, 185, 35, 0.35); }
    50% { text-shadow: 0 0 32px rgba(232, 185, 35, 0.65); }
}

.hn2-quotes__nav {
    position: absolute;
    bottom: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hn2-quotes__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    backdrop-filter: blur(8px);
    transition:
        background 0.3s var(--hn2-ease),
        color 0.3s,
        transform 0.35s var(--hn2-ease-spring),
        box-shadow 0.3s;
}

.hn2-quotes__arrow:hover {
    background: rgba(232, 185, 35, 0.25);
    color: var(--hn2-gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.3);
}

.hn2-quotes__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hn2-quotes__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        width 0.4s var(--hn2-ease),
        background 0.4s,
        box-shadow 0.4s;
}

.hn2-quotes__dot.is-active {
    width: 28px;
    background: var(--hn2-gold);
    box-shadow: 0 0 16px rgba(232, 185, 35, 0.55);
}

.hn2-quotes__dot:hover:not(.is-active) {
    background: rgba(232, 185, 35, 0.5);
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .hn2-quotes__glass {
        padding: 2.5rem 1.25rem 4.25rem;
        border-radius: 1.5rem;
    }

    .hn2-quotes__mark {
        font-size: 4.5rem;
        left: 0.75rem;
    }

    .hn2-quotes__badge {
        top: 1rem;
        right: 1rem;
    }

    .hn2-quotes__text {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .hn2-quotes__nav {
        gap: 0.5rem;
    }

    .hn2-quotes__arrow {
        width: 34px;
        height: 34px;
    }
}

/* ─── Explore Profiles / Categories ─── */
.hn2-categories {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #eef5f3 0%, #f8fafb 50%, #fff 100%);
    overflow: hidden;
}

.hn2-categories__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hn2-categories__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: hn2CatOrb 10s ease-in-out infinite alternate;
}

.hn2-categories__orb--1 {
    width: 320px;
    height: 320px;
    top: -8%;
    left: -6%;
    background: rgba(6, 94, 119, 0.12);
}

.hn2-categories__orb--2 {
    width: 280px;
    height: 280px;
    top: 20%;
    right: -8%;
    background: rgba(232, 185, 35, 0.14);
    animation-delay: -3s;
}

.hn2-categories__orb--3 {
    width: 240px;
    height: 240px;
    bottom: -5%;
    left: 35%;
    background: rgba(147, 51, 234, 0.1);
    animation-delay: -6s;
}

@keyframes hn2CatOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -16px) scale(1.06); }
}

.hn2-categories__intro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.75rem;
}

.hn2-categories__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(6, 94, 119, 0.1);
    border: 1px solid rgba(6, 94, 119, 0.18);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hn2-teal);
    margin-bottom: 1.15rem;
    box-shadow: 0 8px 24px rgba(6, 94, 119, 0.1);
}

.hn2-categories__badge i {
    animation: hn2CatSpin 5s linear infinite;
}

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

.hn2-categories__title {
    margin: 0 0 0.45rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--hn2-teal-deep);
}

.hn2-categories__title-bn {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hn2-gold-dark);
}

.hn2-categories__desc {
    margin: 0;
    font-size: 1.02rem;
    color: var(--hn2-muted);
    line-height: 1.65;
}

.hn2-categories__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.hn2-categories__card[data-hn2-reveal] {
    transition-delay: var(--hn2-cat-delay, 0s);
}

.hn2-categories__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.15rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow:
        0 12px 36px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    overflow: hidden;
    transition:
        transform 0.45s var(--hn2-ease-spring),
        box-shadow 0.45s var(--hn2-ease),
        border-color 0.35s;
    will-change: transform;
}

.hn2-categories__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--hn2-ease);
    pointer-events: none;
    z-index: 3;
}

.hn2-categories__card:hover .hn2-categories__card-shine {
    transform: translateX(120%);
}

.hn2-categories__card-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.hn2-categories__card:hover .hn2-categories__card-glow {
    opacity: 1;
}

.hn2-categories__icon {
    position: relative;
    z-index: 2;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.45s var(--hn2-ease-spring);
}

.hn2-categories__card:hover .hn2-categories__icon {
    transform: scale(1.1) rotate(-4deg);
}

.hn2-categories__icon-ring {
    position: absolute;
    inset: -5px;
    border-radius: 1.15rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: hn2CatIconRing 2.5s ease-out infinite;
}

.hn2-categories__card:hover .hn2-categories__icon-ring {
    animation-play-state: running;
}

@keyframes hn2CatIconRing {
    0% { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

.hn2-categories__body {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hn2-categories__body strong {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--hn2-text);
    line-height: 1.3;
}

.hn2-categories__body small {
    font-size: 0.75rem;
    color: var(--hn2-muted);
    line-height: 1.4;
}

.hn2-categories__arrow {
    position: relative;
    z-index: 2;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    background: rgba(6, 94, 119, 0.08);
    color: var(--hn2-teal);
    opacity: 0;
    transform: translateX(-10px) scale(0.85);
    transition:
        opacity 0.35s var(--hn2-ease),
        transform 0.35s var(--hn2-ease-spring),
        background 0.3s,
        color 0.3s;
}

.hn2-categories__card:hover .hn2-categories__arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Color themes */
.hn2-categories__card--rose .hn2-categories__icon { background: linear-gradient(135deg, #e11d48, #be123c); }
.hn2-categories__card--rose .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(225, 29, 72, 0.22); }
.hn2-categories__card--rose:hover { border-color: rgba(225, 29, 72, 0.25); }
.hn2-categories__card--rose:hover .hn2-categories__arrow { background: #e11d48; color: #fff; }

.hn2-categories__card--navy .hn2-categories__icon { background: linear-gradient(135deg, #1e3a5f, #0f2744); }
.hn2-categories__card--navy .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(30, 58, 95, 0.22); }
.hn2-categories__card--navy:hover { border-color: rgba(30, 58, 95, 0.25); }
.hn2-categories__card--navy:hover .hn2-categories__arrow { background: #1e3a5f; color: #fff; }

.hn2-categories__card--gold .hn2-categories__icon { background: linear-gradient(135deg, #e8b923, #c99a12); }
.hn2-categories__card--gold .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(232, 185, 35, 0.28); }
.hn2-categories__card--gold:hover { border-color: rgba(232, 185, 35, 0.35); }
.hn2-categories__card--gold:hover .hn2-categories__arrow { background: var(--hn2-gold); color: #fff; }

.hn2-categories__card--teal .hn2-categories__icon { background: linear-gradient(135deg, var(--hn2-teal), #0a7a5c); }
.hn2-categories__card--teal .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(6, 94, 119, 0.22); }
.hn2-categories__card--teal:hover { border-color: rgba(6, 94, 119, 0.25); }
.hn2-categories__card--teal:hover .hn2-categories__arrow { background: var(--hn2-teal); color: #fff; }

.hn2-categories__card--plum .hn2-categories__icon { background: linear-gradient(135deg, #9333ea, #7c3aed); }
.hn2-categories__card--plum .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(147, 51, 234, 0.22); }
.hn2-categories__card--plum:hover { border-color: rgba(147, 51, 234, 0.25); }
.hn2-categories__card--plum:hover .hn2-categories__arrow { background: #9333ea; color: #fff; }

.hn2-categories__card--coral .hn2-categories__icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.hn2-categories__card--coral .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(249, 115, 22, 0.22); }
.hn2-categories__card--coral:hover { border-color: rgba(249, 115, 22, 0.25); }
.hn2-categories__card--coral:hover .hn2-categories__arrow { background: #f97316; color: #fff; }

.hn2-categories__card--indigo .hn2-categories__icon { background: linear-gradient(135deg, #4f46e5, #3730a3); }
.hn2-categories__card--indigo .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(79, 70, 229, 0.22); }
.hn2-categories__card--indigo:hover { border-color: rgba(79, 70, 229, 0.25); }
.hn2-categories__card--indigo:hover .hn2-categories__arrow { background: #4f46e5; color: #fff; }

.hn2-categories__card--slate .hn2-categories__icon { background: linear-gradient(135deg, #475569, #334155); }
.hn2-categories__card--slate .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(71, 85, 105, 0.22); }
.hn2-categories__card--slate:hover { border-color: rgba(71, 85, 105, 0.25); }
.hn2-categories__card--slate:hover .hn2-categories__arrow { background: #475569; color: #fff; }

.hn2-categories__card--amber .hn2-categories__icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.hn2-categories__card--amber .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(245, 158, 11, 0.28); }
.hn2-categories__card--amber:hover { border-color: rgba(245, 158, 11, 0.35); }
.hn2-categories__card--amber:hover .hn2-categories__arrow { background: #d97706; color: #fff; }

.hn2-categories__card--cyan .hn2-categories__icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.hn2-categories__card--cyan .hn2-categories__card-glow { box-shadow: 0 16px 48px rgba(6, 182, 212, 0.28); }
.hn2-categories__card--cyan:hover { border-color: rgba(6, 182, 212, 0.35); }
.hn2-categories__card--cyan:hover .hn2-categories__arrow { background: #0891b2; color: #fff; }

@media (max-width: 1100px) {
    .hn2-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .hn2-categories__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Recently Joined Members ─── */
.hn2-members {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: linear-gradient(165deg, #0a1218 0%, #0f1f28 40%, #132a35 100%);
    overflow: hidden;
}

.hn2-members__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hn2-members__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: hn2MembersGlow 9s ease-in-out infinite alternate;
}

.hn2-members__glow--1 {
    width: 360px;
    height: 360px;
    top: -10%;
    right: -5%;
    background: rgba(6, 94, 119, 0.35);
}

.hn2-members__glow--2 {
    width: 300px;
    height: 300px;
    bottom: -8%;
    left: -4%;
    background: rgba(232, 185, 35, 0.15);
    animation-delay: -4s;
}

@keyframes hn2MembersGlow {
    from { transform: translate(0, 0); }
    to { transform: translate(-18px, 14px); }
}

.hn2-members__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
}

.hn2-members__title {
    margin: 0 0 0.45rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
}

.hn2-members__caption {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    line-height: 1.5;
}

.hn2-members__see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        background 0.35s var(--hn2-ease),
        border-color 0.35s,
        gap 0.35s,
        box-shadow 0.35s;
}

.hn2-members__see-all:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 185, 35, 0.5);
    gap: 0.65rem;
    box-shadow: 0 0 28px rgba(232, 185, 35, 0.2);
}

.hn2-members__stage {
    position: relative;
    z-index: 2;
}

.hn2-members__viewport {
    overflow: hidden;
    padding: 0.5rem 0 1rem;
}

.hn2-members__track {
    display: flex;
    gap: 1.15rem;
    transition: transform 0.65s var(--hn2-ease);
}

.hn2-members__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.8rem;
    transition: background 0.3s, transform 0.35s var(--hn2-ease-spring);
}

.hn2-members__nav:hover {
    background: rgba(232, 185, 35, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.hn2-members__nav--prev { left: -0.75rem; }
.hn2-members__nav--next { right: -0.75rem; }

.hn2-members__card {
    flex: 0 0 calc(25% - 0.87rem);
    min-width: 0;
    animation: hn2MemberIn 0.8s var(--hn2-ease) var(--hn2-member-delay, 0s) both;
}

@media (min-width: 1440px) {
    .hn2-members__card {
        flex: 0 0 calc(20% - 0.92rem);
    }
}

@keyframes hn2MemberIn {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hn2-members__glass {
    position: relative;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition:
        transform 0.45s var(--hn2-ease-spring),
        box-shadow 0.45s,
        border-color 0.35s;
}

.hn2-members__card:hover .hn2-members__glass {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(6, 94, 119, 0.2);
}

.hn2-members__card--bride:hover .hn2-members__glass {
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        0 0 36px rgba(225, 29, 72, 0.18);
}

.hn2-members__card--groom:hover .hn2-members__glass {
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        0 0 36px rgba(10, 152, 192, 0.2);
}

.hn2-members__glaze {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14) 0%,
        transparent 45%,
        rgba(255, 255, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: 3;
    animation: hn2MembersGlaze 4s ease-in-out infinite alternate;
}

@keyframes hn2MembersGlaze {
    from { opacity: 0.55; }
    to { opacity: 0.95; }
}

.hn2-members__shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
    transform: translateX(-130%);
    transition: transform 0.85s var(--hn2-ease);
    pointer-events: none;
}

.hn2-members__card:hover .hn2-members__shine {
    transform: translateX(130%);
}

.hn2-members__photo {
    position: relative;
    aspect-ratio: 4 / 3.2;
    overflow: hidden;
    border-radius: 1.35rem 1.35rem 0 0;
}

.hn2-members__card--bride .hn2-members__photo {
    background: linear-gradient(145deg, #be123c 0%, #9f1239 100%);
}

.hn2-members__card--groom .hn2-members__photo {
    background: linear-gradient(145deg, #0369a1 0%, #075985 100%);
}

.hn2-members__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) saturate(0.85);
    transform: scale(1.15);
    transition: filter 0.5s var(--hn2-ease), transform 0.5s var(--hn2-ease);
}

.hn2-members__card:hover .hn2-members__photo-img {
    filter: blur(14px) saturate(0.95);
    transform: scale(1.08);
}

.hn2-members__photo-blur {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.hn2-members__initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--hn2-serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.06em;
    z-index: 2;
    pointer-events: none;
}

.hn2-members__verified {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0d7a5c;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    animation: hn2VerifiedPulse 2.5s ease-in-out infinite;
}

@keyframes hn2VerifiedPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 4px 20px rgba(13, 122, 92, 0.45); }
}

.hn2-members__verified i {
    font-size: 0.7rem;
}

.hn2-members__privacy {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.35s;
}

.hn2-members__card:hover .hn2-members__privacy {
    opacity: 1;
}

.hn2-members__body {
    position: relative;
    z-index: 2;
    padding: 1.1rem 1.15rem 1.15rem;
}

.hn2-members__code {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.hn2-members__meta {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.52);
}

.hn2-members__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.hn2-members__tags span {
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.hn2-members__actions {
    display: flex;
    gap: 0.55rem;
}

.hn2-members__view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.hn2-members__view:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 185, 35, 0.45);
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.15);
}

.hn2-members__fav {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    transition:
        background 0.3s,
        color 0.3s,
        transform 0.35s var(--hn2-ease-spring),
        border-color 0.3s;
}

.hn2-members__fav:hover,
.hn2-members__fav.is-active {
    background: rgba(225, 29, 72, 0.25);
    border-color: rgba(225, 29, 72, 0.5);
    color: #fb7185;
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .hn2-members__card {
        flex: 0 0 calc(50% - 0.6rem);
    }

    .hn2-members__nav--prev { left: 0; }
    .hn2-members__nav--next { right: 0; }
}

@media (max-width: 640px) {
    .hn2-members__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hn2-members__see-all {
        width: 100%;
        justify-content: center;
    }

    .hn2-members__card {
        flex: 0 0 88%;
    }

    .hn2-members__nav {
        display: none;
    }

    .hn2-members__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hn2-members__track {
        transform: none !important;
    }

    .hn2-members__card {
        scroll-snap-align: center;
    }
}

/* ─── FAQ Accordion ─── */
.hn2-faq {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #faf5ff 0%, #fdf2f8 45%, #f8fafb 100%);
    overflow: hidden;
}

.hn2-faq__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hn2-faq__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: hn2FaqOrb 11s ease-in-out infinite alternate;
}

.hn2-faq__orb--1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: -5%;
    background: rgba(147, 51, 234, 0.12);
}

.hn2-faq__orb--2 {
    width: 260px;
    height: 260px;
    bottom: 0;
    right: -4%;
    background: rgba(236, 72, 153, 0.1);
    animation-delay: -5s;
}

@keyframes hn2FaqOrb {
    from { transform: translate(0, 0); }
    to { transform: translate(16px, -12px); }
}

.hn2-faq__container {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hn2-faq__intro {
    text-align: center;
    margin-bottom: 2.25rem;
}

.hn2-faq__title {
    margin: 0 0 0.35rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.02em;
}

.hn2-faq__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #9333ea;
}

.hn2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hn2-faq__item {
    position: relative;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(147, 51, 234, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(147, 51, 234, 0.06);
    overflow: hidden;
    transition:
        border-color 0.4s var(--hn2-ease),
        box-shadow 0.45s var(--hn2-ease),
        transform 0.4s var(--hn2-ease-spring);
    animation: hn2FaqItemIn 0.7s var(--hn2-ease) var(--hn2-faq-delay, 0s) both;
}

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

.hn2-faq__item.is-open {
    border-color: rgba(147, 51, 234, 0.35);
    box-shadow:
        0 16px 40px rgba(147, 51, 234, 0.14),
        inset 3px 0 0 #9333ea;
    transform: translateY(-2px);
}

.hn2-faq__item-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.7) 50%, transparent 58%);
    transform: translateX(-120%);
    pointer-events: none;
    z-index: 3;
    transition: transform 0.75s var(--hn2-ease);
}

.hn2-faq__item.is-open .hn2-faq__item-shine {
    transform: translateX(120%);
}

.hn2-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.05rem 1.25rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    color: inherit;
}

.hn2-faq__num {
    flex: 0 0 auto;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #9333ea;
}

.hn2-faq__question {
    flex: 1;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    font-weight: 700;
    color: #5b21b6;
    line-height: 1.45;
}

.hn2-faq__chevron {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(147, 51, 234, 0.08);
    color: #9333ea;
    font-size: 0.7rem;
    transition:
        transform 0.45s var(--hn2-ease-spring),
        background 0.35s,
        color 0.35s;
}

.hn2-faq__item.is-open .hn2-faq__chevron {
    transform: rotate(180deg);
    background: #9333ea;
    color: #fff;
}

.hn2-faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--hn2-ease);
}

.hn2-faq__item.is-open .hn2-faq__panel {
    grid-template-rows: 1fr;
}

.hn2-faq__panel-inner {
    overflow: hidden;
}

.hn2-faq__answer {
    margin: 0;
    padding: 0 1.25rem 1.15rem 2.5rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--hn2-muted);
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.45s var(--hn2-ease) 0.08s,
        transform 0.45s var(--hn2-ease) 0.08s;
}

.hn2-faq__item.is-open .hn2-faq__answer {
    opacity: 1;
    transform: translateY(0);
}

.hn2-faq__foot {
    text-align: center;
}

.hn2-faq__more {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.35);
    transition:
        transform 0.35s var(--hn2-ease-spring),
        box-shadow 0.35s;
}

.hn2-faq__more:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 44px rgba(147, 51, 234, 0.45);
}

.hn2-faq__more-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
    animation: hn2FaqBtnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hn2FaqBtnShine {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

@media (max-width: 600px) {
    .hn2-faq__trigger {
        padding: 0.95rem 1rem;
        align-items: flex-start;
    }

    .hn2-faq__answer {
        padding: 0 1rem 1rem 1rem;
    }

    .hn2-faq__more {
        width: 100%;
    }
}

/* ─── Offices + Google Map ─── */
.hn2-offices {
    position: relative;
    padding: 5rem 0 5.5rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafb 50%, #eef2f7 100%);
    overflow: hidden;
}

.hn2-offices__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hn2-offices__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: hn2OfficeOrb 12s ease-in-out infinite alternate;
}

.hn2-offices__orb--1 {
    width: 340px;
    height: 340px;
    top: -5%;
    right: 8%;
    background: rgba(6, 94, 119, 0.14);
}

.hn2-offices__orb--2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: -6%;
    background: rgba(232, 185, 35, 0.12);
    animation-delay: -4s;
}

@keyframes hn2OfficeOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-18px, 14px) scale(1.06); }
}

.hn2-offices__intro {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2.5rem;
}

.hn2-offices__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(6, 94, 119, 0.15);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hn2-teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hn2-offices__title {
    margin: 0 0 0.4rem;
    font-family: var(--hn2-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    color: var(--hn2-text);
    letter-spacing: -0.02em;
}

.hn2-offices__desc {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--hn2-muted);
}

.hn2-offices__accent {
    display: block;
    width: 56px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hn2-teal), #22c55e, var(--hn2-gold));
    animation: hn2OfficeAccent 2.8s ease-in-out infinite;
}

@keyframes hn2OfficeAccent {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.25); opacity: 0.85; }
}

.hn2-offices__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hn2-offices__card {
    position: relative;
    text-align: left;
    padding: 1.15rem 1.15rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--hn2-radius);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.45s var(--hn2-ease-spring),
        box-shadow 0.45s var(--hn2-ease),
        border-color 0.35s;
    animation: hn2OfficeCardIn 0.75s var(--hn2-ease) var(--hn2-office-delay, 0s) both;
}

@keyframes hn2OfficeCardIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hn2-offices__card--teal { --hn2-office-accent: var(--hn2-teal); --hn2-office-glow: rgba(6, 94, 119, 0.22); }
.hn2-offices__card--green { --hn2-office-accent: #16a34a; --hn2-office-glow: rgba(22, 163, 74, 0.22); }
.hn2-offices__card--purple { --hn2-office-accent: #9333ea; --hn2-office-glow: rgba(147, 51, 234, 0.22); }
.hn2-offices__card--gold { --hn2-office-accent: var(--hn2-gold-dark); --hn2-office-glow: rgba(232, 185, 35, 0.28); }
.hn2-offices__card--coral { --hn2-office-accent: #ea580c; --hn2-office-glow: rgba(234, 88, 12, 0.22); }
.hn2-offices__card--indigo { --hn2-office-accent: #4f46e5; --hn2-office-glow: rgba(79, 70, 229, 0.22); }
.hn2-offices__card--rose { --hn2-office-accent: var(--hn2-red); --hn2-office-glow: rgba(161, 9, 9, 0.2); }
.hn2-offices__card--slate { --hn2-office-accent: #475569; --hn2-office-glow: rgba(71, 85, 105, 0.22); }

.hn2-offices__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.65) 50%, transparent 60%);
    transform: translateX(-130%);
    animation: hn2OfficeCardShine 4.5s ease-in-out infinite;
    pointer-events: none;
}

.hn2-offices__card:nth-child(2n) .hn2-offices__card-shine { animation-delay: -1.5s; }
.hn2-offices__card:nth-child(3n) .hn2-offices__card-shine { animation-delay: -3s; }

@keyframes hn2OfficeCardShine {
    0%, 72%, 100% { transform: translateX(-130%); }
    40% { transform: translateX(130%); }
}

.hn2-offices__card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px var(--hn2-office-glow);
}

.hn2-offices__card.is-active {
    border-color: var(--hn2-office-accent);
    box-shadow:
        0 18px 44px var(--hn2-office-glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 4px 0 0 var(--hn2-office-accent);
    transform: translateY(-6px) scale(1.02);
}

.hn2-offices__pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.55rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--hn2-office-accent), color-mix(in srgb, var(--hn2-office-accent) 70%, #fff));
    color: #fff;
    font-size: 0.8rem;
    box-shadow: 0 6px 16px var(--hn2-office-glow);
}

.hn2-offices__card h3 {
    margin: 0 0 0.45rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--hn2-text);
    line-height: 1.3;
}

.hn2-offices__address {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    line-height: 1.55;
    color: var(--hn2-muted);
}

.hn2-offices__phones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
}

.hn2-offices__phone {
    font-size: 0.75rem;
    font-weight: 700;
    color: #c026d3;
    text-decoration: none;
    transition: color 0.25s;
}

.hn2-offices__phone:hover {
    color: var(--hn2-teal);
    text-decoration: underline;
}

.hn2-offices__map-wrap {
    position: relative;
    z-index: 2;
}

.hn2-offices__map-glass {
    position: relative;
    border-radius: var(--hn2-radius-lg);
    overflow: hidden;
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hn2-offices__map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.hn2-offices__map-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(6, 94, 119, 0.12);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hn2-teal);
}

.hn2-offices__map-label i {
    color: #22c55e;
}

.hn2-offices__map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hn2-offices__map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(6, 94, 119, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--hn2-teal);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.35s var(--hn2-ease-spring),
        box-shadow 0.35s,
        background 0.35s;
}

.hn2-offices__map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 94, 119, 0.12);
}

.hn2-offices__map-btn--primary {
    background: linear-gradient(135deg, var(--hn2-teal) 0%, var(--hn2-cyan) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 28px rgba(6, 94, 119, 0.28);
}

.hn2-offices__map-btn--primary:hover {
    box-shadow: 0 14px 36px rgba(6, 94, 119, 0.38);
}

.hn2-offices__map-glaze {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        125deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 45%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 70%
    );
    animation: hn2OfficeMapGlaze 5s ease-in-out infinite;
}

@keyframes hn2OfficeMapGlaze {
    0%, 100% { transform: translateX(-30%) skewX(-8deg); opacity: 0.5; }
    50% { transform: translateX(30%) skewX(-8deg); opacity: 0.85; }
}

.hn2-offices__map-glass iframe {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
    transition: opacity 0.45s var(--hn2-ease);
}

.hn2-offices__map-glass.is-loading iframe {
    opacity: 0.35;
}

.hn2-offices__map-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(248, 250, 251, 0.75);
    backdrop-filter: blur(6px);
    color: var(--hn2-teal);
    font-size: 0.875rem;
    font-weight: 600;
}

.hn2-offices__map-glass.is-loading .hn2-offices__map-loader {
    display: flex;
}

.hn2-offices__map-hint {
    margin: 0.85rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--hn2-muted);
}

.hn2-offices__map-hint i {
    color: var(--hn2-gold-dark);
    margin-right: 0.25rem;
}

@media (max-width: 1100px) {
    .hn2-offices__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hn2-offices {
        padding: 3.5rem 0 4rem;
    }

    .hn2-offices__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hn2-offices__map-head {
        flex-direction: column;
        align-items: stretch;
    }

    .hn2-offices__map-actions {
        flex-direction: column;
    }

    .hn2-offices__map-btn {
        justify-content: center;
    }

    .hn2-offices__map-glass,
    .hn2-offices__map-glass iframe {
        min-height: 320px;
        height: 320px;
    }
}

[data-hn2-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--hn2-ease), transform 0.8s var(--hn2-ease);
    transition-delay: var(--hn2-footer-delay, 0s);
}

[data-hn2-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Footer ─── */
.hn2-footer {
    position: relative;
    margin-top: 0;
}

.hn2-footer__wa {
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, #7c3aed 0%, #c026d3 45%, #db2777 100%);
    padding: 0.85rem 0;
    overflow: hidden;
}

.hn2-footer__wa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    animation: hn2FooterWaFlash 7.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hn2FooterWaFlash {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

.hn2-footer__wa-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hn2-footer__wa-text {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    min-width: 0;
}

.hn2-footer__wa-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    min-width: 0;
}

.hn2-footer__wa-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
}

.hn2-footer__wa-text span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.35;
}

.hn2-footer__wa-icon {
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
}

.hn2-footer__wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: hn2FooterWaPulse 2.2s ease-in-out infinite;
    transform-origin: center center;
}

.hn2-footer__wa-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    margin: 0;
    color: #fff;
    pointer-events: none;
    transform: translateY(9px);
}

@keyframes hn2FooterWaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hn2-footer__wa-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.5rem 0.7rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fdf9 100%);
    color: #0d7a5f;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.06),
        0 10px 22px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition:
        transform 0.4s var(--hn2-ease-spring),
        box-shadow 0.4s var(--hn2-ease),
        background 0.35s;
}

.hn2-footer__wa-btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #c026d3 0%, #7c3aed 100%);
    color: #fff;
    font-size: 1.1rem;
    box-shadow:
        0 4px 12px rgba(18, 140, 126, 0.45),
        0 0 0 2px rgba(255, 255, 255, 0.9);
    transition: transform 0.35s var(--hn2-ease-spring), box-shadow 0.35s;
}

.hn2-footer__wa-btn-label {
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.hn2-footer__wa-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hn2-footer__wa-btn:hover .hn2-footer__wa-btn-icon {
    transform: scale(1.08);
    box-shadow:
        0 6px 18px rgba(18, 140, 126, 0.55),
        0 0 0 2px rgba(255, 255, 255, 1);
}

.hn2-footer__wa-btn-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.75) 48%, transparent 62%);
    animation: hn2FooterWaFlash 6s ease-in-out infinite;
    pointer-events: none;
}

.hn2-footer__main {
    position: relative;
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #2e1065 0%, #3b0764 50%, #2e1065 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.hn2-footer__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
}

.hn2-footer__pattern-svg {
    width: 100%;
    height: 100%;
    animation: hn2FooterPatternDrift 30s linear infinite;
}

@keyframes hn2FooterPatternDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-80px, -80px); }
}

.hn2-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: hn2FooterGlow 10s ease-in-out infinite alternate;
}

.hn2-footer__glow--1 {
    width: 320px;
    height: 320px;
    top: -10%;
    left: -5%;
    background: rgba(6, 94, 119, 0.35);
}

.hn2-footer__glow--2 {
    width: 280px;
    height: 280px;
    bottom: -5%;
    right: -3%;
    background: rgba(232, 185, 35, 0.15);
    animation-delay: -4s;
}

@keyframes hn2FooterGlow {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, -16px); }
}

.hn2-footer__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 2rem 1.5rem;
}

.hn2-footer__seal-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 1rem;
}

.hn2-footer__seal {
    width: 100%;
    height: 100%;
    animation: hn2FooterSealSpin 18s linear infinite;
    filter: drop-shadow(0 8px 24px rgba(232, 185, 35, 0.25));
}

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

.hn2-footer__seal-flash {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(232, 185, 35, 0.5), transparent 30%);
    animation: hn2FooterSealFlash 3s linear infinite;
    pointer-events: none;
    mask: radial-gradient(circle, transparent 55%, #000 56%);
    -webkit-mask: radial-gradient(circle, transparent 55%, #000 56%);
}

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

.hn2-footer__brand-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.hn2-footer__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.hn2-footer__brand-title {
    margin: 0;
    font-family: var(--hn2-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hn2-footer__brand-sub {
    display: block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--hn2-gold);
}

.hn2-footer__brand-desc,
.hn2-footer__brand-bn {
    margin: 0 0 0.65rem;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.hn2-footer__brand-bn {
    color: var(--hn2-gold);
    font-weight: 500;
}

.hn2-footer__contact-list {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hn2-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.hn2-footer__contact-list i {
    color: var(--hn2-cyan);
    margin-top: 0.15rem;
    width: 1rem;
    text-align: center;
}

.hn2-footer__contact-list a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.25s;
}

.hn2-footer__contact-list a:hover {
    color: var(--hn2-gold);
}

.hn2-footer__social-glass {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hn2-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    text-decoration: none;
    transition:
        transform 0.35s var(--hn2-ease-spring),
        background 0.35s,
        color 0.35s,
        box-shadow 0.35s;
}

.hn2-footer__social:hover {
    transform: translateY(-3px) scale(1.08);
    background: linear-gradient(135deg, var(--hn2-teal), var(--hn2-cyan));
    color: #fff;
    box-shadow: 0 8px 20px rgba(10, 152, 192, 0.35);
}

.hn2-footer__col-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.hn2-footer__col-accent {
    width: 3px;
    height: 1.1em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--hn2-gold), var(--hn2-red));
    animation: hn2FooterAccentPulse 2.5s ease-in-out infinite;
}

@keyframes hn2FooterAccentPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(0.85); }
}

.hn2-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hn2-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s, transform 0.25s;
}

.hn2-footer__link-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hn2-cyan);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.25s, transform 0.25s var(--hn2-ease-spring);
}

.hn2-footer__links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.hn2-footer__links a:hover .hn2-footer__link-dot {
    opacity: 1;
    transform: scale(1);
}

.hn2-footer__newsletter {
    position: relative;
    z-index: 2;
    padding: 2.25rem 0;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(6, 94, 119, 0.42) 0%, rgba(65, 62, 102, 0.38) 42%, rgba(161, 9, 9, 0.18) 100%),
        linear-gradient(180deg, rgba(4, 14, 20, 0.6) 0%, rgba(6, 30, 40, 0.85) 100%);
    border-top: 1px solid rgba(232, 185, 35, 0.22);
    border-bottom: 1px solid rgba(10, 152, 192, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -20px 50px rgba(6, 94, 119, 0.12);
}

.hn2-footer__newsletter-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hn2-footer__newsletter-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: hn2NewsletterOrb 14s ease-in-out infinite alternate;
}

.hn2-footer__newsletter-orb--1 {
    width: 280px;
    height: 280px;
    top: -40%;
    left: 8%;
    background: rgba(232, 185, 35, 0.2);
}

.hn2-footer__newsletter-orb--2 {
    width: 320px;
    height: 320px;
    bottom: -50%;
    right: 5%;
    background: rgba(10, 152, 192, 0.22);
    animation-delay: -5s;
}

@keyframes hn2NewsletterOrb {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -12px) scale(1.08); }
}

.hn2-footer__newsletter-ribbon {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.06) 48%,
        rgba(232, 185, 35, 0.08) 52%,
        transparent 62%
    );
    animation: hn2FooterWaFlash 9s ease-in-out infinite;
}

.hn2-footer__newsletter-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.35rem 1.65rem;
    border-radius: var(--hn2-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hn2-footer__newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.7rem;
    margin-bottom: 0.45rem;
    border-radius: 999px;
    background: rgba(232, 185, 35, 0.15);
    border: 1px solid rgba(232, 185, 35, 0.28);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hn2-gold);
}

.hn2-footer__newsletter-text h4 {
    margin: 0 0 0.25rem;
    font-family: var(--hn2-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.hn2-footer__newsletter-text p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.72);
}

.hn2-footer__subscribe {
    flex: 1;
    min-width: min(100%, 420px);
    max-width: 480px;
}

.hn2-footer__subscribe-glass {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hn2-footer__subscribe-glaze {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    animation: hn2FooterWaFlash 4.5s ease-in-out infinite;
    pointer-events: none;
}

.hn2-footer__subscribe-glass input {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1.15rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    font-family: inherit;
}

.hn2-footer__subscribe-glass input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hn2-footer__subscribe-glass input:focus {
    outline: none;
}

.hn2-footer__subscribe-glass button {
    position: relative;
    padding: 0.85rem 1.5rem;
    border: 0;
    background: linear-gradient(135deg, var(--hn2-gold) 0%, var(--hn2-gold-dark) 100%);
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s var(--hn2-ease-spring), box-shadow 0.35s;
}

.hn2-footer__subscribe-glass button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(232, 185, 35, 0.35);
}

.hn2-footer__subscribe-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    animation: hn2FooterWaFlash 2.8s ease-in-out infinite;
    pointer-events: none;
}

.hn2-footer__subscribe-msg {
    margin: 0.5rem 0 0 1rem;
    font-size: 0.75rem;
    color: var(--hn2-gold);
}

.hn2-footer__subscribe-msg.is-error {
    color: #fca5a5;
}

.hn2-footer__bottom {
    position: relative;
    z-index: 2;
    padding: 1.25rem 0 1.75rem;
    background: #1e1b4b;
    text-align: center;
}

.hn2-footer__bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.hn2-footer__credits {
    margin-top: 0.35rem !important;
}

.hn2-footer__credits a {
    color: var(--hn2-gold);
    text-decoration: none;
}

.hn2-footer__credits a:hover {
    text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .hn2-search__fields {
        grid-template-columns: repeat(4, 1fr);
    }

    .hn2-search__field--btn {
        grid-column: span 4;
    }

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

    .hn2-stories__slide {
        flex: 0 0 calc(50% - 0.65rem);
    }

    .hn2-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hn2-footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .hn2-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        align-items: stretch;
        max-height: 70vh;
        overflow-y: auto;
    }

    .hn2-header__nav.is-open {
        display: flex;
    }

    .hn2-nav-dropdown__menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 0.5rem;
        display: none;
    }

    .hn2-nav-dropdown.is-open .hn2-nav-dropdown__menu {
        display: block;
    }

    .hn2-menu-toggle {
        display: flex;
    }

    .hn2-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hn2-hero__visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .hn2-float--verified { left: 0; }
    .hn2-float--match { right: 0; }
    .hn2-float--today { left: 0; }

    .hn2-trustbar__inner {
        gap: 0.35rem 1rem;
    }

    .hn2-trustbar__item {
        font-size: 0.65rem;
    }

    .hn2-stories__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hn2-stories__toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .hn2-search__fields {
        grid-template-columns: 1fr 1fr;
    }

    .hn2-search__field--btn {
        grid-column: span 2;
    }

    .hn2-hero__actions {
        flex-direction: column;
    }

    .hn2-hero__actions .hn2-btn {
        width: 100%;
    }

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

    .hn2-trustbar__item span {
        display: none;
    }

    .hn2-trustbar__item i {
        font-size: 1rem;
    }

    .hn2-stories__slide {
        flex: 0 0 100%;
    }

    .hn2-stories__slide.is-near {
        transform: scale(0.88);
        opacity: 0.55;
    }

    .hn2-footer__grid {
        grid-template-columns: 1fr;
    }

    .hn2-footer__brand {
        grid-column: span 1;
    }

    .hn2-footer__wa-inner,
    .hn2-footer__newsletter-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hn2-footer__wa-text {
        justify-content: flex-start;
        text-align: left;
    }

    .hn2-footer__wa-btn {
        justify-content: center;
    }

    .hn2-footer__subscribe {
        max-width: none;
    }

    .hn2-footer__subscribe-glass {
        flex-direction: column;
        border-radius: var(--hn2-radius);
    }

    .hn2-footer__subscribe-glass button {
        border-radius: 0;
    }
}

/* ─── Back to top (love heart) ─── */
.hn2-scroll-top {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 120;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #ec4899 0%, var(--hn2-red) 45%, var(--hn2-red-dark) 100%);
    color: #fff;
    cursor: pointer;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(0.85);
    transition:
        opacity 0.45s var(--hn2-ease),
        visibility 0.45s,
        transform 0.5s var(--hn2-ease-spring);
    box-shadow:
        0 10px 24px rgba(161, 9, 9, 0.38),
        0 4px 10px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hn2-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.hn2-scroll-top.is-visible .hn2-scroll-top__inner {
    animation: hn2ScrollTopFloat 3.2s ease-in-out infinite;
}

.hn2-scroll-top[hidden] {
    display: none !important;
}

.hn2-scroll-top:not(.is-visible) {
    pointer-events: none;
}

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

.hn2-scroll-top__ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(232, 185, 35, 0.45);
    animation: hn2ScrollTopRing 2.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hn2ScrollTopRing {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.12); opacity: 0.9; }
}

.hn2-scroll-top__glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 9, 9, 0.45) 0%, transparent 70%);
    filter: blur(6px);
    animation: hn2ScrollTopGlow 2.8s ease-in-out infinite;
    pointer-events: none;
}

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

.hn2-scroll-top__shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
    animation: hn2ScrollTopShine 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hn2ScrollTopShine {
    0%, 100% { transform: translateX(-30%) rotate(-12deg); opacity: 0.4; }
    50% { transform: translateX(30%) rotate(-12deg); opacity: 0.85; }
}

.hn2-scroll-top__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
}

.hn2-scroll-top__icon {
    font-size: 1.2rem;
    line-height: 1;
    animation: hn2ScrollTopBounce 1.6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.hn2-scroll-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 16px 36px rgba(161, 9, 9, 0.48),
        0 8px 18px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hn2-scroll-top.is-visible:hover {
    transform: translateY(-4px) scale(1.08);
}

.hn2-scroll-top:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 600px) {
    .hn2-scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 3rem;
        height: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
