:root {
    --primary: #e50914;
    --primary-soft: #ff4d4d;
    --dark: #1a1a1a;
    --muted: #7a7a7a;
    --light: #f2f2f2;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
    max-width: 100%;
    overflow-x: clip;
}
@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}
body {
    font-family: "Noto Sans", sans-serif;
    color: var(--dark);
    background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
    font-size: 0.98rem;
    line-height: 1.65;
}

.navbar,
.navbar.navbar-solid,
.navbar.fixed-top {
    padding: 1rem 0;
    transition: all .3s ease;
    background: #ffffff !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.navbar.scrolled,
.navbar.navbar-solid.scrolled,
.navbar.fixed-top.scrolled {
    padding: 1rem 0;
    background: #ffffff !important;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.navbar-brand {
    font-size: 1.58rem;
    font-weight: 800;
    color: var(--dark) !important;
    display: inline-flex;
    align-items: center;
}
.navbar-brand span { color: var(--primary-soft); }
.navbar-brand img {
    max-height: 76px;
    max-width: 300px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.97rem;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .navbar > .container {
        max-width: min(100% - 48px, 1720px);
    }
    .navbar-collapse {
        min-width: 0;
    }
    .navbar-nav {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: clamp(.25rem, .55vw, .85rem);
    }
    .navbar-nav .nav-item {
        flex: 0 0 auto;
    }
    .navbar-nav .nav-link {
        padding-left: .28rem !important;
        padding-right: .28rem !important;
        font-size: clamp(.8rem, .72vw, .95rem);
    }
    .navbar-nav .btn {
        white-space: nowrap;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
@media (min-width: 992px) and (max-width: 1280px) {
    .navbar-brand img {
        max-width: 230px;
        max-height: 64px;
    }
    .navbar-nav {
        gap: .18rem;
    }
    .navbar-nav .nav-link {
        font-size: .8rem;
    }
}
.navbar-toggler { border: 0; box-shadow: none !important; }
.navbar-toggler-icon { filter: none; }

.hero-section { position: relative; min-height: 100vh; overflow: hidden; }
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    min-height: 100vh;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(229, 9, 20, 0.16), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(255, 77, 77, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.28));
    z-index: 1;
}
.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 7rem 0 5.5rem;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: var(--dark);
    padding: 2.2rem 2.2rem 2.3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 80px rgba(229, 9, 20, 0.12);
}
.eyebrow, .section-kicker {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-content h1, .section-heading h2 {
    font-family: "Noto Serif Display", serif;
    font-size: clamp(2.05rem, 4.7vw, 4.3rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    max-width: 12ch;
}
.hero-content p, .section-heading p {
    color: #4b5563;
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    border: 0;
    box-shadow: 0 14px 35px rgba(229, 9, 20, .25);
}
.btn-outline-light {
    color: var(--dark);
    border-color: rgba(26,26,26,.18);
    background: rgba(255,255,255,.82);
}
.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--dark);
    border-color: rgba(229, 9, 20, .3);
    background: rgba(255,255,255,.96);
}
.feature-card, .platform-card, .request-shell, .contact-shell {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    border: 1px solid rgba(229, 9, 20, .12);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1rem; font-weight: 700; }
.swiper-pagination-bullet {
    background: rgba(229, 9, 20, .28);
    opacity: 1;
}
.swiper-pagination-bullet-active { background: var(--primary); }

.section { padding: 96px 0; position: relative; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.text-center {
    text-align: center;
}
.section-heading.text-center h2,
.section-heading.text-center p,
.section-heading.text-center .section-kicker {
    margin-left: auto;
    margin-right: auto;
}
.section-heading p { color: var(--muted); }
.about-media img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.about-media img { height: 520px; border-radius: var(--radius); }
.feature-row { margin-top: 2rem; }
.feature-card {
    background: var(--white);
    padding: 1.75rem;
    height: 100%;
}
.feature-card .icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: rgba(229, 9, 20, .08);
    color: var(--primary);
}
.listings-section { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 100%); }
.platform-values-section {
    padding-top: 0;
}
.insights-section {
    background: linear-gradient(180deg, rgba(255,255,255,.65) 0%, rgba(244,244,244,.92) 100%);
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}
.insight-card {
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 4px solid rgba(229, 9, 20, .82);
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, .08);
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, .22);
    box-shadow: 0 30px 74px rgba(15, 23, 42, .12);
}
.insight-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.insight-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(229, 9, 20, .08);
    color: var(--primary);
    font-size: 1.18rem;
}
.insight-video-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .62rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: .78rem;
    font-weight: 800;
}
.insight-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.02em;
}
.insight-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .95rem;
}
.insight-video-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 46px;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(229, 9, 20, .2);
}
.insight-video-link:hover {
    color: #ffffff;
    background: #c90711;
}

.reviews-section {
    background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(242,242,242,.95) 100%);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.review-card {
    height: 100%;
    padding: 1.45rem;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow);
}
.review-card-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .9rem;
}
.review-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #ffffff;
    font-weight: 800;
}
.review-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}
.review-card span {
    color: var(--muted);
    font-size: .88rem;
}
.review-stars {
    color: #d1d5db;
    display: flex;
    gap: .18rem;
    margin-bottom: .85rem;
}
.review-stars .active {
    color: #f5b301;
}
.review-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.review-card a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}
.review-swipe-hint {
    display: none;
}

.platform-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.platform-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, .18);
}
.platform-logo {
    width: 100%;
    max-width: 210px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}
.platform-card strong {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .45rem;
}
.platform-card small {
    color: var(--muted);
    font-size: .92rem;
}
.empty-state {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
    text-align: center;
}
.empty-state h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .75rem;
}
.invalid-feedback {
    display: block;
}

.request-section { background: radial-gradient(circle at top left, rgba(229, 9, 20, .08), transparent 40%); }
.request-shell {
    background: var(--white);
    padding: 1.75rem;
}
.request-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.request-tabs .nav-item {
    width: 100%;
}
.request-tabs .nav-link {
    width: 100%;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark) !important;
    background: #ffffff;
    border: 1px solid rgba(26,26,26,.1);
    border-radius: 999px;
    padding: .95rem 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    box-shadow: none;
}
.request-tabs .nav-link.active {
    background: var(--dark) !important;
    color: var(--white) !important;
    border-color: var(--dark);
}
.region-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}
.region-option {
    position: relative;
    margin: 0;
}
.region-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.region-option span {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(26,26,26,.12);
    font-weight: 800;
    cursor: pointer;
    transition: all .25s ease;
}
.region-option input:checked + span {
    background: rgba(229, 9, 20, 0.08);
    color: var(--primary);
    border-color: rgba(229, 9, 20, 0.28);
    box-shadow: 0 10px 24px rgba(229, 9, 20, 0.08);
}
.form-control, .form-select {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(26,26,26,.12);
}
textarea.form-control { min-height: 120px; }
.form-control:focus, .form-select:focus {
    border-color: rgba(229, 9, 20, .45);
    box-shadow: 0 0 0 .25rem rgba(229, 9, 20, .12);
}

.contact-shell {
    overflow: hidden;
    background: var(--white);
}
.contact-content, .callback-panel { padding: 2rem; height: 100%; }
.callback-panel {
    display: flex;
    align-items: center;
}
.contact-content {
    background: linear-gradient(180deg, #171717, #202020);
    color: var(--white);
}
.contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .95rem;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .72rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.contact-list i {
    width: 1.15rem;
    min-width: 1.15rem;
    margin-top: .18rem;
    text-align: center;
    color: var(--white);
}
.contact-list a { color: var(--white); text-decoration: none; }
.contact-hours-inline {
    margin-top: .35rem;
    padding: .85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-hours-inline span {
    display: grid;
    gap: .1rem;
}
.contact-hours-inline strong {
    display: block;
    color: rgba(255,255,255,.64);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.map-embed {
    margin-top: 1.5rem;
    border-radius: 22px;
    overflow: hidden;
    min-height: 220px;
    background: rgba(255,255,255,.08);
}
.map-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.65);
}
.callback-intro {
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}
.contact-action-btn {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 58px;
    border-radius: 18px;
    padding: .95rem 1rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease;
}
.contact-action-btn:hover {
    transform: translateY(-3px);
}
.contact-action-btn i {
    font-size: 1rem;
}
.contact-action-btn.contact-action-btn-dark {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: var(--white);
    box-shadow: 0 16px 34px rgba(229, 9, 20, 0.22);
}
.contact-action-btn.contact-action-btn-dark:hover {
    color: var(--white);
}
.contact-action-btn.contact-action-btn-success {
    background: #25d366;
    color: var(--white);
}
.contact-action-btn.contact-action-btn-success:hover {
    color: var(--white);
}
.contact-action-btn-light {
    background: #f5f5f5;
    color: var(--dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.advisors-section {
    background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(246,246,246,.92) 100%);
}
.advisors-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}
.advisors-heading {
    max-width: 380px;
    margin-bottom: 0;
}
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}
.advisor-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.advisor-card img {
    width: 100%;
    aspect-ratio: 900 / 1100;
    height: auto;
    object-fit: cover;
    display: block;
}
.advisor-content {
    padding: 1rem;
}
.advisor-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .25rem;
}
.advisor-role {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: .7rem;
    font-size: .92rem;
}
.advisor-content p {
    color: var(--muted);
    margin-bottom: .85rem;
    font-size: .94rem;
    line-height: 1.65;
}
.advisor-links {
    display: grid;
    gap: .55rem;
    margin-bottom: .8rem;
}
.advisor-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.advisor-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 42px;
    border-radius: 13px;
    padding: .72rem .6rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .84rem;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease;
}
.advisor-links a:hover {
    transform: translateY(-2px);
}
.advisor-action-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(229, 9, 20, .18);
}
.advisor-action-whatsapp {
    background: #25d366;
    color: var(--white);
}
.advisor-action-instagram,
.advisor-action-facebook,
.advisor-action-tiktok {
    background: #f5f5f5;
    color: var(--dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.advisor-direct-lines {
    display: grid;
    gap: .25rem;
    color: var(--muted);
    font-size: .86rem;
    overflow-wrap: anywhere;
}
.advisor-direct-lines a {
    color: var(--muted);
    text-decoration: none;
}
.advisor-swipe-hint {
    display: none;
}

.site-footer {
    background: #101010;
    color: rgba(255,255,255,.8);
    padding: 72px 0 32px;
}
.footer-brand { color: var(--white); font-weight: 800; }
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .7rem;
}
.footer-links a, .footer-contact a, .legal-links a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
}
.social-links { display: flex; gap: .75rem; }
.social-links a, .scroll-top {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
}
.social-links a {
    background: rgba(255,255,255,.08);
    color: var(--white);
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.scroll-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    border: 0;
    background: var(--dark);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000;
}
.scroll-top.active { opacity: 1; visibility: visible; }
.sticky-whatsapp {
    position: fixed;
    right: 1.4rem;
    bottom: 5rem;
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    z-index: 1115;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
}
.sticky-whatsapp:hover {
    color: var(--white);
    transform: translateY(-2px);
}
.sticky-whatsapp i {
    font-size: 1.2rem;
}
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991.98px) {
    html { scroll-behavior: auto; }
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }
    body {
        position: relative;
        touch-action: pan-y;
    }
    .site-header,
    main,
    .site-footer,
    .section,
    .hero-section,
    .hero-swiper,
    .hero-slide,
    .mobile-bottom-nav {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
    body {
        font-size: 1rem;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }
    .navbar-toggler,
    .navbar-collapse {
        display: none !important;
    }
    .navbar .container {
        justify-content: center;
    }
    .navbar-brand {
        margin: 0 auto;
        justify-content: center;
    }
    .navbar .nav-link { color: var(--dark); }
    .navbar-brand img {
        max-height: 62px;
        max-width: 220px;
    }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: auto;
        display: grid;
        grid-template-columns: repeat(var(--mobile-nav-count, 6), minmax(0, 1fr));
        gap: .25rem;
        padding: .62rem .45rem calc(.62rem + env(safe-area-inset-bottom));
        border-radius: 0;
        background: rgba(27, 23, 21, 0.96);
        box-shadow: 0 24px 46px rgba(15, 23, 42, 0.26);
        z-index: 1100;
    }
    .mobile-bottom-link {
        min-height: 58px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .28rem;
        color: rgba(255,255,255,.72);
        text-decoration: none;
        border-radius: 16px;
        font-size: .64rem;
        font-weight: 700;
        line-height: 1.15;
        text-align: center;
        padding: .35rem .12rem;
        transition: all .2s ease;
    }
    .mobile-bottom-link i {
        font-size: 1.05rem;
    }
    .mobile-bottom-link.is-active {
        background: rgba(255,255,255,.08);
        color: #ffffff;
    }
    .sticky-whatsapp {
        right: 1rem;
        bottom: calc(86px + env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }
    .hero-slide {
        min-height: auto;
        padding: 8rem 0 5rem;
    }
    .hero-content {
        max-width: 100%;
        padding: 1.4rem;
    }
    .hero-content h1 {
        max-width: 14ch;
    }
    .platform-shell,
    .contact-actions,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-shell { border-radius: 28px; }
    .request-tabs {
        grid-template-columns: 1fr;
    }
    .region-options {
        grid-template-columns: 1fr;
    }
    .advisors-layout {
        grid-template-columns: 1fr;
    }
    .advisors-heading {
        max-width: 760px;
    }
    .advisors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (min-width: 768px) {
    .advisors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (min-width: 992px) {
    .advisors-section .container {
        max-width: 1480px;
    }
    .advisors-layout {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 1.35rem;
    }
    .advisors-heading {
        max-width: 300px;
    }
    .advisors-heading h2 {
        font-size: clamp(2.05rem, 3.1vw, 3.45rem);
        max-width: 9ch;
    }
    .advisors-heading p {
        font-size: .92rem;
        line-height: 1.65;
    }
    .advisors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .advisor-links {
        gap: .45rem;
    }
    .advisor-links a {
        min-width: 0;
        gap: .35rem;
        padding: .68rem .42rem;
        font-size: .78rem;
    }
    .advisor-links a span {
        min-width: 0;
        white-space: normal;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 767.98px) {
    .section { padding: 84px 0; }
    .hero-slide {
        padding: 7rem 0 4rem;
    }
    .hero-content {
        padding-top: 1rem;
        padding: 1.2rem;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.16;
        max-width: 100%;
    }
    .hero-content p {
        font-size: .98rem;
        line-height: 1.7;
    }
    .hero-actions .btn { width: 100%; }
    .about-media img { height: 340px; }
    .request-shell, .contact-content, .callback-panel { padding: 1.4rem; }
    .callback-panel { align-items: stretch; }
    .advisors-grid {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
        -webkit-overflow-scrolling: touch;
        padding: .2rem 1rem 1.1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .advisors-grid::-webkit-scrollbar {
        display: none;
    }
    .advisor-card {
        flex: 0 0 min(82vw, 380px);
        scroll-snap-align: center;
    }
    .advisors-grid::after {
        content: '';
        flex: 0 0 .1rem;
    }
    .advisor-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        color: var(--muted);
        font-size: .78rem;
        font-weight: 700;
        margin-top: -.35rem;
        text-align: center;
    }
    .advisor-swipe-track {
        display: inline-flex;
        align-items: center;
        gap: .28rem;
        min-height: 28px;
        padding: .35rem .55rem;
        border-radius: 999px;
        background: rgba(26, 26, 26, .06);
        color: var(--primary);
    }
    .advisor-swipe-track span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        opacity: .35;
    }
    .advisor-swipe-track span:nth-of-type(2) {
        opacity: 1;
        animation: advisor-swipe-pulse 1.5s ease-in-out infinite;
    }
    .platform-shell {
        grid-template-columns: 1fr;
    }
    .contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }
    .reviews-grid {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
        -webkit-overflow-scrolling: touch;
        padding: .2rem 1rem 1.1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .review-card {
        flex: 0 0 min(82vw, 380px);
        scroll-snap-align: center;
    }
    .reviews-grid::after {
        content: '';
        flex: 0 0 .1rem;
    }
    .review-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        color: var(--muted);
        font-size: .78rem;
        font-weight: 700;
        margin-top: -.35rem;
        text-align: center;
    }
    .review-swipe-track {
        display: inline-flex;
        align-items: center;
        gap: .28rem;
        min-height: 28px;
        padding: .35rem .55rem;
        border-radius: 999px;
        background: rgba(26, 26, 26, .06);
        color: var(--primary);
    }
    .review-swipe-track span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        opacity: .35;
    }
    .review-swipe-track span:nth-of-type(2) {
        opacity: 1;
        animation: advisor-swipe-pulse 1.5s ease-in-out infinite;
    }
    .contact-action-btn {
        min-height: 54px;
        border-radius: 16px;
        padding: .8rem .78rem;
        gap: .55rem;
        font-size: .9rem;
        line-height: 1.15;
    }
    .contact-action-btn i {
        font-size: .95rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1240px;
    }

    .hero-content {
        max-width: 640px;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 4.2vw, 4rem);
    }
}

@media (max-width: 575.98px) {
    .advisor-action-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes advisor-swipe-pulse {
    0%, 100% { transform: scale(1); opacity: .4; }
    50% { transform: scale(1.75); opacity: 1; }
}


@media (max-width: 1199.98px) {
    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: .9rem;
    }

    .insight-card {
        border-radius: 22px;
        padding: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .mobile-bottom-nav {
        gap: .18rem;
        padding-left: .28rem;
        padding-right: .28rem;
    }

    .mobile-bottom-link {
        min-width: 0;
        width: 100%;
        overflow: hidden;
        padding: .34rem .08rem;
        gap: .22rem;
        font-size: clamp(.55rem, 2.25vw, .66rem);
    }

    .mobile-bottom-link span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        text-align: center;
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .mobile-bottom-link i {
        flex: 0 0 auto;
        font-size: clamp(.95rem, 4.5vw, 1.18rem);
    }
}

@media (max-width: 380px) {
    .mobile-bottom-nav {
        gap: .08rem;
        padding-left: .18rem;
        padding-right: .18rem;
    }

    .mobile-bottom-link {
        border-radius: 13px;
        font-size: .53rem;
    }
}

@media (max-width: 991.98px) {
    .navbar,
    .navbar.navbar-solid,
    .navbar.fixed-top,
    .navbar.scrolled,
    .navbar.navbar-solid.scrolled,
    .navbar.fixed-top.scrolled {
        padding: .38rem 0;
        min-height: 68px;
    }

    .navbar > .container {
        min-height: 56px;
        padding-left: .9rem;
        padding-right: .9rem;
    }

    .navbar-brand {
        min-height: 54px;
        align-items: center;
    }

    .navbar-brand img {
        max-height: 50px;
        max-width: 190px;
    }

    .hero-slide {
        padding-top: 6.4rem;
    }
}

@media (max-width: 575.98px) {
    .navbar,
    .navbar.navbar-solid,
    .navbar.fixed-top,
    .navbar.scrolled,
    .navbar.navbar-solid.scrolled,
    .navbar.fixed-top.scrolled {
        padding: .32rem 0;
        min-height: 64px;
    }

    .navbar > .container {
        min-height: 52px;
    }

    .navbar-brand,
    .navbar-brand img {
        max-height: 48px;
    }

    .navbar-brand img {
        max-width: 180px;
    }
}

.insight-card:hover {
    border-color: var(--primary);
    border-top-color: var(--primary);
    box-shadow: 0 30px 74px rgba(229, 9, 20, .16), 0 18px 48px rgba(15, 23, 42, .08);
}

/* Compact advisor cards without changing the card structure. */
@media (min-width: 992px) {
    .advisors-section .container {
        max-width: 1280px;
    }

    .advisors-layout {
        grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
        gap: 1.15rem;
    }

    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(215px, 250px));
        justify-content: start;
        gap: .9rem;
    }

    .advisor-card {
        max-width: 250px;
    }

    .advisor-content {
        padding: .82rem;
    }

    .advisor-content h3 {
        font-size: .98rem;
    }

    .advisor-role {
        font-size: .84rem;
        margin-bottom: .55rem;
    }

    .advisor-content p {
        font-size: .84rem;
        line-height: 1.55;
        margin-bottom: .7rem;
    }

    .advisor-links {
        gap: .38rem;
        margin-bottom: .65rem;
    }

    .advisor-links a {
        min-height: 38px;
        border-radius: 12px;
        padding: .58rem .36rem;
        font-size: .72rem;
    }

    .advisor-direct-lines {
        font-size: .78rem;
    }
}

@media (min-width: 1400px) {
    .advisors-grid {
        grid-template-columns: repeat(auto-fit, minmax(225px, 265px));
    }

    .advisor-card {
        max-width: 265px;
    }
}

@media (max-width: 767.98px) {
    .advisor-card {
        flex-basis: min(74vw, 320px);
    }

    .advisor-content {
        padding: .9rem;
    }

    .advisor-content h3 {
        font-size: 1rem;
    }

    .advisor-content p {
        font-size: .88rem;
        line-height: 1.58;
    }
}

/* Compact remaining frontend cards while preserving their structure. */
@media (min-width: 992px) {
    .platform-shell {
        grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
        justify-content: center;
        gap: .85rem;
    }

    .platform-card {
        min-height: 158px;
        padding: 1.05rem;
        border-radius: 22px;
    }

    .platform-logo {
        max-width: 170px;
        height: 52px;
    }

    .platform-card strong {
        font-size: 1.02rem;
        margin-bottom: .28rem;
    }

    .platform-card small {
        font-size: .82rem;
    }

    .insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 240px));
        justify-content: center;
        gap: .9rem;
    }

    .insight-card {
        border-radius: 22px;
        padding: 1.05rem;
        gap: .72rem;
    }

    .insight-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 1.02rem;
    }

    .insight-video-pill {
        font-size: .7rem;
        padding: .3rem .52rem;
    }

    .insight-card h3 {
        font-size: .98rem;
    }

    .insight-card p {
        font-size: .84rem;
        line-height: 1.58;
    }

    .insight-video-link {
        min-height: 38px;
        padding: .58rem .8rem;
        font-size: .82rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
        justify-content: center;
        gap: .9rem;
    }

    .review-card {
        padding: 1.05rem;
        border-radius: 22px;
    }

    .review-card-head {
        gap: .68rem;
        margin-bottom: .7rem;
    }

    .review-avatar {
        width: 42px;
        height: 42px;
        font-size: .9rem;
    }

    .review-card h3 {
        font-size: .92rem;
    }

    .review-card span {
        font-size: .78rem;
    }

    .review-stars {
        margin-bottom: .65rem;
        font-size: .85rem;
    }

    .review-card p {
        font-size: .86rem;
        line-height: 1.58;
        margin-bottom: .75rem;
    }

    .feature-card {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .feature-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        margin-bottom: .75rem;
    }
}

@media (max-width: 767.98px) {
    .platform-card {
        min-height: 138px;
        padding: 1rem;
        border-radius: 22px;
    }

    .platform-logo {
        height: 48px;
        max-width: 160px;
    }

    .insight-card {
        padding: 1rem;
        border-radius: 20px;
        gap: .7rem;
    }

    .insight-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .insight-card h3 {
        font-size: .98rem;
    }

    .insight-card p {
        font-size: .86rem;
        line-height: 1.58;
    }

    .review-card {
        flex-basis: min(74vw, 320px);
        padding: 1rem;
        border-radius: 22px;
    }
}

/* Restore desktop card scale; keep compact treatment only where mobile needs it. */
@media (min-width: 992px) {
    .advisors-section .container {
        max-width: 1480px;
    }

    .advisors-layout {
        grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
        gap: 1.35rem;
    }

    .advisors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 1rem;
    }

    .advisor-card {
        max-width: none;
    }

    .advisor-content {
        padding: 1rem;
    }

    .advisor-content h3 {
        font-size: 1.05rem;
    }

    .advisor-role {
        font-size: .92rem;
        margin-bottom: .7rem;
    }

    .advisor-content p {
        font-size: .94rem;
        line-height: 1.65;
        margin-bottom: .85rem;
    }

    .advisor-links {
        gap: .45rem;
        margin-bottom: .8rem;
    }

    .advisor-links a {
        min-height: 42px;
        border-radius: 13px;
        padding: .68rem .42rem;
        font-size: .78rem;
    }

    .advisor-direct-lines {
        font-size: .86rem;
    }

    .platform-shell {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: stretch;
        gap: 1rem;
    }

    .platform-card {
        min-height: 200px;
        padding: 1.5rem;
        border-radius: var(--radius);
    }

    .platform-logo {
        max-width: 210px;
        height: 72px;
    }

    .platform-card strong {
        font-size: 1.2rem;
        margin-bottom: .45rem;
    }

    .platform-card small {
        font-size: .92rem;
    }

    .insights-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: stretch;
        gap: 1.15rem;
    }

    .insight-card {
        border-radius: 28px;
        padding: 1.45rem;
        gap: .9rem;
    }

    .insight-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.18rem;
    }

    .insight-video-pill {
        font-size: .78rem;
        padding: .38rem .62rem;
    }

    .insight-card h3 {
        font-size: 1.08rem;
    }

    .insight-card p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .insight-video-link {
        min-height: 46px;
        padding: .7rem 1rem;
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 1rem;
    }

    .review-card {
        padding: 1.45rem;
        border-radius: var(--radius);
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .review-card h3 {
        font-size: 1rem;
    }

    .review-card span {
        font-size: .88rem;
    }

    .review-card p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .feature-card {
        padding: 1.75rem;
        border-radius: var(--radius);
    }

    .feature-card .icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .advisor-action-grid {
        grid-template-columns: repeat(3, 56px);
        justify-content: start;
        gap: .7rem;
    }

    .advisor-links a {
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 18px;
        display: inline-grid;
        place-items: center;
        gap: 0;
        font-size: 1.2rem;
    }

    .advisor-links a span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .advisor-links a i {
        font-size: 1.22rem;
        line-height: 1;
    }
}

.insight-swipe-hint {
    display: none;
}

@media (max-width: 767.98px) {
    .insights-grid {
        display: flex;
        grid-template-columns: none;
        gap: .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
        -webkit-overflow-scrolling: touch;
        padding: .2rem 1rem 1.1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .insights-grid::-webkit-scrollbar {
        display: none;
    }

    .insight-card {
        flex: 0 0 min(74vw, 320px);
        scroll-snap-align: center;
    }

    .insights-grid::after {
        content: '';
        flex: 0 0 .1rem;
    }

    .insight-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        color: var(--muted);
        font-size: .78rem;
        margin-top: .25rem;
    }

    .insight-swipe-track {
        display: inline-flex;
        align-items: center;
        gap: .28rem;
        color: var(--primary);
    }

    .insight-swipe-track span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        opacity: .35;
    }

    .insight-swipe-track span:nth-of-type(2) {
        opacity: 1;
        animation: advisor-swipe-pulse 1.5s ease-in-out infinite;
    }
}


.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 1.4rem;
    width: min(920px, calc(100% - 2rem));
    transform: translate(-50%, 18px);
    opacity: 0;
    pointer-events: none;
    z-index: 1300;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    backdrop-filter: blur(16px);
    transition: opacity .22s ease, transform .22s ease;
}
.cookie-consent.visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.cookie-consent[hidden] {
    display: none;
}
.cookie-consent strong {
    display: block;
    font-weight: 800;
    margin-bottom: .25rem;
}
.cookie-consent p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}
.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    white-space: nowrap;
}
.policy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}
.policy-shell {
    padding: 4rem 0;
}
.policy-back {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}
.policy-card {
    max-width: 920px;
    padding: clamp(1.4rem, 4vw, 3rem);
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: var(--shadow);
}
.policy-card h1 {
    font-family: "Noto Serif Display", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 1.4rem;
}
.policy-content {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
}

@media (max-width: 767.98px) {
    .cookie-consent {
        bottom: calc(92px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: .95rem;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        white-space: normal;
    }

    .cookie-consent-actions .btn {
        width: 100%;
    }

    .policy-shell {
        padding: 2rem 0 calc(6rem + env(safe-area-inset-bottom));
    }
}

.hero-swipe-hint {
    display: none;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 4.9rem 0 1.2rem;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    }

    .hero-swiper,
    .hero-swiper .swiper-wrapper,
    .hero-swiper .swiper-slide {
        min-height: auto;
    }

    .hero-swiper {
        overflow: visible;
        padding: .25rem 0 2.25rem;
    }

    .hero-swiper .swiper-slide {
        width: min(82vw, 340px) !important;
        height: auto;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 24px 64px rgba(15, 23, 42, .14);
        background: #ffffff;
        scroll-snap-align: center;
    }

    .hero-slide {
        min-height: 520px;
        height: 100%;
        padding: 0;
        align-items: stretch;
        border-radius: 28px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.9) 58%, #ffffff 100%);
        z-index: 1;
    }

    .hero-slide .container,
    .hero-slide .row,
    .hero-slide [class*="col-"] {
        min-height: 520px !important;
        height: 100%;
    }

    .hero-slide .container {
        padding: 0;
    }

    .hero-slide .row {
        margin: 0;
        align-items: end !important;
    }

    .hero-slide [class*="col-"] {
        padding: 0;
        display: flex;
        align-items: flex-end;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.15rem;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        background: transparent;
        color: var(--dark);
    }

    .hero-content .eyebrow {
        font-size: .72rem;
        margin-bottom: .45rem;
    }

    .hero-content h1 {
        font-size: clamp(1.65rem, 7vw, 2.35rem);
        line-height: 1.08;
        max-width: 10ch;
        margin-bottom: .55rem;
    }

    .hero-content p {
        font-size: .88rem;
        line-height: 1.55;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-actions {
        margin-top: 1rem;
        gap: .55rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 44px;
        padding: .72rem 1rem;
        font-size: .92rem;
    }

    .hero-swiper .swiper-pagination {
        bottom: .25rem !important;
    }

    .hero-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        color: var(--muted);
        font-size: .78rem;
        margin-top: -.6rem;
    }

    .hero-swipe-track {
        display: inline-flex;
        align-items: center;
        gap: .28rem;
        color: var(--primary);
    }

    .hero-swipe-track span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        opacity: .35;
    }

    .hero-swipe-track span:nth-of-type(2) {
        opacity: 1;
        animation: advisor-swipe-pulse 1.5s ease-in-out infinite;
    }
}

@media (max-width: 767.98px) {
    .hero-swiper {
        touch-action: pan-y pinch-zoom;
        cursor: grab;
    }

    .hero-swiper:active {
        cursor: grabbing;
    }

    .hero-swiper .swiper-wrapper {
        align-items: stretch;
        will-change: transform;
    }

    .hero-swiper .swiper-slide {
        user-select: none;
        -webkit-user-select: none;
    }

    .hero-swiper .hero-slide,
    .hero-swiper .hero-content {
        pointer-events: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-native-scroll {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 9vw;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        padding-left: 9vw;
        padding-right: 9vw;
    }

    .hero-native-scroll::-webkit-scrollbar {
        display: none;
    }

    .hero-native-scroll .swiper-wrapper {
        display: flex;
        gap: 12px;
        transform: none !important;
        transition: none !important;
        width: max-content;
        align-items: stretch;
    }

    .hero-native-scroll .swiper-slide {
        flex: 0 0 min(82vw, 340px);
        width: min(82vw, 340px) !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0 !important;
    }

    .hero-native-scroll .swiper-button-next,
    .hero-native-scroll .swiper-button-prev {
        display: none !important;
    }

    .hero-native-scroll .swiper-pagination {
        position: absolute;
        left: 0;
        right: 0;
        bottom: .25rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .42rem;
    }

    .hero-native-bullet {
        width: 7px;
        height: 7px;
        border: 0;
        border-radius: 999px;
        padding: 0;
        background: rgba(229, 9, 20, .28);
        transition: width .2s ease, background .2s ease;
    }

    .hero-native-bullet.is-active {
        width: 22px;
        background: var(--primary);
    }
}


/* Swiper pagination is hidden; the separate swipe hint stays visible as a clean guide. */
.hero-swiper .swiper-pagination,
.hero-native-scroll .swiper-pagination {
    display: none !important;
}


.hero-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    color: #8a8a8a;
    font-size: clamp(.95rem, 1.35vw, 1.18rem);
    font-weight: 500;
    margin: .85rem auto 0;
    padding: .4rem 1rem 1.1rem;
    position: relative;
    z-index: 4;
}
.hero-swipe-track {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    color: var(--primary);
}
.hero-swipe-track i {
    font-size: 1rem;
}
.hero-swipe-track span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: .35;
}
.hero-swipe-track span:nth-of-type(2) {
    opacity: 1;
}
@media (max-width: 767.98px) {
    .hero-swipe-hint {
        display: flex;
        justify-content: flex-start;
        max-width: min(82vw, 340px);
        margin: -.45rem auto 0;
        padding: .25rem 0 .7rem;
        font-size: .86rem;
        gap: .55rem;
    }
    .hero-swipe-track {
        gap: .3rem;
    }
    .hero-swipe-track span {
        width: 6px;
        height: 6px;
    }
}


/* Advisor social/action buttons: keep labels readable inside narrow cards. */
.advisor-action-grid {
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    align-items: stretch;
}
.advisor-links a {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: .68rem .72rem;
    border-radius: 16px;
    gap: .42rem;
    font-size: clamp(.72rem, .68vw, .82rem);
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
}
.advisor-links a i {
    flex: 0 0 auto;
    font-size: .94rem;
}
.advisor-links a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 992px) and (max-width: 1440px) {
    .advisor-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .advisor-links a {
        font-size: .76rem;
        padding-inline: .62rem;
    }
}
@media (min-width: 992px) and (max-width: 1180px) {
    .advisor-action-grid {
        grid-template-columns: repeat(4, 46px);
        gap: .5rem;
    }
    .advisor-links a {
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 14px;
        display: inline-grid;
        place-items: center;
    }
    .advisor-links a span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .advisor-action-grid {
        grid-template-columns: repeat(4, 56px);
    }
}
@media (max-width: 390px) {
    .advisor-action-grid {
        grid-template-columns: repeat(4, 50px);
        gap: .48rem;
    }
    .advisor-links a {
        width: 50px;
        height: 50px;
        min-height: 50px;
        border-radius: 16px;
    }
}
