:root {
    --primary-brand: #0b7a75;
    --primary-dark: #065e5b;
    --light-brand-fill: #e6f4f3;
    --page-background: #f5f0e8;
    --cta-accent: #e8773a;
    --body-text: #2c3a47;
    --secondary-text: #607080;
    --white: #ffffff;
    --nav-border: #c8d8d7;
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.07);
    --radius-card: 12px;
    --radius-button: 8px;
    --radius-input: 6px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-background);
    color: var(--body-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.97);
    transition:
        opacity 1800ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.reveal-from-left {
    transform: translate3d(-96px, 0, 0) scale(0.97);
}

.reveal-on-scroll.reveal-from-right {
    transform: translate3d(96px, 0, 0) scale(0.97);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body.has-modal-open {
    overflow: hidden;
}

img {
    max-width: var(--founder-copy-text-max-width, 100%);
}

p, ul, h1, h2, h3 {
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section--sand {
    background: var(--page-background);
}

.section--white {
    background: var(--white);
}

.section--accent {
    background: var(--light-brand-fill);
}

.section--services {
    background: var(--page-background);
}

.section--hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(11, 122, 117, 0.2), rgba(11, 122, 117, 0.2)),
        linear-gradient(115deg, rgba(6, 94, 91, 0.15), rgba(245, 240, 232, 0.18)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #b9cfcd 0%, #dfe8e6 34%, #f5f0e8 100%);
}

.eyebrow {
    color: var(--primary-brand);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
.brand strong,
.button {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

h1 {
    color: var(--primary-dark);
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
}

h2 {
    color: var(--primary-dark);
    font-size: clamp(2rem, 3.2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.12;
}

h3 {
    color: var(--primary-brand);
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 600;
    line-height: 1.2;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    background: var(--white);
    border-bottom: 1px solid var(--nav-border);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-soft);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 0;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand strong {
    display: block;
    color: var(--primary-brand);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 0.35rem;
    color: var(--secondary-text);
    font-size: 12px;
    line-height: 1.3;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-header__cta {
    display: inline-flex;
    justify-self: end;
}

.site-nav__cta {
    display: none;
}


.site-nav a {
    font-size: 15px;
    font-weight: 500;
}

.site-nav a:not(.button):hover,
.text-link:hover,
.site-footer a:hover,
.footer-whatsapp:hover {
    color: var(--primary-brand);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--nav-border);
    border-radius: var(--radius-button);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary-dark);
}

main {
    padding-top: 88px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border: 0;
    border-radius: var(--radius-button);
    background: var(--cta-accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.button:hover {
    filter: brightness(0.96);
}

.button--small {
    min-height: 44px;
    padding-inline: 1rem;
}

.button--large {
    min-height: 56px;
    padding-inline: 1.5rem;
}

.button--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.86);
    color: var(--white);
    box-shadow: none;
}

.flash-banner {
    margin-top: 88px;
    padding: 0.85rem 0;
    background: var(--primary-brand);
    color: var(--white);
}

.hero-grid,
.lead-grid,
.founder-strip__inner,
.site-footer__grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
    align-items: center;
}

.hero-copy-block {
    max-width: var(--founder-copy-max-width, 400px);
}

.hero-copy,
.section-heading p,
.hero-note p,
.founder-strip p,
.site-footer p,
.info-card p,
.service-card p,
.guide-card p,
.trust-points p,
.lead-modal__copy {
    color: var(--body-text);
    font-size: 16px;
}

.hero-copy,
.section-heading p {
    margin-top: 1rem;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.hero-panel,
.info-card,
.service-card,
.guide-card,
.trust-points article,
.lead-form,
.trust-pill {
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.info-card,
.service-card,
.guide-card,
.trust-points article,
.trust-pill {
    padding: 1.5rem;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 76px;
}

.trust-pill strong {
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.trust-pill span {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.4;
}

.hero-panel {
    padding: 2rem;
    background: rgba(230, 244, 243, 0.92);
}

.hero-panel__label,
.guide-card__eyebrow,
.tag {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.hero-panel__label,
.guide-card__eyebrow {
    background: rgba(11, 122, 117, 0.1);
    color: var(--primary-dark);
}

.tag {
    background: rgba(11, 122, 117, 0.08);
    color: var(--primary-brand);
}

.hero-panel ul,
.lead-list,
.site-footer ul {
    display: grid;
    gap: 0.8rem;
}

.hero-panel li,
.lead-list li {
    position: relative;
    padding-left: 1.2rem;
}

.hero-panel li::before,
.lead-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary-brand);
}

.hero-note {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(11, 122, 117, 0.15);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading--narrow h2 {
    max-width: 18ch;
}

.card-grid {
    display: grid;
    gap: 1.25rem;
}

.card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.founder-strip__inner {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    border-radius: var(--radius-card);
    background: var(--primary-dark);
    color: var(--white);
}

.founder-strip h2,
.founder-strip p,
.founder-strip .eyebrow {
    color: var(--white);
}

    .service-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

@media (max-width: 640px) {
    .service-icon-grid {
        grid-template-columns: 1fr;
    }
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.logo-strip span {
    display: grid;
    place-items: center;
    min-height: 86px;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.14);
    border-radius: var(--radius-card);
    color: var(--primary-brand);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.lead-grid {
    grid-template-columns: 1fr minmax(320px, 430px);
    align-items: start;
}

.lead-form {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.lead-form--modal {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.lead-form label {
    display: grid;
    gap: 0.4rem;
    font-size: 16px;
    font-weight: 500;
}

.lead-form input,
.lead-form textarea,
.subscribe-form input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(44, 58, 71, 0.16);
    border-radius: var(--radius-input);
    background: var(--white);
    color: var(--body-text);
}

.lead-form input:focus,
.lead-form textarea:focus,
.subscribe-form input:focus {
    outline: 2px solid rgba(232, 119, 58, 0.2);
    border-color: var(--cta-accent);
}

.lead-form small {
    color: #a44e25;
    font-size: 13px;
}

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

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 33, 42, 0.6);
}

.lead-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.lead-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 122, 117, 0.08);
    color: var(--primary-dark);
    font-size: 24px;
    cursor: pointer;
}

.lead-modal__copy {
    margin-top: 0.9rem;
    margin-bottom: 1.2rem;
}

/* Lead Modal - Pro Style Header */
.lead-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-modal__badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #0b7a75;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.lead-modal__header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b7a75;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.lead-modal__subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Lead Form - Card Style Fields */
.lead-form--modal {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lead-form__field {
    background: #ffffff;
    border: 1px solid rgba(11, 122, 117, 0.15);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s ease;
}

.lead-form__field:hover {
    border-color: rgba(11, 122, 117, 0.3);
    box-shadow: 0 2px 8px rgba(11, 122, 117, 0.06);
}

.lead-form__field:focus-within {
    border-color: #0b7a75;
    box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.08);
}

.lead-form__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0b7a75;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.lead-form__field input {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #1e293b;
    outline: none;
}

.lead-form__field input::placeholder {
    color: #94a3b8;
}

.lead-form__error {
    display: block;
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.form-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.form-modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: min(90%, 400px);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form-modal-overlay.is-visible .form-modal {
    transform: scale(1) translateY(0);
}

.form-modal__spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e6f4f3;
    border-top-color: #0b7a75;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-modal h3 {
    color: #065e5b;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.form-modal p {
    color: #607080;
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

.form-modal__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.form-modal__icon svg {
    width: 36px;
    height: 36px;
}

.form-modal__icon--success {
    background: linear-gradient(135deg, #e6f4f3 0%, #d0ede9 100%);
    color: #0b7a75;
}

.form-modal__icon--error {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    color: #c53030;
}

.form-modal .button {
    background: linear-gradient(180deg, #0b7a75 0%, #065e5b 100%);
    border-color: #065e5b;
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.lead-form__submit {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #e8773a 0%, #d46a2e 100%);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(232, 119, 58, 0.3);
}

.lead-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 119, 58, 0.4);
}

.lead-form__hint {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    padding-bottom: 1rem;
}

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(132px, 0.55fr) minmax(260px, 0.78fr) minmax(280px, 1fr);
    column-gap: clamp(1.25rem, 2.5vw, 2rem);
    row-gap: 2rem;
    padding: 48px 0 32px;
}

.site-footer h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 22px;
}

.site-footer p,
.site-footer ul,
.site-footer li,
.site-footer a,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.92);
}

.social-row {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.social-row a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.subscribe-form {
    display: grid;
    gap: 0.75rem;
}

.subscribe-form label,
.subscribe-form input,
.subscribe-form .button {
    width: 100%;
}

.footer-whatsapp {
    display: inline-flex;
    margin-top: 0.9rem;
    font-weight: 600;
}

.footer-contact-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-contact-list li,
.footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.94);
}

.footer-contact-list li:first-child > span:last-child::before {
    content: "Address : ";
    color: #ffffff;
    font-weight: 700;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    color: var(--white);
}

.footer-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.22rem;
    color: var(--cta-accent);
    font-size: 0;
    line-height: 1;
}

.footer-icon::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.footer-contact-list li:nth-child(1) .footer-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1.8A8.2 8.2 0 0 0 3.8 10c0 6.2 7 11.7 7.3 11.9a1.4 1.4 0 0 0 1.8 0c.3-.2 7.3-5.7 7.3-11.9A8.2 8.2 0 0 0 12 1.8Zm0 11.1A2.9 2.9 0 1 1 12 7a2.9 2.9 0 0 1 0 5.8Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1.8A8.2 8.2 0 0 0 3.8 10c0 6.2 7 11.7 7.3 11.9a1.4 1.4 0 0 0 1.8 0c.3-.2 7.3-5.7 7.3-11.9A8.2 8.2 0 0 0 12 1.8Zm0 11.1A2.9 2.9 0 1 1 12 7a2.9 2.9 0 0 1 0 5.8Z'/%3E%3C/svg%3E");
}

.footer-contact-list li:nth-child(2) .footer-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 16.7v3.1a2.1 2.1 0 0 1-2.3 2.1 20.8 20.8 0 0 1-9.1-3.2 20.4 20.4 0 0 1-6.3-6.3A20.8 20.8 0 0 1 .8 3.3 2.1 2.1 0 0 1 2.9 1h3.1a2.1 2.1 0 0 1 2.1 1.8c.1 1 .4 2 .7 3a2.1 2.1 0 0 1-.5 2.2L7 9.3a16.8 16.8 0 0 0 7.7 7.7l1.3-1.3a2.1 2.1 0 0 1 2.2-.5c1 .3 2 .6 3 .7a2.1 2.1 0 0 1 1.8 2.1Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 16.7v3.1a2.1 2.1 0 0 1-2.3 2.1 20.8 20.8 0 0 1-9.1-3.2 20.4 20.4 0 0 1-6.3-6.3A20.8 20.8 0 0 1 .8 3.3 2.1 2.1 0 0 1 2.9 1h3.1a2.1 2.1 0 0 1 2.1 1.8c.1 1 .4 2 .7 3a2.1 2.1 0 0 1-.5 2.2L7 9.3a16.8 16.8 0 0 0 7.7 7.7l1.3-1.3a2.1 2.1 0 0 1 2.2-.5c1 .3 2 .6 3 .7a2.1 2.1 0 0 1 1.8 2.1Z'/%3E%3C/svg%3E");
}

.footer-contact-list li:nth-child(3) .footer-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.6 4h16.8A2.6 2.6 0 0 1 23 6.6v10.8a2.6 2.6 0 0 1-2.6 2.6H3.6A2.6 2.6 0 0 1 1 17.4V6.6A2.6 2.6 0 0 1 3.6 4Zm.2 3.2 7 5.1a2 2 0 0 0 2.4 0l7-5.1a.8.8 0 0 0-.5-1.4H4.3a.8.8 0 0 0-.5 1.4Zm17.4 2.2-6.8 4.9a4 4 0 0 1-4.8 0L2.8 9.4v7.8a1 1 0 0 0 1 1h16.4a1 1 0 0 0 1-1V9.4Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.6 4h16.8A2.6 2.6 0 0 1 23 6.6v10.8a2.6 2.6 0 0 1-2.6 2.6H3.6A2.6 2.6 0 0 1 1 17.4V6.6A2.6 2.6 0 0 1 3.6 4Zm.2 3.2 7 5.1a2 2 0 0 0 2.4 0l7-5.1a.8.8 0 0 0-.5-1.4H4.3a.8.8 0 0 0-.5 1.4Zm17.4 2.2-6.8 4.9a4 4 0 0 1-4.8 0L2.8 9.4v7.8a1 1 0 0 0 1 1h16.4a1 1 0 0 0 1-1V9.4Z'/%3E%3C/svg%3E");
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    font-size: 14px;
}

.site-footer__bottom-inner div {
    display: flex;
    gap: 1rem;
}

.whatsapp-float,
.back-to-top {
    position: fixed;
    right: 1rem;
    z-index: 45;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.whatsapp-float {
    bottom: 5rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--nav-border);
    font-weight: 600;
}

.back-to-top {
    bottom: 1rem;
    padding: 0.8rem 1rem;
    border: 0;
    background: var(--primary-dark);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1279px) {
    .logo-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-grid,
    .card-grid--three,
    .card-grid--two,
    .lead-grid,
    .trust-points,
    .founder-strip__inner,
    .trust-bar {
        grid-template-columns: 1fr;
    }

    main {
        padding-top: 78px;
    }

    .flash-banner {
        margin-top: 78px;
    }

    .site-header__inner {
        min-height: 78px;
    }

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

    .site-nav {
        position: fixed;
        inset: 78px 0 0 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 1.5rem 1rem 2rem;
        background: var(--white);
        gap: 1rem;
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        font-size: 18px;
    }

    .site-nav .button {
        width: auto;
        margin-top: auto;
    }

    .site-header__cta {
        display: none;
    }

    .site-nav__cta {
        display: inline-flex;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-strip {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 1rem 0;
    }
}

@media (max-width: 640px) {
    .service-icon-grid {
        grid-template-columns: 1fr;
    }

    .directory-sticky-cta {
        margin-top: 1.5rem !important;
        padding: 0 0.75rem 1rem !important;
    }

    .directory-sticky-cta__inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 2rem !important;
        padding: 4.5rem 1.25rem !important;
        border-radius: 16px !important;
        min-height: 250px !important;
    }

    .directory-sticky-cta p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .directory-sticky-cta .button.directory-sticky-cta__action,
    .directory-sticky-cta__action {
        display: inline-flex !important;
        width: auto !important;
        min-width: 200px !important;
        max-width: 100% !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
}

@media (max-width: 389px) {
    .logo-strip {
        grid-template-columns: 1fr;
    }
}

.button--full { width: auto; }
.lead-form__hint { display: block; color: var(--secondary-text); font-size: 13px; text-align: center; }

.info-card--audience {
    min-height: 100%;
}

.info-card__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--light-brand-fill);
    color: var(--primary-dark);
    font-size: 24px;
    line-height: 1;
}

.info-card--audience h3 {
    margin-bottom: 0.75rem;
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-icon-card {
    display: grid;
    justify-items: start;
    gap: 1rem;
    min-height: 170px;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-icon-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 122, 117, 0.28);
}

.service-icon-card__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--light-brand-fill);
    color: var(--primary-dark);
}

.service-icon-card__icon svg,
.info-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-icon-card span {
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.founder-strip--story {
    background: var(--white);
}

.founder-strip__story-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.founder-photo-wrap {
    display: grid;
    justify-items: center;
}

.founder-photo-ring {
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    border: 4px solid var(--primary-brand);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(230, 244, 243, 0.95), rgba(245, 240, 232, 0.95));
    box-shadow: var(--shadow-soft);
}

.founder-photo-placeholder {
    display: grid;
    place-items: center;
    width: 184px;
    height: 184px;
    border-radius: 999px;
    background: rgba(11, 122, 117, 0.1);
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 54px;
    font-weight: 700;
}

.founder-story-copy h2 {
    max-width: 18ch;
}

.founder-story-copy p {
    margin-top: 1rem;
    max-width: 64ch;
    color: var(--body-text);
    font-size: 18px;
    line-height: 1.75;
}

.founder-story-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--primary-brand);
    font-weight: 600;
}

.button--outline-accent {
    background: transparent;
    border: 1px solid var(--cta-accent);
    color: var(--cta-accent);
    box-shadow: none;
}

.guide-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.guide-feature-card {
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.guide-feature-card__image {
    min-height: 210px;
}

.guide-feature-card__image--teal {
    background: linear-gradient(160deg, rgba(11, 122, 117, 0.68), rgba(6, 94, 91, 0.25));
}

.guide-feature-card__image--sand {
    background: linear-gradient(160deg, rgba(245, 240, 232, 1), rgba(205, 225, 222, 0.9));
}

.guide-feature-card__image--slate {
    background: linear-gradient(160deg, rgba(96, 112, 128, 0.92), rgba(230, 244, 243, 0.8));
}

.guide-feature-card__body {
    padding: 1.5rem;
}

.guide-feature-card__tag {
    color: var(--primary-brand);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.guide-feature-card__body h3 {
    margin-top: 0.65rem;
    margin-bottom: 0.75rem;
}

.section-cta-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.partner-strip {
    padding: 32px 0;
    background: #eef1f2;
}

.partner-strip__eyebrow {
    margin-bottom: 1rem;
    color: var(--secondary-text);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
}

.partner-strip__viewport {
    position: relative;
    overflow: hidden;
}

.partner-strip__viewport::before,
.partner-strip__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(48px, 8vw, 120px);
    pointer-events: none;
}

.partner-strip__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #eef1f2 0%, rgba(238, 241, 242, 0) 100%);
}

.partner-strip__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #eef1f2 0%, rgba(238, 241, 242, 0) 100%);
}

.partner-strip__logos {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0;
    animation: partner-marquee 24s linear infinite;
    will-change: transform;
}

.partner-strip__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-right: clamp(2.5rem, 5vw, 5rem);
}

.partner-strip__logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: clamp(110px, 12vw, 156px);
}

.partner-strip__logo img {
    display: block;
    max-width: 100%;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-strip__logo--large img {
    max-height: 45.6px;
}

.partner-strip__logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes partner-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-strip__logos {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 1.25rem;
    }

    .partner-strip__group {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .partner-strip__group[aria-hidden='true'] {
        display: none;
    }
}

.lead-strip {
    padding: 56px 0;
    background: var(--primary-brand);
}

.lead-strip__inner {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
    text-align: center;
}

.lead-strip__copy h2,
.lead-strip__copy p {
    color: var(--white);
}

.lead-strip__copy p {
    margin-top: 0.75rem;
    font-size: 18px;
}

.lead-strip__form {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    width: min(100%, 980px);
}

.lead-strip__form label {
    flex: 1 1 280px;
    max-width: 280px;
}

.lead-strip__form input {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-input);
    background: var(--white);
    color: var(--body-text);
}

.lead-strip__form button {
    flex: 0 0 220px;
    min-height: 56px;
}

@media (max-width: 767px) {
    .lead-strip__form {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 420px);
    }

    .lead-strip__form label,
    .lead-strip__form button {
        width: 100%;
        max-width: none;
    }
}

.guide-hero {
    padding: 88px 0 56px;
    background: linear-gradient(180deg, rgba(11, 122, 117, 0.96), rgba(6, 94, 91, 0.96));
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.guide-hero__inner {
    width: min(calc(100% - 2rem), 74rem);
    max-width: 100%;
}

.guide-hero--housing .guide-hero__inner {
    width: min(calc(100% - 2rem), 74rem);
    max-width: 100%;
}

.banking-hero__inner {
    width: min(calc(100% - 2rem), 74rem);
    max-width: 100%;
    margin: 0 auto;
}

.guide-hero .eyebrow,
.guide-hero h1,
.guide-hero__copy,
.guide-hero__meta {
    color: var(--white);
}

.guide-hero__copy {
    margin-top: 1rem;
    max-width: 64ch;
    font-size: 18px;
}

.guide-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.guide-page {
    padding: 56px 0 80px;
    background: var(--white);
}

.guide-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.guide-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 1rem;
}

.guide-sidebar__panel,
.guide-share {
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.guide-sidebar__title,
.guide-share span {
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.guide-toc {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.guide-toc a,
.guide-share a {
    color: var(--secondary-text);
    font-size: 14px;
}

.guide-toc a:hover,
.guide-share a:hover {
    color: var(--primary-brand);
}

.guide-share {
    gap: 0.75rem;
}

.guide-share a {
    display: block;
    margin-top: 0.65rem;
}

.guide-content {
    display: grid;
    gap: 1.5rem;
}

.guide-block {
    padding: 2rem;
    border: 1px solid rgba(11, 122, 117, 0.1);
    border-radius: var(--radius-card);
}

.guide-block--sand {
    background: var(--page-background);
}

.guide-block--white {
    background: var(--white);
}

.guide-block--teal {
    background: var(--primary-brand);
    color: var(--white);
    text-align: center;
}

.guide-block--teal h2,
.guide-block--teal p {
    color: var(--white);
}

.guide-block h2 {
    margin-bottom: 1rem;
}

.guide-block__intro--centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guide-block p + p,
.guide-block p + .guide-list,
.guide-list + p,
.guide-list + .guide-cta-box {
    margin-top: 1rem;
}

.guide-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.guide-list li {
    color: var(--body-text);
}

.guide-cta-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid rgba(11, 122, 117, 0.28);
    border-radius: var(--radius-card);
    background: rgba(230, 244, 243, 0.55);
}

.guide-cta-box h3 {
    margin-bottom: 0.5rem;
}

.guide-cta-box .button,
.guide-cta-box .text-link {
    margin-top: 0.9rem;
}

    .guide-sidebar {
        position: static;
    }

    .guide-share {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    .guide-share a {
        margin-top: 0;
    }

    .guide-page {
        padding: 40px 0 56px;
    }

    .guide-block {
        padding: 1.5rem;
    }

.guide-hero__inner--split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
    gap: 2rem;
    align-items: start;
}

.guide-hero__actions {
    margin-top: 1.5rem;
}

.housing-page {
    background: var(--page-background);
}

.housing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.housing-content {
    display: grid;
    gap: 1.5rem;
}

.housing-sidebar {
    position: sticky;
    top: 112px;
}

.housing-sidebar__panel {
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.housing-booking-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.14);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.housing-booking-card__eyebrow {
    color: var(--primary-brand);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.housing-booking-card h2 {
    margin-top: 0.55rem;
    font-size: 28px;
}

.housing-booking-card p {
    margin-top: 0.8rem;
}

.housing-booking-card__widget {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px dashed rgba(11, 122, 117, 0.35);
    border-radius: 10px;
    background: rgba(230, 244, 243, 0.65);
}

.housing-booking-mobile {
    display: none;
}

.city-grid,
.partner-card-grid {
    display: grid;
    gap: 1rem;
}

.city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.city-card,
.partner-card {
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.city-card h3,
.partner-card h3 {
    margin-bottom: 0.7rem;
}

.partner-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.partner-card__logo {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--light-brand-fill);
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
}

.guide-list--compact {
    margin-top: 0.75rem;
}

@media (max-width: 1024px) {
    .housing-sidebar,
    .housing-booking-card--desktop {
        display: none;
    }

    .housing-booking-mobile {
        display: block;
    }
}

.banking-page {
    background: var(--white);
}

.banking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.banking-content {
    display: grid;
    gap: 1.5rem;
}

.banking-sidebar {
    position: sticky;
    top: 112px;
}

.banking-sidebar__panel {
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.banking-disclosure {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.bank-table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: var(--white);
}

.bank-table th,
.bank-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(11, 122, 117, 0.1);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.bank-table th {
    background: rgba(230, 244, 243, 0.7);
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14px;
}

.bank-table tbody tr:hover {
    background: rgba(245, 240, 232, 0.6);
}

.winner-badge {
    display: inline-flex;
    margin-top: 0.5rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: var(--cta-accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.table-link {
    color: var(--primary-brand);
    font-weight: 600;
}

.transfer-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.transfer-tool-card {
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.transfer-tool-card h3 {
    margin-bottom: 0.75rem;
}

.transfer-tool-card .button {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .banking-sidebar {
        position: static;
    }
}

.lead-form select {
    width: auto;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(44, 58, 71, 0.16);
    border-radius: var(--radius-input);
    background: var(--white);
    color: var(--body-text);
}

.lead-form select:focus {
    outline: 2px solid rgba(232, 119, 58, 0.2);
    border-color: var(--cta-accent);
}



.migration-page {
    background: var(--page-background);
}


.migration-hero__inner {
    width: min(calc(100% - 2rem), 74rem);
    max-width: 100%;
    margin: 0 auto;
}

.migration-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 2.5rem;
    align-items: center;
}

.migration-hero__copy {
    max-width: 60ch;
}

.migration-hero__panel {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(5, 54, 56, 0.16);
    backdrop-filter: blur(10px);
}

.migration-hero__panel-eyebrow {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.migration-hero__list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.migration-hero__list li {
    position: relative;
    padding-left: 1.1rem;
    color: #ffffff;
}

.migration-hero__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cta-accent);
}

.migration-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.migration-hero__stats article {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
}

.migration-hero__stats strong {
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.1rem;
}

.migration-hero__stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .migration-hero__content {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .migration-hero__copy {
        max-width: none;
    }
}


.migration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2rem;
    align-items: start;
}

.migration-content {
    display: grid;
    gap: 1.5rem;
}

.migration-sidebar {
    position: sticky;
    top: 112px;
}

.migration-sidebar__panel,
.migration-hero-note {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
}

.migration-hero-note__label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.migration-hero-note p {
    color: var(--white);
}

.visa-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.visa-type-card,
.migration-sidebar__panel,
.migration-agent-card {
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.migration-agent-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.visa-type-card {
    padding: 1.25rem;
}

.migration-agent-card__specialisation,
.migration-agent-card__rating {
    margin-top: 0.5rem;
}

.migration-agent-card__specialisation {
    flex: 1;
}

.migration-agent-card__rating {
    color: var(--primary-brand);
    font-weight: 600;
}

.migration-agent-card__actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.migration-form {
    margin-top: 1rem;
}

.migration-form-section .migration-form {
    margin-top: 0;
}

.migration-form-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}

.migration-form-section__header {
    display: grid;
    justify-items: center;
    gap: 1.5rem;
    margin-bottom: 1.35rem;
    width: 100%;
    text-align: center;
}

.migration-form-section__eyebrow {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--primary-brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.migration-form-section__header h2 {
    max-width: none;
    margin: 0 auto;
}

.migration-form-section__lede {
    max-width: 42ch;
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.7;
}

.migration-form-section__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(11, 122, 117, 0.1);
    border-radius: 28px;
    background: linear-gradient(180deg, #f8fcfc 0%, #eef7f6 100%);
    box-shadow: 0 22px 44px rgba(10, 54, 58, 0.08);
}

.migration-form-section__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    height: 100%;
    padding: 1.35rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #0f7d77 0%, #0b6f6a 100%);
    color: #ffffff;
    box-shadow: 0 24px 42px rgba(7, 66, 67, 0.18);
}

.migration-form-section__intro-label {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.migration-form-section__intro h3 {
    color: #ffffff;
    font-size: clamp(1.7rem, 2.3vw, 2.2rem);
    line-height: 1.08;
}

.migration-form-section__intro p {
    color: rgba(255, 255, 255, 0.88);
}

.migration-form-section__intro p:last-of-type {
    margin-bottom: 0;
}

.migration-form-section__steps {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.migration-form-section__steps li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.migration-form-section__steps li:last-child {
    color: #ffffff;
    font-weight: 600;
}

.migration-form-section__steps li::before {
    content: '';
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cta-accent);
}

.migration-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.migration-form__grid label:last-child {
    grid-column: 1 / -1;
}

.migration-form__privacy {
    display: block;
    margin-top: 0.85rem;
    color: var(--secondary-text);
    font-size: 13px;
    text-align: center;
}

    .migration-sidebar {
        position: static;
    }

    

    

    

    

    

    

    

    

.blog-page {
    padding: 20px 0 84px;
    background: var(--white);
}

.blog-page--v2 {
    position: relative;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.blog-filter-chip {
    min-height: 52px;
    padding: 0.8rem 1.45rem;
    border: 1px solid rgba(25, 96, 104, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #50656d;
    box-shadow: 0 10px 28px rgba(13, 55, 67, 0.06);
    cursor: pointer;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-filter-chip:hover,
.blog-filter-chip:focus-visible {
    border-color: rgba(242, 125, 45, 0.35);
    color: var(--primary-brand);
}

.blog-filter-chip.is-active {
    background: linear-gradient(180deg, #ff9a4f 0%, #f27d2d 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 16px 28px rgba(242, 125, 45, 0.22);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.blog-grid--related {
    margin-top: 1.5rem;
}

.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.1);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(12, 55, 66, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(12, 55, 66, 0.12);
}

.blog-card.is-hidden,
.blog-card.is-hidden-filter {
    display: none;
}

.blog-card__media-link {
    display: block;
}

.blog-card__image,
.article-hero__image {
    min-height: 220px;
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__body--v2 {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.35rem 1.5rem 1.5rem;
    min-height: 0;
}

.blog-card__tag {
    margin: 0;
    color: #0b7a75;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card__body h3 {
    margin: 0;
    font-size: clamp(1.45rem, 1.6vw, 1.9rem);
    line-height: 1.08;
}

.blog-card__body h3 a {
    color: #145f68;
    text-decoration: none;
}

.blog-card__body > p {
    margin: 0;
    color: #5a6f79;
    line-height: 1.68;
}

.blog-card__meta,
.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.1rem;
    color: var(--secondary-text);
    font-size: 14px;
}

/* Blog index (v2): equal card heights, fixed image ratio, clamped copy */
.blog-grid--v2 {
    align-items: stretch;
}

.blog-card--v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card--v2 .blog-card__media-link {
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(11, 122, 117, 0.06);
}

.blog-card--v2 .blog-card__media-link .blog-card__image,
.blog-card--v2 .blog-card__media-link .blog-card__image--file {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.blog-card--v2 .blog-card__body h3 {
    font-size: clamp(1.15rem, 1.1vw + 0.85rem, 1.42rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-card__body--v2 .blog-card__excerpt {
    margin: 0;
    color: #5a6f79;
    font-size: 0.9375rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-card__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 122, 117, 0.09);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-card--v2 .blog-card__meta {
    margin-top: 0;
    row-gap: 0.35rem;
    column-gap: 0.65rem;
    font-size: 0.8125rem;
    color: #6b7c86;
}

.blog-card__read {
    font-weight: 600;
    align-self: flex-start;
}

.article-page {
    padding: 56px 0 80px;
    background: var(--page-background);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 740px);
    gap: 2rem;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 1rem;
}

.article-content {
    display: grid;
    gap: 1.5rem;
}

.article-author-box {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.article-author-box__photo {
    width: 96px;
    height: 96px;
    font-size: 28px;
}

.related-posts {
    margin-top: 0.5rem;
}

    

    

    

    

    

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    

    

    

    

    

    

    

    .blog-filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
    }

    .blog-filter-chip {
        flex: 0 0 auto;
    }

.directory-hero,
.directory-listing-hero {
    background: linear-gradient(160deg, #0f172a 0%, #134e4a 42%, #0d6660 100%);
}

.directory-hero {
    padding: 5.5rem 0 4rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Match header max-width — align hero, filter card, and directory grid below */
.directory-hero .guide-hero__inner.directory-hero__inner {
    width: min(calc(100% - 2rem), 74rem);
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.directory-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 250, 252, 0.95) !important;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.directory-hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 3.6vw, 2.35rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #f8fafc;
    text-wrap: balance;
}

.directory-hero__copy {
    max-width: 70ch;
    margin-inline: auto;
    margin-top: 1rem;
    text-align: center;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.92);
}

.directory-filter-panel {
    width: 100%;
    margin-top: 2.25rem;
    padding: 0;
    text-align: left;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 40px rgba(15, 23, 42, 0.1);
}

.directory-filter-panel__header {
    padding: 1.35rem 1.5rem 1.1rem;
    border-bottom: 1px solid #e2e8f0;
    background: #fafbfc;
    text-align: center;
}

.directory-filter-panel__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b7a75;
}

.directory-filter-panel__lede {
    margin: 0.4rem auto 0;
    max-width: 70ch;
    font-size: 1rem;
    line-height: 1.55;
    color: #64748b;
}

.directory-filter-panel__toolbar {
    padding: 1.25rem 1.5rem 1.15rem;
    background: #ffffff;
}

.directory-filter-panel__categories {
    padding: 1.1rem 1.5rem 1.35rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.directory-filter-section-label {
    margin: 0 0 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.directory-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(160px, 220px) minmax(120px, 140px);
    gap: 0.85rem 1rem;
    align-items: end;
}

.directory-filter-field {
    display: grid;
    gap: 0.4rem;
}

.directory-filter-field span {
    color: #475569;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.directory-filter-field input,
.directory-filter-field select {
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    font-size: 0.9375rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.directory-filter-field select {
    appearance: none;
    padding-right: 2.75rem;
    background-image: linear-gradient(45deg, transparent 50%, #475569 50%), linear-gradient(135deg, #475569 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.directory-filter-field input::placeholder {
    color: #94a3b8;
}

.directory-filter-field input:focus,
.directory-filter-field select:focus {
    outline: none;
    border-color: #0f8b8d;
    box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.15);
}

.directory-filter-panel .pro-select-wrapper {
    width: 100%;
}

.directory-filter-panel .pro-select-display {
    min-height: 48px;
    padding: 0.65rem 2.35rem 0.65rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-size: 0.9375rem;
    color: #1e293b;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.directory-filter-panel .pro-select-wrapper.is-open .pro-select-display {
    border-color: #0f8b8d;
    box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.15);
}

.directory-filter-reset {
    min-height: 48px;
    padding: 0.65rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.directory-filter-reset:hover,
.directory-filter-reset:focus-visible {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.directory-filter-reset:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.directory-hero .eyebrow,
.directory-hero h1 {
    text-align: center;
}

.directory-hero h1 {
    max-width: none;
}

.directory-filter-hint {
    color: #64748b;
    font-size: 0.875rem;
    margin-inline: auto;
}

.directory-filter-summary strong {
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.1rem;
}

.directory-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.directory-chip-group::-webkit-scrollbar {
    height: 6px;
}

.directory-chip-group::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.directory-chip-group::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 999px;
}

.directory-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.45rem 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #334155;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.directory-chip:hover,
.directory-chip:focus-visible {
    border-color: #0f8b8d;
    color: #0a6b6d;
    background: #f0fdfa;
}

.directory-chip.is-active {
    background: #0f766e;
    border-color: #0f766e;
    color: #ffffff;
    box-shadow: none;
}

/* Mobile category dropdown - hidden by default on desktop */
.directory-select-group--mobile {
    display: none;
}

/* Desktop: show buttons, hide dropdown */
@media (min-width: 641px) {
    .directory-chip-group--desktop {
        display: flex;
    }
    .directory-select-group--mobile {
        display: none;
    }
}

/* Mobile: hide buttons, show pro-select dropdown */
@media (max-width: 640px) {
    .directory-chip-group--desktop {
        display: none;
    }
    .directory-select-group--mobile {
        display: block;
    }
}

.directory-page {
    padding: 56px 0 120px;
    background: var(--page-background);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.directory-card {
    --card-accent: var(--primary-brand);
    --card-accent-soft: rgba(37, 99, 235, 0.08);
    --card-accent-deep: #1e3a5f;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem 1.35rem 1.15rem;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.directory-card:hover {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.directory-card.is-hidden {
    display: none;
}

.directory-card__featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--card-accent);
    color: var(--card-accent-deep);
    background: var(--white);
}

.directory-card--featured .directory-card__intro {
    padding-right: 4.75rem;
}

.directory-card__header {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.directory-card__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
}

.directory-card__icon-svg {
    width: 32px;
    height: 32px;
}

.directory-card__intro {
    min-width: 0;
}

.directory-card__category {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--card-accent);
}

.directory-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
}

.directory-card__desc {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--secondary-text);
}

.directory-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.directory-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #475569;
    max-width: 100%;
}

.directory-card__check {
    display: grid;
    place-items: center;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--card-accent-soft);
    color: var(--card-accent);
}

.directory-card__check svg {
    width: 0.65rem;
    height: 0.65rem;
}

.directory-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.directory-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.62rem 1.1rem;
    border-radius: 12px;
    background: var(--card-accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.directory-card__cta:hover,
.directory-card__cta:focus-visible {
    filter: brightness(1.07);
    color: #fff !important;
}

.directory-card__cta-arrow {
    flex-shrink: 0;
}

.directory-card__bookmark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--white);
    color: #64748b;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    flex: 0 0 44px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}

.directory-card__bookmark svg {
    width: 20px;
    height: 20px;
    display: block;
}

.directory-card__bookmark:hover,
.directory-card__bookmark:focus-visible {
    border-color: var(--card-accent);
    color: var(--card-accent);
}

.directory-card__bookmark.is-saved {
    border-color: var(--card-accent);
    background: var(--card-accent-soft);
    color: var(--card-accent);
}

.directory-listing-hero__logo {
    display: grid;
    place-items: center;
    width: 140px;
    height: 140px;
    border-radius: 18px;
    background: var(--light-brand-fill);
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 42px;
    justify-self: end;
}

.directory-card__meta,
.directory-card__meta--hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin: 0;
    color: var(--secondary-text);
    font-size: 14px;
}

.directory-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.directory-card__rating-stars {
    position: relative;
    display: inline-grid;
    font-size: 1rem;
    line-height: 1;
}

.directory-card__rating-stars-base,
.directory-card__rating-stars-fill {
    grid-area: 1 / 1;
    letter-spacing: 0.12em;
}

.directory-card__rating-stars-base {
    color: #e2e8f0;
}

.directory-card .directory-card__rating-stars-fill {
    width: var(--rating-fill, 100%);
    overflow: hidden;
    color: #eab308;
    white-space: nowrap;
}

.directory-card__rating-value {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.directory-card__location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.directory-card__location-icon {
    width: 0.82rem;
    height: 0.82rem;
    flex: 0 0 0.82rem;
    color: var(--card-accent);
}

@media (max-width: 700px) {
    .directory-page {
        padding: 40px 0 80px;
    }

    .directory-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .directory-card__header {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .directory-card__icon {
        width: 64px;
        height: 64px;
    }

    .directory-card {
        padding: 1.1rem;
    }

    .directory-card__bookmark {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        border-radius: 50% !important;
        flex: 0 0 44px !important;
        aspect-ratio: 1 / 1 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: auto;
    }

    .directory-card__footer {
        gap: 0.5rem;
    }

    .directory-card__cta {
        flex: 1 1 auto;
        min-width: 0;
    }
}

.directory-sticky-cta {
    margin-top: 3rem;
    padding: 0 0 1rem;
    background: transparent;
}

.directory-sticky-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 3.1rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(6, 94, 91, 0.98) 0%, rgba(11, 122, 117, 0.96) 100%);
    box-shadow: 0 24px 50px rgba(6, 94, 91, 0.16);
}

.directory-sticky-cta p {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.directory-sticky-cta .button.directory-sticky-cta__action,
.directory-sticky-cta__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 11.5rem;
    min-height: 52px;
    padding: 0.72rem 1.5rem 0.72rem 1.65rem;
    justify-self: end;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(180deg, #ffb06b 0%, #f0893d 38%, #e8773a 100%);
    color: #fff !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 4px 0 rgba(173, 64, 8, 0.45),
        0 10px 28px rgba(200, 80, 20, 0.42),
        0 2px 8px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.directory-sticky-cta__action-icon {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.directory-sticky-cta .directory-sticky-cta__action:hover,
.directory-sticky-cta .directory-sticky-cta__action:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.04);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 5px 0 rgba(155, 55, 5, 0.38),
        0 16px 36px rgba(216, 100, 36, 0.5),
        0 4px 12px rgba(15, 23, 42, 0.15);
}

.directory-sticky-cta .directory-sticky-cta__action:active {
    transform: translateY(1px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 2px 0 rgba(173, 64, 8, 0.35),
        0 6px 18px rgba(216, 100, 36, 0.35);
}

.directory-sticky-cta .directory-sticky-cta__action:hover .directory-sticky-cta__action-icon,
.directory-sticky-cta .directory-sticky-cta__action:focus-visible .directory-sticky-cta__action-icon {
    transform: translateX(3px);
}

.directory-listing-page {
    padding: 56px 0 80px;
    background: var(--page-background);
}

.directory-listing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.directory-listing-content {
    display: grid;
    gap: 1.5rem;
}

.directory-listing-sidebar {
    position: sticky;
    top: 112px;
}

.directory-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.directory-contact-card {
    display: grid;
    place-items: center;
    min-height: 72px;
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
    font-weight: 600;
}

.directory-map-placeholder {
    padding: 1.5rem;
    border: 1px dashed rgba(11, 122, 117, 0.3);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .directory-listing-layout {
        grid-template-columns: 1fr;
    }

    .directory-listing-sidebar {
        position: static;
    }

    .directory-listing-hero__logo {
        justify-self: start;
    }
}

.contact-page {
    padding: 56px 0 80px;
    background: var(--page-background);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-form {
    gap: 1rem;
}

.contact-socials {
    margin-top: 1.25rem;
}

.business-listing-strip {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(232, 119, 58, 0.16);
    border-radius: var(--radius-card);
    background: #fbf1e9;
    box-shadow: var(--shadow-soft);
}

.business-listing-strip p {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.async-form-status {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-input);
    background: rgba(230, 244, 243, 0.9);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
}

.async-form-status.is-error {
    background: rgba(232, 119, 58, 0.12);
    color: #a44e25;
}

/* Brand guideline compliance overrides */
.button,
.button--outline,
.button--outline-accent {
    background: var(--cta-accent);
    border: 1px solid var(--cta-accent);
    color: var(--white);
    box-shadow: none;
}

.button:hover,
.button--outline:hover,
.button--outline-accent:hover {
    background: #db6f34;
    border-color: #db6f34;
    color: var(--white);
}

.section--hero {
    background: #dcebea;
}

.guide-hero,
.blog-hero,
.contact-hero {
    background: var(--primary-brand);
}

.founder-photo-ring {
    background: #eef4f2;
}

.guide-feature-card__image--teal {
    background: #9ec9c5;
}

.guide-feature-card__image--sand {
    background: #f5f0e8;
}

.guide-feature-card__image--slate {
    background: #b9c4cd;
}

.guide-cta-box,
.hero-panel,
.housing-booking-card__widget,
.directory-map-placeholder,
.async-form-status,
.migration-hero-note,
.directory-listing-hero__logo,
.directory-card__icon {
    background-image: none;
}

.blog-card__image--file {
    width: auto;
    height: 220px;
    display: block;
    object-fit: cover;
}

.article-hero__image--file {
    width: auto;
    min-height: 320px;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.guide-feature-card__image--file {
    width: auto;
    height: 240px;
    display: block;
    object-fit: cover;
}

.hero-section--image {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(11, 122, 117, 0.2), rgba(11, 122, 117, 0.2)),
        url('/media/hero/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-grid--centered {
    grid-template-columns: 1fr;
    justify-items: center;
}

.hero-copy-block--centered {
    max-width: 860px;
    text-align: center;
}

.hero-actions--centered {
    justify-content: center;
}

.trust-bar--centered {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section--image .trust-pill,
.hero-section--image .button,
.hero-section--image .button--outline,
.hero-section--image .button--outline-accent {
    box-shadow: var(--shadow-soft);
}

    .hero-copy-block--centered {
        text-align: left;
    }

    .hero-actions--centered {
        justify-content: flex-start;
    }

    .trust-bar--centered {
        margin-left: 0;
        margin-right: 0;
    }

.hero-section--image {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(6, 94, 91, 0.74) 0%, rgba(6, 94, 91, 0.52) 34%, rgba(6, 94, 91, 0.28) 62%, rgba(6, 94, 91, 0.38) 100%),
        linear-gradient(180deg, rgba(6, 94, 91, 0.18) 0%, rgba(6, 94, 91, 0.1) 100%),
        url('/media/hero/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-shell {
    width: auto;
    display: flex;
    justify-content: flex-start;
}

.hero-content-panel {
    width: min(760px, 100%);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 60px rgba(6, 94, 91, 0.18);
}

.hero-content-panel h1 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-eyebrow {
    color: var(--primary-brand);
}

.hero-content-panel .hero-copy {
    max-width: 58ch;
    margin-bottom: 1.5rem;
    color: var(--body-text);
    font-size: 1.125rem;
    line-height: 1.65;
}

.hero-content-panel .hero-actions {
    margin-bottom: 1.5rem;
}

.hero-content-panel .button--outline,
.hero-content-panel .button--outline-accent {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--cta-accent);
    color: var(--white);
}

.hero-content-panel .button--outline:hover,
.hero-content-panel .button--outline-accent:hover {
    background: #db6f34;
    color: var(--white);
}

.hero-trust-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0;
}

.hero-trust-pill {
    background: #ffffff;
    border: 1px solid rgba(11, 122, 117, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.hero-trust-pill strong {
    color: var(--primary-dark);
}

.hero-trust-pill span {
    color: var(--secondary-text);
}

    .hero-content-panel {
        padding: 2.25rem;
    }

    .hero-content-panel {
        width: auto;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: none;
    }

    .hero-content-panel h1 {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }

    .hero-content-panel .hero-copy {
        font-size: 0.8rem;
    }

    .hero-trust-bar {
        grid-template-columns: 1fr;
    }

body.is-homepage main {
    padding-top: 0;
}

.site-header--home {
    background: #123247;
    border-bottom: 0;
    box-shadow: none;
}

.site-header--home.is-scrolled {
    background: #123247;
    box-shadow: none;
}

.site-header--home .brand strong,
.site-header--home .brand small,
.site-header--home .site-nav a:not(.button),
.site-header--home .menu-toggle {
    color: var(--white);
}

.site-header--home .menu-toggle {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.site-header--home .menu-toggle span {
    background: var(--white);
}

.site-header--home .site-header__inner,
.site-header--home .site-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-section--reference {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 120px;
    background:
        linear-gradient(180deg, rgba(4, 22, 36, 0.78) 0%, rgba(5, 32, 50, 0.72) 50%, rgba(6, 50, 70, 0.7) 100%),
        url('/media/hero/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section--reference::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 88%, rgba(146, 238, 227, 0.34) 0%, rgba(146, 238, 227, 0) 34%);
    pointer-events: none;
}

.hero-reference__inner {
    position: relative;
    z-index: 1;
    width: auto;
    min-height: calc(100vh - 192px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-reference__content {
    max-width: 960px;
    text-align: center;
}

.hero-reference__eyebrow {
    margin-bottom: 1rem;
    color: rgba(203, 251, 247, 0.92);
    letter-spacing: 0.12em;
}

.hero-section--reference h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: clamp(2.14rem, 4.54vw, 3.76rem);
    line-height: 1.07;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 34px rgba(5, 24, 35, 0.28);
}

.hero-reference__copy {
    max-width: 66ch;
    margin: 0 auto 2.1rem;
    color: rgba(243, 248, 252, 0.94);
    font-size: clamp(1.01rem, 1.63vw, 1.39rem);
    line-height: 1.7;
}

.hero-reference__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.button--ghost-light {
    background: rgba(20, 185, 176, 0.88);
    border: 1px solid rgba(20, 185, 176, 0.88);
    color: var(--white);
}

.button--ghost-light:hover {
    background: rgba(16, 161, 153, 0.96);
    border-color: rgba(16, 161, 153, 0.96);
    color: var(--white);
}

.hero-reference__scroll {
    margin-top: 3rem;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-reference__scroll span {
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
}

@media (max-width: 1279px) {
    .site-header--home .site-nav {
        background: transparent;
    }

    .site-header--home .site-nav a:not(.button) {
        color: var(--white);
    }

    .hero-section--reference {
        min-height: 92vh;
        padding-top: 120px;
        padding-bottom: 120px;
        background-position: 60% center;
    }

    .hero-reference__inner {
        min-height: auto;
    }

    .hero-section--reference h1 {
        font-size: clamp(2.24rem, 10.4vw, 3.2rem);
    }

    .hero-reference__copy {
        font-size: 0.8rem;
    }

    .hero-reference__actions {
        width: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-reference__actions .button {
        width: auto;
    }
}
#why-settleanz .section-heading {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#why-settleanz .section-heading h2
{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#services .section-heading {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#services .section-heading h2
{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#guides .section-heading {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#guides .section-heading h2
{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-icon-card small {
    display: block;
    margin-top: 0.7rem;
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.55;
}

.service-icon-card span {
    display: block;
    margin-bottom: 0.35rem;
}

.service-icon-card small {
    margin-top: 0;
}

.service-icon-card {
    gap: 0.55rem;
}

.service-icon-card__icon {
    margin-bottom: 0.15rem;
}

.founder-strip__story-grid {
    grid-template-columns: 240px minmax(0, 720px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.founder-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-story-copy h2 {
    max-width: 22ch;
    margin-bottom: 0.6rem;
}

.founder-story-copy p {
    margin-top: 0;
    max-width: 38ch;
}

.founder-story-link {
    margin-top: 0.85rem;
}

    .founder-story-copy {
        align-items: center;
    }

.founder-strip--story .container {
    width: min(calc(100% - 2rem), var(--max-width));
    max-width: var(--max-width);
}

.founder-strip__story-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    justify-content: stretch;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: none;
}

.founder-photo-wrap {
    align-self: center;
}

.founder-story-copy {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: var(--founder-copy-max-width, 100%);
}

.founder-story-copy h2 {
    max-width: var(--founder-heading-max-width, 24ch);
    margin-bottom: 0.75rem;
}

.founder-story-copy p {
    margin: 0;
    max-width: var(--founder-copy-text-max-width, 100%);
    line-height: 1.7;
}

.founder-story-link {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .founder-strip__story-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 1025px) {
    .founder-strip__story-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .founder-story-copy {
        text-align: center;
        align-items: center;
    }

    .founder-photo-wrap {
        justify-self: center;
    }
}

    .founder-story-copy {
        align-items: flex-start;
        max-width: var(--founder-copy-max-width, 100%);
    }

    .founder-story-copy p {
        max-width: var(--founder-copy-text-max-width, 100%);
    }

.founder-story-copy h2 {
    color: var(--primary-dark);
    max-width: var(--founder-heading-max-width, 24ch);
    width: 100%;
    line-height: 1.12;
}

.founder-photo-image {
    width: 184px;
    height: 184px;
    display: block;
    border-radius: 999px;
    object-fit: cover;
}

@media (min-width: 1025px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 2rem;
    }

    .brand {
        justify-self: start;
    }

    .site-nav {
        justify-self: center;
        justify-content: center;
        gap: 2rem;
        width: auto;
    }

    .site-header__cta {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav__cta {
        display: none;
    }

    .site-header--home .site-nav {
        justify-content: center;
    }
}

.site-nav a:not(.button):hover,
.site-footer a:hover,
.site-footer a:focus-visible,
.site-nav a:not(.button):focus-visible,
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
    color: var(--cta-accent);
}

.admin-login-body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b2a3c 0%, #124761 100%);
}

.admin-login-wrap {
    width: min(calc(100% - 2rem), 480px);
}

.admin-login-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(5, 24, 35, 0.22);
}

.admin-login-copy {
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
}

.admin-login-form {
    display: grid;
    gap: 1rem;
}

.admin-login-form label span {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.admin-login-form small {
    display: block;
    margin-top: 0.35rem;
    color: #a44e25;
}

.admin-login-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-login-checkbox input {
    width: 16px;
    height: 16px;
}

.admin-login-checkbox span {
    margin: 0;
    color: var(--secondary-text);
}

.admin-shell-body {
    margin: 0;
    background: #f4f7fb;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 2rem 1.25rem;
    background: linear-gradient(180deg, #0b2a3c 0%, #12384f 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-sidebar__eyebrow {
    margin: 0 0 0.5rem;
    color: rgba(203, 251, 247, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
}

.admin-sidebar__brand h1 {
    margin: 0 0 0.75rem;
    color: var(--white);
    font-size: 2rem;
}

.admin-sidebar__brand p {
    margin: 0;
    color: rgba(232, 240, 246, 0.78);
}

.admin-sidebar__nav {
    display: grid;
    gap: 0.55rem;
}

.admin-sidebar__nav a {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-sidebar__nav a:hover,
.admin-sidebar__nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.admin-sidebar__user {
    margin-top: auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 1rem;
}

.admin-sidebar__user strong,
.admin-sidebar__user span {
    display: block;
}

.admin-sidebar__user span {
    margin-top: 0.35rem;
    color: rgba(232, 240, 246, 0.72);
    font-size: 14px;
}

.admin-main {
    padding: 2rem;
}

.admin-main__inner {
    display: grid;
    gap: 1.5rem;
}

.admin-topbar,
.admin-panel-card,
.admin-stat-card {
    background: #ffffff;
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(18, 56, 79, 0.08);
}

.admin-topbar,
.admin-panel-card {
    padding: 1.25rem;
}

.admin-panel-card.admin-table-card {
    padding: 0;
}

.admin-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.admin-topbar p:last-child,
.admin-panel-card p {
    color: var(--secondary-text);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    padding: 1.35rem;
}

.admin-stat-card span,
.admin-stat-card small {
    display: block;
}

.admin-stat-card span {
    color: var(--secondary-text);
    font-size: 14px;
    font-weight: 600;
}

.admin-stat-card strong {
    display: block;
    margin: 0.55rem 0;
    color: var(--primary-dark);
    font: 700 2rem 'Plus Jakarta Sans', system-ui, sans-serif;
}

.admin-stat-card small {
    color: var(--secondary-text);
}

.admin-panel-card--filters {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.admin-filter-form {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-filter-form label span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
}

.admin-filter-form select {
    min-width: 170px;
}

.admin-table-card {
    overflow-x: auto;
    padding: 0;
}

.admin-table {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(11, 122, 117, 0.08);
    word-wrap: break-word;
}

.admin-table th {
    background: #f7fbfd;
    color: #12384f;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.admin-table td strong,
.admin-table td small {
    display: block;
}

.admin-table td small {
    margin-top: 0.25rem;
    color: #667788;
    font-size: 0.82rem;
}

.admin-badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #e8f5f4;
    color: #0b7a75;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-pagination {
    padding: 1rem 1.25rem;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        gap: 1.25rem;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-panel-card--filters,
    .admin-topbar {
        flex-direction: column;
        align-items: stretch;
    }
}

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-filter-form select,
    .admin-filter-form .button {
        width: auto;
    }

    .admin-table-card {
        overflow-x: auto;
    }

.admin-login-card {
    text-align: center;
}

.admin-login-card .eyebrow,
.admin-login-card h1,
.admin-login-copy {
    text-align: center;
}

.admin-login-form {
    margin-top: 1.75rem;
    gap: 1.1rem;
}

.admin-login-form label {
    display: grid;
    gap: 0.5rem;
    text-align: left;
}

.admin-login-form input[type="email"],
.admin-login-form input[type="password"] {
    width: auto;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(11, 122, 117, 0.18);
    border-radius: 12px;
    background: #f8fbfd;
    color: var(--body-text);
    box-shadow: inset 0 1px 2px rgba(18, 56, 79, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.admin-login-form input[type="email"]:hover,
.admin-login-form input[type="password"]:hover {
    border-color: rgba(11, 122, 117, 0.28);
    background: #ffffff;
}

.admin-login-form input[type="email"]:focus,
.admin-login-form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 122, 117, 0.1);
}

.admin-login-checkbox {
    justify-content: flex-start;
    padding-top: 0.2rem;
}

.admin-login-form .button {
    margin-top: 0.35rem;
}

.admin-login-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 0.1rem;
}

.admin-login-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto;
}

.admin-login-checkbox span {
    display: inline-block;
    margin: 0;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}
.admin-login-card {
    padding: 3rem 2rem 2.25rem;
}

.admin-login-form {
    margin-top: 1.5rem;
    gap: 1rem;
}

.admin-login-form > label:not(.admin-login-checkbox) {
    gap: 0.45rem;
}

.admin-login-form > label:not(.admin-login-checkbox) > span {
    margin-bottom: 0.15rem;
}

.admin-login-form .admin-login-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 0.15rem;
    margin-top: 0.1rem;
}

.admin-login-form .admin-login-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto;
    accent-color: var(--primary-brand);
}

.admin-login-form .admin-login-checkbox span {
    display: inline;
    margin: 0;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.admin-login-form .button {
    margin-top: 0.25rem;
}

.admin-filter-form {
    gap: 1rem;
}

.admin-filter-form label {
    display: grid;
    gap: 0.42rem;
}

.admin-filter-form label span {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.admin-filter-form select {
    min-width: 188px;
    min-height: 48px;
    padding: 0.8rem 2.8rem 0.8rem 0.95rem;
    border: 1px solid rgba(11, 122, 117, 0.16);
    border-radius: 12px;
    background-color: #f8fbfd;
    color: var(--body-text);
    box-shadow: inset 0 1px 2px rgba(18, 56, 79, 0.04);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-dark) 50%), linear-gradient(135deg, var(--primary-dark) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-filter-form select:hover {
    border-color: rgba(11, 122, 117, 0.28);
    background-color: #ffffff;
}

.admin-filter-form select:focus {
    outline: none;
    border-color: var(--primary-brand);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 122, 117, 0.1);
}

.admin-filter-form .button {
    min-height: 48px;
    padding-inline: 1.35rem;
}
.admin-two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-two-column-grid--narrow {
    grid-template-columns: 1.1fr 0.9fr;
}

.admin-section-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-list-stack {
    display: grid;
    gap: 0.85rem;
}

.admin-list-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(11, 122, 117, 0.1);
    border-radius: 14px;
    background: #fdfefe;
}

.admin-list-item strong,
.admin-list-item small,
.admin-action-card strong,
.admin-action-card span {
    display: block;
}

.admin-list-item small,
.admin-action-card span {
    color: var(--secondary-text);
}

.admin-action-grid {
    display: grid;
    gap: 0.9rem;
}

.admin-action-card {
    display: block;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(11, 122, 117, 0.1);
    border-radius: 14px;
    background: #fdfefe;
    text-decoration: none;
}

.admin-action-card strong {
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
}

.admin-edit-form {
    display: grid;
    gap: 1rem;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-edit-form label {
    display: grid;
    gap: 0.42rem;
}

.admin-edit-form label span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.admin-edit-form input[type="text"],
.admin-edit-form input[type="email"],
.admin-edit-form input[type="number"],
.admin-edit-form input[type="datetime-local"],
.admin-edit-form select,
.admin-edit-form textarea {
    width: auto;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(11, 122, 117, 0.16);
    border-radius: 12px;
    background: #f8fbfd;
    color: var(--body-text);
    box-shadow: inset 0 1px 2px rgba(18, 56, 79, 0.04);
}

.admin-edit-form textarea {
    min-height: 140px;
    resize: vertical;
}

.admin-edit-form input:focus,
.admin-edit-form select:focus,
.admin-edit-form textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 122, 117, 0.1);
}

.admin-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-inline-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: 12px;
    background: #fdfefe;
}

.admin-inline-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-brand);
}

.admin-inline-checkbox span {
    margin: 0;
}

.admin-detail-list {
    display: grid;
    gap: 0.8rem;
}

.admin-detail-list div {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #f8fbfd;
    border: 1px solid rgba(11, 122, 117, 0.08);
}

.admin-detail-list dt {
    margin-bottom: 0.25rem;
    color: var(--secondary-text);
    font-size: 13px;
    font-weight: 700;
}

.admin-detail-list dd {
    margin: 0;
    color: var(--primary-dark);
}

.admin-note-block {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    background: #edf6f6;
}

.migration-layout--full {
    display: block;
}

@media (max-width: 1100px) {
    .admin-two-column-grid,
    .admin-two-column-grid--narrow,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}
.admin-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.admin-quick-filter {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(11, 122, 117, 0.14);
    border-radius: 999px;
    background: #f8fbfd;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.admin-quick-filter.is-active,
.admin-quick-filter:hover {
    border-color: rgba(232, 119, 58, 0.28);
    background: rgba(232, 119, 58, 0.1);
    color: var(--accent-color);
}

.admin-empty-text {
    color: var(--secondary-text);
}
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 29, 41, 0.58);
}

.booking-modal__dialog {
    position: relative;
    width: min(920px, calc(100% - 2rem));
    margin: 4vh auto;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(8, 29, 41, 0.24);
    overflow: hidden;
}

.booking-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #eef5f8;
    color: var(--primary-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.booking-modal__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
}

.booking-modal__aside {
    padding: 2rem 1.75rem;
    background: linear-gradient(180deg, #f7fbfd 0%, #edf6f6 100%);
    border-right: 1px solid rgba(11, 122, 117, 0.08);
}

.booking-modal__eyebrow {
    margin: 0 0 0.65rem;
    color: var(--primary-brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-modal__aside h2 {
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.booking-modal__agent {
    margin-bottom: 1rem;
    color: var(--body-text);
    font-size: 1rem;
    font-weight: 600;
}

.booking-modal__summary {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--secondary-text);
}

.booking-modal__summary li + li {
    margin-top: 0.6rem;
}

.booking-modal__form-wrap {
    padding: 2rem 1.75rem;
}

.booking-form {
    display: grid;
    gap: 0.95rem;
}

.booking-form label {
    display: grid;
    gap: 0.38rem;
}

.booking-form label span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: auto;
    min-height: 50px;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(11, 122, 117, 0.14);
    border-radius: 12px;
    background: #f8fbfd;
    color: var(--body-text);
}

.booking-form textarea {
    min-height: 118px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 122, 117, 0.1);
}

.booking-form__split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.migration-agent-card--booking .button {
    width: auto;
}

    .booking-modal__grid,
    .booking-form__split {
        grid-template-columns: 1fr;
    }

.admin-topbar__actions,
.admin-table-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.admin-table-actions form,
.admin-topbar__actions form {
    margin: 0;
}

.button--danger {
    background: #d65a31;
    color: #ffffff;
    border-color: #d65a31;
}

.button--danger:hover,
.button--danger:focus-visible {
    background: #b94722;
    border-color: #b94722;
    color: #ffffff;
}

.admin-delete-link {
    border: 0;
    background: transparent;
    color: #d65a31;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.admin-delete-link:hover,
.admin-delete-link:focus-visible {
    color: #b94722;
}
.admin-table-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.admin-table-actions form {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.admin-table td:last-child {
    white-space: nowrap;
    width: 100px;
}

.admin-table th:last-child,
.admin-table td:last-child {
    text-align: right;
}

.admin-table-actions .text-link,
.admin-table-actions .admin-delete-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.migration-form__grid {
    grid-template-columns: 1fr;
}

.migration-form__grid > .form-split-grid,
.migration-form__grid > label {
    grid-column: 1 / -1;
}

.form-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: auto;
}

.form-split-grid > label {
    min-width: 0;
}

.form-split-grid--tight {
    gap: 1rem;
}

.migration-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.migration-form__grid > .form-split-grid,
.migration-form__grid > label {
    grid-column: 1 / -1;
}

.migration-form--pro {
    display: grid;
    gap: 0.85rem;
    align-content: center;
    height: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(11, 122, 117, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(18, 56, 79, 0.08);
}

.migration-form__grid--pro {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
}

.migration-form__row {
    display: flex !important;
    gap: 1rem !important;
    width: 100%;
    align-items: start;
}

.migration-form__field {
    display: grid !important;
    gap: 0.45rem;
    min-width: 0;
    width: 100%;
    flex: 1 1 0;
}

.migration-form__field > span {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
}

.migration-form__field--full {
    width: 100%;
}

.migration-form--pro input,
.migration-form--pro select,
.migration-form--pro textarea {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(11, 122, 117, 0.16);
    border-radius: 12px;
    background: linear-gradient(180deg, #fcfefe 0%, #f7fbfb 100%);
    box-shadow: inset 0 1px 2px rgba(18, 56, 79, 0.04);
}

.migration-form--pro textarea {
    min-height: 180px;
    resize: vertical;
}

.migration-form--pro .button--full {
    justify-self: stretch;
}

.migration-form--pro .button {
    margin-top: 0.35rem;
    min-height: 58px;
    width: 100%;
    box-shadow: 0 16px 28px rgba(232, 119, 58, 0.22);
}

.migration-form--pro .button:hover {
    filter: brightness(0.98);
}

.migration-form__privacy {
    padding-top: 0.15rem;
}

.migration-form--pro input:focus,
.migration-form--pro select:focus,
.migration-form--pro textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 122, 117, 0.1);
}

@media (max-width: 1024px) {
    .migration-form-section__header {
        padding: 0.9rem;
    }

    .migration-form-section__header h2 {
        max-width: none;
        padding: 1.2rem;
    }

    .migration-form-section__panel {
        grid-template-columns: 1fr;
    }
        padding: 1.2rem;
    .migration-form--pro {
        padding: 1.35rem;
    }

    .migration-form-section__intro {
        justify-content: flex-start;
        height: auto;
    }

    .migration-form-section .migration-form {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .migration-form-section {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .migration-form-section__panel {
        padding: 1rem;
        border-radius: 24px;
    }

    .migration-form-section__intro {
        padding: 1.3rem;
        border-radius: 20px;
    }

    .migration-form--pro {
        padding: 1.15rem;
        border-radius: 20px;
        height: auto;
        align-content: start;
    }

    .migration-form__grid--pro {
        gap: 0.9rem !important;
    }
}

@media (max-width: 520px) {
    .migration-form__row {
        flex-direction: column !important;
    }
}

/* Premium homepage icon styling */
.info-card--audience,
.service-icon-card {
    position: relative;
    overflow: hidden;
}

.info-card--audience {
    border: 1px solid rgba(11, 122, 117, 0.12);
    box-shadow: 0 18px 40px rgba(8, 53, 63, 0.08);
}

.info-card--audience::after,
.service-icon-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.info-card__icon,
.service-icon-card__icon {
    position: relative;
    overflow: hidden;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(11, 122, 117, 0.16);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(220, 242, 240, 0.92) 42%, rgba(169, 221, 216, 0.9) 100%);
    color: var(--primary-dark);
    box-shadow: 0 14px 28px rgba(8, 53, 63, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.info-card__icon::before,
.service-icon-card__icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.info-card__icon::after,
.service-icon-card__icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 11px;
    right: 11px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.info-card__icon svg,
.service-icon-card__icon svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    stroke-width: 1.9;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

.service-icon-card {
    min-height: 190px;
    padding: 1.6rem;
    border: 1px solid rgba(11, 122, 117, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 250, 249, 0.96));
    box-shadow: 0 20px 40px rgba(8, 53, 63, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-icon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 122, 117, 0.3);
    box-shadow: 0 24px 44px rgba(8, 53, 63, 0.14);
}

.service-icon-card:hover .service-icon-card__icon,
.info-card--audience:hover .info-card__icon {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 34px rgba(8, 53, 63, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-icon-card__icon,
.info-card__icon {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Contact page redesign */
.contact-hero--pro {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at 82% 24%, rgba(175, 236, 230, 0.38), rgba(175, 236, 230, 0) 28%),
        linear-gradient(135deg, #0c6f6d 0%, #0b7a75 48%, #48b8b3 100%);
}

.contact-hero--pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 63, 71, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.contact-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: end;
}

.contact-hero__content {
    max-width: 560px;
}

.contact-hero__content .eyebrow {
    margin-bottom: 0.75rem;
}

.contact-hero__content h1,
.contact-hero__content .guide-hero__copy {
    color: var(--white);
}

.contact-hero__content .guide-hero__copy {
    max-width: 46ch;
}

.contact-hero__media {
    justify-self: end;
    align-self: end;
}

.contact-hero__image-shell {
    position: relative;
    width: min(100%, 380px);
}

.contact-hero__image-shell::before {
    content: '';
    position: absolute;
    inset: -18px -24px 12px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.contact-hero__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-page--pro {
    padding: 0 0 88px;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 245, 235, 0.88), rgba(255, 245, 235, 0) 32%),
        linear-gradient(180deg, #fff9f2 0%, #fffdf9 24%, #f9f6ef 100%);
}

.contact-layout--pro {
    position: relative;
    margin-top: -28px;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-sidebar {
    display: grid;
    gap: 1rem;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(17, 107, 112, 0.1);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(20, 46, 60, 0.1);
}

.contact-panel--info,
.contact-panel--cta,
.contact-panel--form {
    padding: 1.65rem;
}

.contact-panel__heading {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.contact-panel__badge {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #e8f8f6 0%, #cfeeea 100%);
    color: var(--primary-brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 18px rgba(11, 122, 117, 0.14);
}

.contact-panel__badge svg {
    width: 24px;
    height: 24px;
}

.contact-panel--info h2,
.contact-panel--cta h2,
.contact-panel--form h2 {
    margin: 0;
    color: #1b5d6d;
    font-size: 2rem;
}

.contact-panel--form h2 {
    margin-bottom: 1.1rem;
    text-align: center;
}

.contact-panel--info h2,
.contact-panel--cta h2 {
    font-size: 2.1rem;
    line-height: 1.12;
}

.contact-points {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding-left: 1.15rem;
}

.contact-points li {
    color: var(--body-text);
    line-height: 1.65;
}

.contact-points a {
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-socials-pro {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.contact-socials-pro a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f0f4f5;
    border: 1px solid rgba(17, 107, 112, 0.12);
    color: #5a6b74;
    font-size: 12px;
    font-weight: 700;
    text-transform: lowercase;
}

.contact-panel--cta {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 234, 0.96));
}

.contact-panel--cta p {
    margin-top: 0.85rem;
    margin-bottom: 1.2rem;
    color: var(--body-text);
}

.contact-cta-button,
.contact-submit-button {
    width: 100%;
    justify-content: center;
    background: linear-gradient(180deg, #ff9b4f 0%, #f47d2b 100%);
    border-color: #f47d2b;
    color: var(--white);
    box-shadow: 0 14px 24px rgba(244, 125, 43, 0.24);
}

.contact-form-wrap--pro {
    width: 100%;
}

.contact-panel--form {
    background: rgba(255, 255, 255, 0.96);
}

.contact-form--pro {
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.contact-panel--form .form-split-grid:first-of-type {
    margin-top: 0.35rem;
}

.contact-form--pro label > span {
    display: block;
    margin-bottom: 0.45rem;
    color: #2c515c;
    font-size: 14px;
    font-weight: 700;
}

.contact-form--pro input,
.contact-form--pro select,
.contact-form--pro textarea {
    width: 100%;
    padding: 0.88rem 0.95rem;
    border: 1px solid rgba(22, 91, 98, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--body-text);
    box-shadow: inset 0 1px 2px rgba(13, 44, 54, 0.03);
}

.contact-form--pro select {
    appearance: auto;
}

.contact-form--pro textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form--pro input::placeholder,
.contact-form--pro textarea::placeholder {
    color: #7b8f97;
}

.contact-form--pro input:focus,
.contact-form--pro select:focus,
.contact-form--pro textarea:focus {
    outline: 2px solid rgba(244, 125, 43, 0.16);
    border-color: rgba(244, 125, 43, 0.46);
}

    .contact-hero__media {
        justify-self: center;
    }

    .contact-layout--pro {
        margin-top: -12px;
    }

    .contact-hero__content {
        text-align: center;
        margin-inline: auto;
    }

    .contact-hero__content .guide-hero__copy {
        margin-inline: auto;
    }

    .contact-hero__image-shell {
        width: min(100%, 290px);
    }

    .contact-panel--info h2,
    .contact-panel--cta h2,
    .contact-panel--form h2 {
        font-size: 1.85rem;
    }

/* Contact hero layout fix */
.contact-hero--pro {
    padding: 76px 0 54px;
}

.contact-hero__layout {
    min-height: 320px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 3rem;
    align-items: stretch;
}

.contact-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
}

.contact-hero__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 320px;
}

.contact-hero__image-shell {
    width: min(100%, 470px);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.contact-hero__image-shell::before {
    inset: -20px -32px 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 70%);
}

.contact-hero__image {
    width: auto;
    max-width: 100%;
    height: min(100%, 330px);
    object-fit: cover;
    object-position: bottom right;
}

    .contact-hero__media {
        min-height: 240px;
    }

    .contact-hero__image-shell {
        width: min(100%, 360px);
        justify-content: center;
    }

    .contact-hero__image {
        height: min(100%, 260px);
    }

    .contact-hero__media {
        min-height: 190px;
    }

    .contact-hero__image-shell {
        width: min(100%, 300px);
        height: auto;
    }

    .contact-hero__image {
        width: 100%;
        height: auto;
    }

/* Contact hero hard override */
.contact-hero.contact-hero--pro {
    padding: 72px 0 40px !important;
}

.contact-hero.contact-hero--pro .contact-hero__layout {
    min-height: 200px !important;
    grid-template-columns: minmax(0, 1fr) 560px !important;
    gap: 2rem !important;
    align-items: stretch !important;
}

.contact-hero.contact-hero--pro .contact-hero__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-block: 8px !important;
    max-width: 560px !important;
}

.contact-hero.contact-hero--pro .contact-hero__media {
    position: relative !important;
    min-height: 200px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    overflow: visible !important;
}

.contact-hero.contact-hero--pro .contact-hero__image-shell {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 560px !important;
    height: 200px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
}

.contact-hero.contact-hero--pro .contact-hero__image-shell::before {
    inset: -12px -40px -6px 20px !important;
}

.contact-hero.contact-hero--pro .contact-hero__image {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: bottom right !important;
    display: block !important;
}

    .contact-hero.contact-hero--pro .contact-hero__media {
        min-height: 221px !important;
        justify-content: center !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__image-shell {
        position: relative !important;
        width: min(100%, 420px) !important;
        height: 100% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__content {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__media {
        min-height: 205px !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__image-shell {
        width: min(100%, 320px) !important;
        height: 205px !important;
    }

/* Contact page spacing + bottom alignment fix */
.contact-page.contact-page--pro {
    padding: 22px 0 88px !important;
}

.contact-page.contact-page--pro .contact-layout.contact-layout--pro {
    margin-top: 0 !important;
    align-items: start !important;
}

.contact-hero.contact-hero--pro {
    padding: 18px 0 0 !important;
}

.contact-hero.contact-hero--pro .contact-hero__layout {
    min-height: 340px !important;
}

.contact-hero.contact-hero--pro .contact-hero__media {
    min-height: 340px !important;
}

.contact-hero.contact-hero--pro .contact-hero__image-shell {
    height: 340px !important;
    bottom: 0 !important;
    overflow: visible !important;
}

.contact-hero.contact-hero--pro .contact-hero__image {
    height: 100% !important;
    transform: none !important;
}

    .contact-hero.contact-hero--pro {
        padding: 20px 0 8px !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__media,
    .contact-hero.contact-hero--pro .contact-hero__image-shell {
        min-height: 250px !important;
        height: 250px !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__image {
        height: 100% !important;
        transform: none !important;
    }

    .contact-hero.contact-hero--pro {
        padding: 18px 0 8px !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__media,
    .contact-hero.contact-hero--pro .contact-hero__image-shell {
        min-height: 205px !important;
        height: 205px !important;
    }

    .contact-hero.contact-hero--pro .contact-hero__image {
        height: 100% !important;
        transform: none !important;
    }

/* Contact card bottom alignment */
.contact-page.contact-page--pro .contact-layout.contact-layout--pro {
    align-items: stretch !important;
}

.contact-page.contact-page--pro .contact-sidebar {
    height: 100% !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.contact-page.contact-page--pro .contact-panel--cta {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.contact-page.contact-page--pro .contact-panel--cta .contact-cta-button {
    margin-top: 1.25rem !important;
}

    .contact-page.contact-page--pro .contact-panel--cta {
        flex: initial !important;
    }

/* Floating quick actions and chat panel */
.site-chat {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.floating-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    cursor: pointer;
}

.floating-action__icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateY(-2px);
}

.site-chat-panel {
    width: min(420px, calc(100vw - 1.5rem));
    display: none;
    grid-template-rows: auto minmax(260px, 1fr) auto;
    overflow: hidden;
    border: 1px solid #b9cfcb;
    border-radius: 30px;
    background: #ffffff !important;
    box-shadow: 0 30px 80px rgba(10, 35, 45, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
    backdrop-filter: none;
    isolation: isolate;
}

.site-chat-panel.is-open {
    display: grid;
}

.site-chat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1rem;
    background: linear-gradient(135deg, #f18a42 0%, #e8773a 45%, #d86424 100%);
    color: #ffffff;
}

.site-chat-head-main {
    display: grid;
    gap: 0.25rem;
}

.site-chat-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.1;
}

.site-chat-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.45;
}

.site-chat-head-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-chat-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.site-chat-log {
    display: grid;
    gap: 0.85rem;
    min-height: 260px;
    max-height: min(52vh, 430px);
    padding: 1rem;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fcfb 0%, #eef6f4 100%);
}

.site-chat-msg {
    width: fit-content;
    max-width: 88%;
    align-self: start;
    padding: 0.82rem 0.95rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
    box-shadow: 0 8px 20px rgba(16, 35, 58, 0.06);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.site-chat-msg.user {
    justify-self: end;
    background: linear-gradient(135deg, #f18a42 0%, #e8773a 45%, #d86424 100%);
    color: #ffffff;
    border-bottom-right-radius: 6px;
}

.site-chat-msg.bot {
    justify-self: start;
    background: #fffaf4;
    color: #2c3a47;
    border: 1px solid rgba(232, 119, 58, 0.18);
    border-bottom-left-radius: 6px;
}


.site-chat-msg.thinking {
    display: grid;
    gap: 0.5rem;
    min-width: 208px;
    background: #fffaf4;
    border: 1px solid rgba(232, 119, 58, 0.18);
}

.site-chat-thinking-title {
    font-weight: 700;
    color: #d86424;
}

.site-chat-thinking-copy {
    color: #536171;
    font-size: 0.9rem;
    line-height: 1.45;
}

.site-chat-thinking-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.site-chat-thinking-dots span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #e8773a;
    opacity: 0.35;
    animation: site-chat-thinking 1.15s infinite ease-in-out;
}

.site-chat-thinking-dots span:nth-child(2) {
    animation-delay: 0.18s;
}

.site-chat-thinking-dots span:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes site-chat-thinking {
    0%, 80%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.site-chat-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.9rem 1rem 1rem;
    border-top: 1px solid rgba(8, 93, 101, 0.12);
    background: #ffffff;
}

.site-chat-input {
    min-width: 0;
    padding: 0.92rem 1rem;
    border: 1px solid #b8cbc8;
    border-radius: 14px;
    background: #fefefe;
    color: #2c3a47;
}

.site-chat-input:focus {
    outline: 2px solid rgba(11, 122, 117, 0.18);
    border-color: #0b7a75;
}

.site-chat-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8773a 0%, #d86424 100%);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.site-chat-send--secondary {
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-chat-send:hover {
    filter: brightness(0.97);
}

.site-chat-send:disabled,
.site-chat-input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .site-chat {
        right: 0.75rem;
        bottom: 4.65rem;
        gap: 0.65rem;
    }

    .floating-actions {
        gap: 0.6rem;
    }

    .floating-action {
        width: 56px;
        height: 56px;
    }

    .floating-action__icon {
        width: 48px;
        height: 48px;
    }

    .site-chat-panel {
        width: min(100vw - 1.5rem, 420px);
        border-radius: 24px;
    }

    .site-chat-log {
        max-height: 48vh;
    }

    .site-chat-head {
        padding: 1rem;
    }

    .site-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .section {
        padding: 3.25rem 0;
    }

    main {
        padding-top: 72px;
    }

    .flash-banner {
        margin-top: 72px;
        padding: 0.7rem 0;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .brand strong {
        font-size: 24px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .site-nav {
        inset: 72px 0 0 0;
        padding: 1.2rem 1rem 1.4rem;
        gap: 0.85rem;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-nav .button,
    .site-nav__cta,
    .site-header__cta {
        width: 100%;
        max-width: none;
    }

    h1 {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
        line-height: 1.1;
    }

    h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 5vw, 1.45rem);
    }

    .hero-grid,
    .lead-grid,
    .site-footer__grid,
    .guide-feature-grid,
    .service-icon-grid,
    .card-grid,
    .trust-bar,
    .directory-search-row,
    .directory-filter-meta,
    .value-stack__grid,
    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .lead-strip__form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .lead-strip__form label,
    .lead-strip__form button {
        width: 100%;
        max-width: none;
    }

    .hero-section--reference {
        min-height: auto;
        padding-top: 78px;
        padding-bottom: 36px;
        background-position: 58% center;
    }

    .hero-reference__inner,
    .guide-hero__inner {
        min-height: auto;
    }

    .hero-reference__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-reference__copy {
        max-width: 34ch;
        margin-inline: auto;
        font-size: 1rem;
    }

    .hero-reference__actions {
        width: 100%;
    }

    .hero-reference__scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-panel,
    .lead-form,
    .guide-card,
    .info-card,
    .service-card,
    .blog-card,
    .directory-card,
    .trust-pill {
        padding: 1.1rem;
    }

    .lead-strip__form {
        max-width: 420px;
        margin-inline: auto;
    }

    .lead-strip__form button {
        min-height: 52px;
    }

    .directory-sticky-cta__inner {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
        text-align: center;
    }

    .directory-sticky-cta p {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: center;
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        padding: 0.65rem 1.5rem;
        font-size: 1rem;
    }

    .site-footer__grid {
        gap: 1.5rem;
    }

    .site-footer__bottom {
        text-align: center;
    }

    .testimonial-band__viewport {
        grid-auto-columns: 100%;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .testimonial-band__controls {
        display: none;
    }

    .testimonial-band__card {
        padding: 1.2rem;
    }

    .testimonial-band__icon {
        font-size: 3.6rem;
        line-height: 0.72;
    }

    .site-chat {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .site-chat-panel {
        width: 100%;
        border-radius: 24px;
    }

    .site-chat-log {
        max-height: 44vh;
    }

    .site-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-reference__actions .button,
    .lead-strip__form button,
    .site-nav .button,
    .site-nav__cta {
        min-height: 50px;
    }

    .guide-feature-card__body,
    .blog-card__body {
        padding: 1rem;
    }

    .directory-card {
        padding: 1.1rem;
    }
}


@media (max-width: 900px) {
    .directory-search-row {
        grid-template-columns: 1fr;
    }

    .directory-filter-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 901px) {
    .directory-sticky-cta__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 2rem;
        padding: 2rem 4rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: end;
        min-width: 12rem;
    }
}

@media (max-width: 900px) {
    .directory-sticky-cta__inner {
        grid-template-columns: 1fr;
        justify-items: stretch;
        padding: 1.5rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: center;
        width: auto;
        max-width: calc(100% - 0.25rem);
    }
}







/* UI refresh: lighter premium homepage and shared site surfaces */
:root {
    --primary-brand: #0f8b8d;
    --primary-dark: #0a6b6d;
    --light-brand-fill: #eef9f8;
    --page-background: #ffffff;
    --cta-accent: #e8773a;
    --body-text: #444444;
    --secondary-text: #5d6670;
    --nav-border: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius-card: 16px;
    --radius-button: 12px;
    --radius-input: 12px;
}

body,
.section--sand,
.section--accent,
.section--services,
.partner-strip,
.founder-strip--story {
    background: #ffffff;
}

.section {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

h1,
h2 {
    color: var(--primary-brand);
}

h3 {
    color: #18212b;
}

p,
li,
label,
input,
textarea,
select {
    color: var(--body-text);
}

.site-header,
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
}

.site-header--home,
.site-header--home.is-scrolled {
    background: #123247 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.brand strong,
.site-nav a:not(.button) {
    color: #222222;
}

.site-header--home .brand strong,
.site-header--home .brand small,
.site-header--home .site-nav a:not(.button) {
    color: #ffffff !important;
}

.site-nav {
    gap: 1.4rem;
}

.site-nav a:not(.button) {
    transition: color 0.2s ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-header--home .site-nav a:not(.button):hover,
.site-header--home .site-nav a:not(.button):focus-visible,
.text-link,
.text-link:hover,
.founder-story-link,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--primary-brand);
}

.menu-toggle,
.site-header--home .menu-toggle {
    background: #ffffff;
    border-color: var(--nav-border);
    color: #222222;
}

.menu-toggle span:not(.sr-only),
.site-header--home .menu-toggle span {
    background: #222222;
}

.button {
    background: var(--cta-accent);
    color: #ffffff;
    border: 1px solid var(--cta-accent);
    box-shadow: var(--shadow-soft);
}

.button:hover {
    background: #db6f34;
    border-color: #db6f34;
    filter: none;
}

.button--contact {
    background: #1AA3A3;
    border-color: #1AA3A3;
}

.button--outline-accent {
    background: transparent;
    color: var(--cta-accent);
    border: 1px solid var(--cta-accent);
    box-shadow: none;
    transition: all 0.2s ease;
}

.button--outline-accent:hover {
    background: var(--cta-accent);
    color: var(--white);
    border-color: var(--cta-accent);
}

.button--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: none;
}

.button--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 1);
}

.hero-section--reference {
    background:
        linear-gradient(180deg, rgba(4, 22, 36, 0.78) 0%, rgba(5, 32, 50, 0.72) 50%, rgba(6, 50, 70, 0.7) 100%),
        url('/media/hero/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-section--reference::before {
    background:
        radial-gradient(circle at 50% 88%, rgba(15, 139, 141, 0.16) 0%, rgba(15, 139, 141, 0) 36%);
}

.hero-reference__content {
    max-width: 840px;
}

.hero-reference__eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.hero-section--reference h1 {
    color: #ffffff;
    text-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading--narrow h2,
#guides .section-heading h2 {
    max-width: 22ch;
}

#why-settleanz .section-heading h2 {
    max-width: min(100%, 52ch);
    margin-left: auto;
    margin-right: auto;
}

.card-grid,
.guide-feature-grid,
.service-icon-grid {
    gap: clamp(1.25rem, 2.2vw, 1.9rem);
}

.info-card,
.info-card--audience,
.service-icon-card,
.guide-feature-card,
.lead-form,
.contact-panel,
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-card,
.info-card--audience,
.service-icon-card,
.guide-feature-card__body {
    padding: 1.5rem;
}

.info-card--audience,
.service-icon-card {
    overflow: visible;
}

.info-card--audience::after,
.service-icon-card::after {
    display: none;
}

.info-card__icon,
.service-icon-card__icon {
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 999px;
    background: var(--light-brand-fill);
    color: var(--primary-brand);
    box-shadow: none;
}

.info-card__icon::before,
.service-icon-card__icon::before,
.info-card__icon::after,
.service-icon-card__icon::after {
    display: none;
}

.info-card__icon svg,
.service-icon-card__icon svg {
    width: 24px;
    height: 24px;
    filter: none;
}

.service-icon-card {
    min-height: 190px;
    gap: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-icon-card:hover,
.info-card--audience:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 139, 141, 0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.service-icon-card:hover .service-icon-card__icon,
.info-card--audience:hover .info-card__icon {
    transform: none;
    box-shadow: none;
}

.service-icon-card span,
.guide-feature-card__body h3 {
    color: #18212b;
}

.guide-feature-card {
    overflow: hidden;
}

.guide-feature-card__tag,
.eyebrow {
    color: var(--primary-brand);
}

.guide-feature-card__image--teal,
.guide-feature-card__image--sand,
.guide-feature-card__image--slate {
    background: linear-gradient(135deg, #f7fbfb 0%, #edf6f6 100%);
}

.partner-strip {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.partner-strip__viewport::before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-strip__viewport::after {
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-strip__logo {
    min-width: clamp(110px, 12vw, 156px);
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.partner-strip__logo img {
    opacity: 0.64;
}

.lead-strip {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.lead-strip__copy h2 {
    color: var(--primary-brand);
}

.lead-strip__copy p {
    color: var(--secondary-text);
}

.lead-strip__form input {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
}

.lead-strip__form input:focus {
    outline: 2px solid rgba(15, 139, 141, 0.14);
    border-color: rgba(15, 139, 141, 0.36);
}

.founder-strip {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.founder-strip--story {
    background: transparent;
}

.founder-strip__story-grid {
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 24px;
    background: linear-gradient(135deg, #0f8b8d 0%, #0a6b6d 100%);
    color: #ffffff;
}

.founder-story-copy h2,
.founder-story-copy p,
.founder-story-link {
    color: #ffffff;
}

.founder-photo-ring {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.site-footer {
    background: linear-gradient(180deg, #0f8b8d 0%, #0a6b6d 100%);
    color: #ffffff;
}

.site-footer .site-footer__bottom {
    background: #123247 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1rem 0;
}

.site-footer__grid {
    display: grid !important;
    grid-template-columns: minmax(220px, 1.15fr) minmax(132px, 0.55fr) minmax(260px, 0.78fr) minmax(280px, 1fr) !important;
    column-gap: clamp(1.25rem, 2.5vw, 2rem) !important;
    row-gap: 2.25rem !important;
    padding: 56px 0 36px;
}

.site-footer__grid > div {
    min-width: 0;
}

.site-footer h3,
.site-footer p,
.site-footer ul,
.site-footer a,
.site-footer__bottom {
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1279px) {
    .site-nav,
    .site-header--home .site-nav {
        background: #ffffff;
    }

    .site-nav a:not(.button),
    .site-header--home .site-nav a:not(.button) {
        color: #222222;
    }
}






/* Header CTA alignment refinement */
@media (min-width: 1025px) {
    .site-header__inner {
        grid-template-columns: max-content minmax(0, 1fr) max-content;
    }

    .site-nav {
        width: 100%;
        max-width: 760px;
        margin-inline: auto;
        justify-content: center;
    }

    .site-header__cta {
        justify-self: end;
        margin-left: 1.5rem;
    }
}

/* Homepage empathy section */
.empathy-section {
    background: #ffffff;
}

.empathy-section__heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.empathy-section__heading h2 {
    max-width: 18ch;
    margin-inline: auto;
}

.empathy-section__intro {
    max-width: 60ch;
    margin: 1rem auto 0;
    color: var(--secondary-text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.empathy-card {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    min-height: 100%;
}

.empathy-card__media {
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(160deg, rgba(15, 139, 141, 0.12), rgba(15, 139, 141, 0.02)),
        linear-gradient(135deg, #f7fbfb 0%, #edf6f6 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
}

.empathy-card__media::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px dashed rgba(15, 139, 141, 0.28);
    border-radius: 16px;
}

.empathy-card__media-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.empathy-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.empathy-card__body h3 {
    margin: 0;
    color: #18212b;
    font-size: 1.4rem;
}

.empathy-card__points {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.empathy-card__points li {
    position: relative;
    padding-left: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.empathy-card__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary-brand);
}

.empathy-card__cta {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 1279px) {
    .empathy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .empathy-card {
        grid-template-columns: 1fr;
    }

    .empathy-card__media {
        min-height: 180px;
    }

    .empathy-card__body {
        padding: 1.25rem;
        text-align: center;
        align-items: center;
    }

    .empathy-card__points {
        text-align: center;
    }

    .empathy-card__points li {
        padding-left: 0;
    }

    .empathy-card__points li::before {
        display: none;
    }

    .empathy-card__cta {
        width: 100%;
        align-self: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .section {
        padding: 3rem 0;
    }

    main {
        padding-top: 78px;
    }

    .flash-banner {
        margin-top: 78px;
        padding: 0.7rem 0;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand strong {
        font-size: 24px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .site-nav {
        inset: 78px 0 0 0;
        padding: 1.1rem 1rem 1.35rem;
        gap: 0.85rem;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-nav .button,
    .site-nav__cta,
    .site-header__cta {
        width: 100%;
        max-width: none;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.18rem, 5vw, 1.4rem);
    }

    .hero-grid,
    .lead-grid,
    .site-footer__grid,
    .guide-feature-grid,
    .service-icon-grid,
    .card-grid,
    .trust-bar,
    .directory-search-row,
    .directory-filter-meta,
    .value-stack__grid,
    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .lead-strip__form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .lead-strip__form label,
    .lead-strip__form button {
        width: 100%;
        max-width: none;
    }

    .hero-section--reference {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 120px;
        background-position: 58% center;
    }

    .hero-reference__inner,
    .guide-hero__inner {
        min-height: auto;
    }

    .hero-reference__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-reference__copy,
    .guide-hero__copy {
        max-width: 34ch;
        margin-inline: auto;
        font-size: 1rem;
    }

    .hero-reference__actions {
        width: 100%;
    }

    .hero-reference__scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-panel,
    .lead-form,
    .guide-card,
    .info-card,
    .service-card,
    .blog-card,
    .directory-card,
    .trust-pill {
        padding: 1.1rem;
    }

    .lead-strip__form {
        max-width: 420px;
        margin-inline: auto;
    }

    .lead-strip__form button {
        min-height: 52px;
    }

    .directory-sticky-cta__inner {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: center;
        width: auto !important;
        max-width: calc(100% - 0.25rem);
    }

    .site-footer__grid {
        gap: 1.5rem;
    }

    .site-footer__bottom {
        text-align: center;
    }

    .testimonial-band__viewport {
        grid-auto-columns: 100%;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .testimonial-band__controls {
        display: none;
    }

    .testimonial-band__card {
        padding: 1.1rem;
    }

    .testimonial-band__icon {
        font-size: 3.2rem;
        line-height: 0.72;
    }

    .value-stack__card {
        padding: 1.35rem 1.1rem 1.25rem;
    }

    .value-stack__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.2rem 1.1rem;
    }

    .value-stack__cta .button {
        width: 100%;
        min-width: 0;
    }

    .empathy-section--inline .empathy-section__heading {
        margin-bottom: 3rem;
    }

    .empathy-section--inline .empathy-section__intro {
        font-size: 1rem;
    }

    .empathy-section--inline .empathy-card {
        grid-template-columns: 1fr;
    }

    .empathy-section--inline .empathy-card__media {
        min-height: 200px;
    }

    .empathy-section--inline .empathy-card__body {
        text-align: center;
        align-items: center;
    }

    .empathy-section--inline .empathy-card__points {
        text-align: center;
    }

    .empathy-section--inline .empathy-card__points li {
        padding-left: 0;
    }

    .empathy-section--inline .empathy-card__points li::before {
        display: none;
    }

    .empathy-section--inline .empathy-card__footer {
        flex-direction: column;
        align-items: center;
    }

    .empathy-section--inline .empathy-card__cta {
        width: 100%;
        align-self: center;
    }

    .founder-strip__story-grid {
        gap: 3.5rem;
    }

    .founder-story-copy h2 {
        padding-top: 1.5rem;
    }

    .site-chat {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .site-chat-panel {
        width: 100%;
        border-radius: 24px;
    }

    .site-chat-log {
        max-height: 44vh;
    }

    .site-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-reference__actions .button,
    .lead-strip__form button,
    .site-nav .button,
    .site-nav__cta {
        min-height: 50px;
    }

    .guide-feature-card__body,
    .blog-card__body {
        padding: 1rem;
    }

    .directory-card {
        padding: 1.1rem;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .section {
        padding: 3rem 0;
    }

    main {
        padding-top: 78px;
    }

    .flash-banner {
        margin-top: 78px;
        padding: 0.7rem 0;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand strong {
        font-size: 24px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .site-nav {
        inset: 78px 0 0 0;
        padding: 1.1rem 1rem 1.35rem;
        gap: 0.85rem;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-nav .button,
    .site-nav__cta,
    .site-header__cta {
        width: 100%;
        max-width: none;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.18rem, 5vw, 1.4rem);
    }

    .hero-grid,
    .lead-grid,
    .site-footer__grid,
    .guide-feature-grid,
    .service-icon-grid,
    .card-grid,
    .trust-bar,
    .directory-search-row,
    .directory-filter-meta,
    .value-stack__grid,
    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .lead-strip__form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .lead-strip__form label,
    .lead-strip__form button {
        width: 100%;
        max-width: none;
    }

    .hero-section--reference {
        min-height: auto;
        padding-top: 78px;
        padding-bottom: 36px;
        background-position: 58% center;
    }

    .hero-reference__copy,
    .guide-hero__copy {
        max-width: 34ch;
    }

    .hero-reference__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-reference__copy,
    .guide-hero__copy {
        max-width: 34ch;
        margin-inline: auto;
        font-size: 1rem;
    }

    .hero-reference__actions {
        width: 100%;
    }

    .hero-reference__scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-panel,
    .lead-form,
    .guide-card,
    .info-card,
    .service-card,
    .blog-card,
    .directory-card,
    .trust-pill {
        padding: 1.1rem;
    }

    .lead-strip__form {
        max-width: 420px;
        margin-inline: auto;
    }

    .lead-strip__form button {
        min-height: 52px;
    }

    .directory-sticky-cta__inner {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: center;
        width: auto !important;
        max-width: calc(100% - 0.25rem);
    }

    .site-footer__grid {
        gap: 1.5rem;
    }

    .site-footer__bottom {
        text-align: center;
    }

    .testimonial-band__viewport {
        grid-auto-columns: 100%;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .testimonial-band__controls {
        display: none;
    }

    .testimonial-band__card {
        padding: 1.1rem;
    }

    .testimonial-band__icon {
        font-size: 3.2rem;
        line-height: 0.72;
    }

    .value-stack__card {
        padding: 1.35rem 1.1rem 1.25rem;
    }

    .value-stack__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.2rem 1.1rem;
    }

    .value-stack__cta .button {
        width: 100%;
        min-width: 0;
    }

    .empathy-section--inline .empathy-section__heading {
        margin-bottom: 3rem;
    }

    .empathy-section--inline .empathy-section__intro {
        font-size: 1rem;
    }

    .empathy-section--inline .empathy-card {
        grid-template-columns: 1fr;
    }

    .empathy-section--inline .empathy-card__media {
        min-height: 200px;
    }

    .empathy-section--inline .empathy-card__body {
        text-align: center;
        align-items: center;
    }

    .empathy-section--inline .empathy-card__points {
        text-align: center;
    }

    .empathy-section--inline .empathy-card__points li {
        padding-left: 0;
    }

    .empathy-section--inline .empathy-card__points li::before {
        display: none;
    }

    .empathy-section--inline .empathy-card__footer {
        flex-direction: column;
        align-items: center;
    }

    .empathy-section--inline .empathy-card__cta {
        width: 100%;
        align-self: center;
    }

    .founder-strip__story-grid {
        gap: 3.5rem;
    }

    .founder-story-copy h2 {
        padding-top: 1.5rem;
    }

    .site-chat {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .site-chat-panel {
        width: 100%;
        border-radius: 24px;
    }

    .site-chat-log {
        max-height: 44vh;
    }

    .site-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-reference__actions .button,
    .lead-strip__form button,
    .site-nav .button,
    .site-nav__cta {
        min-height: 50px;
    }

    .guide-feature-card__body,
    .blog-card__body {
        padding: 1rem;
    }

    .directory-card {
        padding: 1.1rem;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .section {
        padding: 3.25rem 0;
    }

    main {
        padding-top: 78px;
    }

    .flash-banner {
        margin-top: 78px;
        padding: 0.7rem 0;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand strong {
        font-size: 24px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .site-nav {
        inset: 78px 0 0 0;
        padding: 1.2rem 1rem 1.4rem;
        gap: 0.85rem;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-nav .button,
    .site-nav__cta,
    .site-header__cta {
        width: 100%;
        max-width: none;
    }

    h1 {
        font-size: clamp(2.1rem, 10vw, 2.65rem);
        line-height: 1.1;
    }

    h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 5vw, 1.45rem);
    }

    .hero-grid,
    .lead-grid,
    .site-footer__grid,
    .guide-feature-grid,
    .service-icon-grid,
    .card-grid,
    .trust-bar,
    .directory-search-row,
    .directory-filter-meta,
    .value-stack__grid,
    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .lead-strip__form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .lead-strip__form label,
    .lead-strip__form button {
        width: 100%;
        max-width: none;
    }

    .hero-section--reference {
        min-height: auto;
        padding-top: 78px;
        padding-bottom: 36px;
        background-position: 58% center;
    }

    .hero-reference__copy,
    .guide-hero__copy {
        max-width: 34ch;
    }

    .hero-reference__content {
        max-width: 100%;
        text-align: center;
    }

    .hero-reference__copy,
    .guide-hero__copy {
        max-width: 34ch;
        margin-inline: auto;
        font-size: 1rem;
    }

    .hero-reference__actions {
        width: 100%;
    }

    .hero-reference__scroll {
        display: none;
    }

    .section-heading {
        margin-bottom: 1.5rem;
    }

    .section-heading p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-panel,
    .lead-form,
    .guide-card,
    .info-card,
    .service-card,
    .blog-card,
    .directory-card,
    .trust-pill {
        padding: 1.1rem;
    }

    .lead-strip__form {
        max-width: 420px;
        margin-inline: auto;
    }

    .lead-strip__form button {
        min-height: 52px;
    }

    .directory-sticky-cta__inner {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        justify-self: center;
        width: auto !important;
        max-width: calc(100% - 0.25rem);
    }

    .site-footer__grid {
        gap: 1.5rem;
    }

    .site-footer__bottom {
        text-align: center;
    }

    .testimonial-band__viewport {
        grid-auto-columns: 100%;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .testimonial-band__controls {
        display: none;
    }

    .testimonial-band__card {
        padding: 1.1rem;
    }

    .testimonial-band__icon {
        font-size: 3.6rem;
        line-height: 0.72;
    }

    .site-chat {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .site-chat-panel {
        width: 100%;
        border-radius: 24px;
    }

    .site-chat-log {
        max-height: 44vh;
    }

    .site-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-reference__actions .button,
    .lead-strip__form button,
    .site-nav .button,
    .site-nav__cta {
        min-height: 50px;
    }

    .guide-feature-card__body,
    .blog-card__body {
        padding: 1rem;
    }

    .directory-card {
        padding: 1.1rem;
    }
}

/* Empathy cards: travel-card style refinement */
.empathy-section {
    position: relative;
}

.empathy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(242, 125, 43, 0.09) 0 1px, transparent 1px),
        radial-gradient(circle at 88% 12%, rgba(242, 125, 43, 0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 10% 88%, rgba(242, 125, 43, 0.08) 0 1px, transparent 1px);
    background-size: 14px 14px, 16px 16px, 14px 14px;
    pointer-events: none;
    opacity: 0.45;
}

.empathy-section .container {
    position: relative;
    z-index: 1;
}

.empathy-grid {
    gap: 1.35rem;
}

.empathy-card {
    grid-template-columns: minmax(250px, 44%) minmax(0, 56%);
    align-items: stretch;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.empathy-card__media {
    min-height: 248px;
    padding: 0.9rem;
    align-items: flex-start;
    justify-content: flex-end;
}

.empathy-card__media::before {
    inset: 0.9rem;
    border: 0;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(15, 139, 141, 0.08), rgba(242, 125, 43, 0.08));
}

.empathy-card__media-badge {
    font-size: 0.72rem;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.empathy-card__body {
    gap: 0.8rem;
    padding: 1rem 1.1rem 1.05rem;
}

.empathy-card__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    color: #2454a6;
    font-size: 0.88rem;
    font-weight: 600;
}

.empathy-card__kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2454a6;
    box-shadow: 0 0 0 4px rgba(36, 84, 166, 0.12);
}

.empathy-card__body h3 {
    font-size: 1.55rem;
    line-height: 1.25;
}

.empathy-card__points {
    gap: 0.65rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.empathy-card__points li {
    padding-left: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.empathy-card__points li::before {
    display: none;
}

.empathy-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.empathy-card__cta {
    align-self: auto;
    margin-top: 0;
    min-height: 50px;
    padding-inline: 1.2rem;
    white-space: nowrap;
    border-radius: 999px;
}

@media (max-width: 767px) {
    .empathy-card {
        grid-template-columns: 1fr;
    }

    .empathy-card__media {
        min-height: 200px;
    }

    .empathy-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .empathy-card__cta {
        width: 100%;
    }
}

/* ========================================================================
   RESPONSIVE SAFETY NET — applied last so it wins specificity where needed.
   Scope: all pages. Goal: zero horizontal scroll, fluid media, readable
   typography, stacked controls, sane spacing at every viewport.
   ======================================================================== */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

img, video, picture, svg, canvas, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Prevent long URLs / unbroken strings from blowing out layouts */
p, li, h1, h2, h3, h4, h5, h6, a, blockquote, cite {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

pre, code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.hero-grid > *,
.lead-grid > *,
.guide-feature-grid > *,
.service-icon-grid > *,
.card-grid > *,
.empathy-grid > *,
.value-stack__grid > *,
.site-footer__grid > *,
.article-body-v2__layout > * {
    min-width: 0;
}

/* ========================================================================
   DIRECTORY DETAIL PAGE - Yelp-style Professional Layout
   ======================================================================== */

/* Hero Section */
.directory-detail-hero {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.directory-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.directory-detail-hero .container {
    position: relative;
    z-index: 1;
}

.hero-breadcrumb {
    margin-bottom: 1.5rem;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brand);
}

.category-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--cta-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-large .stars {
    display: flex;
    gap: 2px;
}

.rating-large .star {
    font-size: 1.25rem;
    color: #ddd;
}

.rating-large .star.filled {
    color: #f5a623;
}

.rating-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.rating-large .review-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.5rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* Main Content Layout */
.directory-detail-main {
    padding: 2.5rem 0 4rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: flex-start;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.content-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--body-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-content {
    line-height: 1.75;
    color: var(--secondary-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--light-brand-fill);
    border-radius: 8px;
    font-size: 0.95rem;
}

.service-item svg {
    color: var(--primary-brand);
    flex-shrink: 0;
}

/* Reviews Section */
.reviews-section {
    background: white;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.reviews-header h2 svg {
    color: #f5a623;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-rating {
    font-size: 2rem;
    font-weight: 700;
    color: var(--body-text);
}

.summary-stars {
    display: flex;
    gap: 2px;
}

.summary-stars .star {
    font-size: 1.1rem;
    color: #ddd;
}

.summary-stars .star.filled {
    color: #f5a623;
}

.summary-count {
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.review-card {
    padding: 1.25rem;
    background: var(--page-background);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--body-text);
}

.review-date {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 0.95rem;
    color: #ddd;
}

.review-rating .star.filled {
    color: #f5a623;
}

.review-comment {
    line-height: 1.65;
    color: var(--body-text);
}

.no-reviews {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--secondary-text);
}

.no-reviews svg {
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-reviews p {
    font-size: 1rem;
}

/* Write Review Section */
.write-review-section {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.write-review-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--body-text);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: var(--radius-input);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brand);
    box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.star-rating-input {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-btn {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ddd;
    padding: 0.25rem;
    transition: color 0.15s, transform 0.1s;
}

.star-btn:hover,
.star-btn.hovered,
.star-btn.selected {
    color: #f5a623;
}

.star-btn:hover {
    transform: scale(1.1);
}

.rating-label {
    margin-left: 0.75rem;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

.error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Location Section */
.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-info svg {
    color: var(--primary-brand);
}

.map-placeholder {
    background: var(--light-brand-fill);
    border-radius: 10px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--secondary-text);
}

.map-content svg {
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--body-text);
}

.sidebar-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--body-text);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--page-background);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: var(--light-brand-fill);
}

.contact-btn svg {
    color: var(--primary-brand);
    flex-shrink: 0;
}

.contact-btn--whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn--whatsapp:hover {
    background: #20bd5a;
}

.contact-btn--whatsapp svg {
    color: white;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.stat-item {
    text-align: center;
    padding: 0.75rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brand);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--page-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text);
    transition: background 0.2s, color 0.2s;
}

.share-btn:hover {
    background: var(--primary-brand);
    color: white;
}

/* Alert */
.alert {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.alert--success {
    background: #d4edda;
    color: #155724;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
}

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

.btn--primary {
    background: var(--cta-accent);
    color: white;
}

.btn--primary:hover {
    background: #d66a30;
}

.btn--large {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto;
    }
}

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

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-sidebar .btn--full {
        width: 100%;
    }
}

/* ========================================================================
   ADMIN REVIEWS STYLES
   ======================================================================== */

.admin-filters {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-card);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.filters-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: var(--radius-input);
    font-size: 0.9rem;
    min-width: 150px;
}

.btn--secondary {
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-button);
    font-size: 0.9rem;
    text-decoration: none;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(11, 122, 117, 0.08);
    word-wrap: break-word;
}

.admin-table th:first-child,
.admin-table td:first-child {
    white-space: normal;
}

.admin-table th {
    background: #f7fbfd;
    color: #12384f;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.admin-table tr:hover {
    background: #f9fafb;
}

.admin-table td strong,
.admin-table td small {
    display: block;
}

.admin-table td small {
    margin-top: 0.25rem;
    color: #667788;
    font-size: 0.82rem;
}

.admin-table .text-muted {
    display: block;
    font-size: 0.82rem;
    color: #667788;
}

.admin-table-card {
    overflow-x: auto;
    padding: 0;
    width: 100%;
}

.admin-table-card > *:not(table) {
    padding-left: 1rem;
    padding-right: 1rem;
}

.admin-badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #e8f5f4;
    color: #0b7a75;
    font-size: 0.75rem;
    font-weight: 600;
}

.row--pending {
    background: rgba(251, 191, 36, 0.05);
}

.rating-display {
    display: flex;
    gap: 2px;
}
}

.rating-display .star {
    color: #d1d5db;
    font-size: 0.95rem;
}

.rating-display .star.filled {
    color: #f59e0b;
}

.comment-cell {
    max-width: 200px;
}

.comment-preview {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
}

.inline-form {
    display: inline;
}

.btn--small {
    padding: 0.4rem 0.6rem;
}

.btn--success {
    background: #28a745;
    color: white;
}

.btn--warning {
    background: #ffc107;
    color: #212529;
}

.btn--danger {
    background: #dc3545;
    color: white;
}

.empty-state {
    text-align: center;
    color: var(--secondary-text);
    padding: 3rem !important;
}

.pagination-wrapper {
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .container {
        padding-inline: clamp(1rem, 3vw, 1.5rem);
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 1rem;
    }

    main,
    header,
    footer {
        max-width: 100vw;
    }

    /* Note: do NOT clip section overflow here — internal carousels
       (testimonials, partners) rely on overflow:auto scroll containers. */
    section,
    .section {
        max-width: 100%;
    }

    .partner-strip__viewport,
    .testimonial-band__viewport {
        max-width: 100%;
    }

    .hero-section,
    .hero-section--reference,
    .hero-section--image {
        background-attachment: scroll !important;
    }

    h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); line-height: 1.1; }
    h2 { font-size: clamp(1.5rem, 6.2vw, 2rem); line-height: 1.18; }
    h3 { font-size: clamp(1.2rem, 5vw, 1.4rem); line-height: 1.25; }

    .hero-reference__actions,
    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }
    .hero-reference__actions .button,
    .hero-actions .button {
        width: 100%;
        max-width: 100%;
    }

    .guide-feature-grid {
        grid-template-columns: 1fr !important;
    }

    .value-stack__cta .button {
        min-width: 0;
        width: 100%;
    }

    .partner-strip {
        padding: 1.5rem 0;
    }
    .partner-strip__logo img {
        max-height: 38px;
        width: auto;
    }
    /* Mobile: remove card style on partner logos — plain logos only */
    .partner-strip__logo {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0.5rem 0.75rem !important;
        min-width: auto !important;
        min-height: auto !important;
    }

    /* Blog index — mobile fixes: 1 column grid + dropdown filter (chip bar hidden) */
    .blog-grid,
    .blog-grid--v2 {
        grid-template-columns: 1fr !important;
        gap: 1.1rem !important;
    }

    .blog-card,
    .blog-card--v2 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .blog-filter-bar,
    .blog-filter-bar--v2 {
        display: none !important;
    }

    .blog-filter-select-wrap {
        display: flex !important;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 0 0 1.5rem !important;
        background: #ffffff;
        border: 1px solid rgba(25, 96, 104, 0.18);
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    }

    .blog-filter-select-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 0.4rem 0 0.95rem;
        color: var(--primary-brand);
    }

    .blog-filter-select {
        flex: 1 1 auto;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent;
        border: 0;
        outline: 0;
        padding: 0.95rem 2.4rem 0.95rem 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-dark);
        cursor: pointer;
        line-height: 1.2;
    }

    .blog-filter-select-caret {
        position: absolute;
        right: 0.85rem;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: var(--primary-dark);
        display: inline-flex;
    }

    .blog-filter-select:focus-visible {
        outline: 2px solid var(--primary-brand);
        outline-offset: 2px;
        border-radius: 14px;
    }
}

.blog-filter-select-wrap {
    display: none;
}

@media (min-width: 768px) {
    .blog-filter-select-wrap {
        display: none !important;
    }
}

@media (max-width: 767px) {

    /* Lead modal close (×) — keep above content, visible, no overlap with eyebrow */
    .lead-modal__dialog {
        padding: 1.5rem 1.25rem !important;
        padding-top: 3.25rem !important;
        width: min(100%, 100vw - 1.5rem) !important;
        max-width: calc(100vw - 1.5rem) !important;
    }

    .lead-modal__dialog .eyebrow {
        max-width: calc(100% - 3rem);
    }

    .lead-modal__close {
        top: 0.6rem !important;
        right: 0.6rem !important;
        width: 38px !important;
        height: 38px !important;
        background: #ffffff !important;
        border: 1px solid rgba(11, 122, 117, 0.25) !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12) !important;
        z-index: 10 !important;
        font-size: 22px !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Force section headings to use full container width on mobile.
       Overrides desktop rules that cap them at 18ch / 22ch / 24ch. */
    .section-heading,
    .section-heading--narrow,
    .section-heading--narrow h2,
    .empathy-section__heading,
    .empathy-section__heading h2,
    .empathy-section--inline .empathy-section__heading,
    .empathy-section--inline .empathy-section__heading h2,
    #why-settleanz .section-heading,
    #why-settleanz .section-heading h2,
    #guides .section-heading,
    #guides .section-heading h2,
    .testimonial-band__heading,
    .testimonial-band__heading h2,
    .value-stack__heading,
    .value-stack__heading h2 {
        max-width: 100% !important;
        width: 100% !important;
    }

    .lead-strip__form {
        width: 100%;
        max-width: 100%;
    }
    .lead-strip__form label,
    .lead-strip__form input,
    .lead-strip__form button {
        width: 100%;
    }

    /* ============================================================
       MOBILE FOOTER REDESIGN — single column, all centered, padded
       ============================================================ */
    .site-footer {
        padding: 2.5rem 0 0;
        text-align: center;
    }

    .site-footer__grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 2.25rem !important;
        padding: 0 1.25rem 2rem !important;
        text-align: center;
    }

    .site-footer__grid > div {
        width: 100%;
        text-align: center;
    }

    .site-footer h3 {
        margin: 0 0 0.85rem;
        font-size: 1.05rem;
        text-align: center;
    }

    .site-footer p,
    .site-footer ul,
    .site-footer li,
    .site-footer a {
        text-align: center;
    }

    .site-footer ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        align-items: center;
    }

    .site-footer ul li {
        margin: 0;
    }

    .site-footer .social-row {
        justify-content: center !important;
        gap: 0.65rem;
        margin-top: 1rem;
    }

    .site-footer .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        max-width: 320px;
        margin: 0 auto;
        align-items: stretch;
    }

    .site-footer .subscribe-form label,
    .site-footer .subscribe-form input,
    .site-footer .subscribe-form button {
        width: 100%;
        max-width: 100%;
    }

    .footer-whatsapp {
        display: inline-block;
        margin-top: 0.85rem;
        text-align: center;
    }

    .footer-contact-list {
        list-style: none;
        margin: 1rem 0 0;
        padding: 0;
        display: grid;
        gap: 0.5rem;
    }

    .footer-contact-list li,
    .footer-contact-list li span {
        color: #ffffff;
    }

    .footer-contact-list li:first-child > span:last-child::before {
        color: #ffffff;
    }

    .footer-contact-list a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.94);
        text-decoration: none;
    }

    .footer-contact-list a:hover,
    .footer-contact-list a:focus-visible {
        color: #ffffff;
    }

    .footer-icon {
        font-size: 0;
        line-height: 1;
    }

    .site-footer__bottom {
        padding: 1.25rem 1.25rem 1.5rem;
        text-align: center;
    }

    .site-footer__bottom-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.65rem;
        align-items: center !important;
        text-align: center;
    }

    .site-footer__bottom-inner p {
        margin: 0;
        font-size: 0.85rem;
    }

    .site-footer__bottom-inner > div {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .article-body-v2__layout {
        display: block;
    }
    .article-content-v2,
    .article-sidebar-v2 {
        width: 100%;
        max-width: 100%;
    }

    .lead-modal,
    .modal,
    [role="dialog"] {
        max-width: calc(100vw - 1.5rem);
    }

    .directory-sticky-cta__inner {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .directory-sticky-cta .directory-sticky-cta__action {
        width: auto !important;
        max-width: calc(100% - 0.25rem);
        justify-self: center;
    }
}

@media (max-width: 390px) {
    .container {
        padding-inline: 0.85rem;
    }

    .section {
        padding: 2.75rem 0;
    }

    h1 { font-size: clamp(1.65rem, 7.8vw, 2rem); }
    h2 { font-size: clamp(1.35rem, 6.4vw, 1.75rem); }

    .button,
    .button--large {
        font-size: 0.92rem;
        padding-inline: 1rem;
    }

    .brand strong {
        font-size: 20px;
    }
}

/* Pro Select Custom Dropdown */
.pro-select-wrapper {
    position: relative;
    width: 100%;
}

.pro-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pro-select-display {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 1px solid rgba(16, 88, 98, 0.16);
    border-radius: 6px;
    background: #fff;
    color: #2c3a47;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    min-height: 38px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.pro-select-display::after {
    content: '';
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23065e5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s;
}

.pro-select-wrapper.is-open .pro-select-display {
    border-color: #0b7a75;
    box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.1);
}

.pro-select-wrapper.is-open .pro-select-display::after {
    transform: translateY(-50%) rotate(180deg);
}

.pro-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(16, 88, 98, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(6, 54, 52, 0.12);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    max-height: 280px;
    overflow-y: auto;
}

.pro-select-wrapper.is-open .pro-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pro-select-option {
    padding: 0.85rem 1.1rem;
    color: #2c3a47;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.pro-select-option:first-child {
    border-radius: 11px 11px 0 0;
}

.pro-select-option:last-child {
    border-radius: 0 0 11px 11px;
}

.pro-select-option:hover,
.pro-select-option.is-selected {
    background: #0b7a75;
    color: #fff;
}

.pro-select-option.is-selected {
    font-weight: 600;
}

/* ==========================================================================
   Review Success Modal
   ========================================================================== */

.review-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.review-success-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.review-success-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

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

.review-success-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b7a75;
}

.review-success-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b7a75;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.review-success-modal__message {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

.review-success-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.5rem;
    background: #0b7a75;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(11, 122, 117, 0.3);
}

.review-success-modal__button:hover {
    background: #095c58;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 122, 117, 0.4);
}

.review-success-modal__button:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .review-success-modal {
        padding: 1rem;
    }

    .review-success-modal__content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .review-success-modal__icon {
        width: 64px;
        height: 64px;
    }

    .review-success-modal__icon svg {
        width: 28px;
        height: 28px;
    }

    .review-success-modal__title {
        font-size: 1.35rem;
    }

    .review-success-modal__message {
        font-size: 0.95rem;
    }

    .review-success-modal__button {
        width: 100%;
        padding: 1rem;
    }
}

/* Mobile Responsive Lead Modal */
@media (max-width: 640px) {
    .lead-modal {
        z-index: 10010;
        padding: 0.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    .lead-modal__backdrop {
        z-index: 10009;
    }

    .lead-modal__dialog {
        position: relative;
        z-index: 10011;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.25rem;
        margin: 1rem 0;
        border-radius: 12px;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }

    .lead-modal__header h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .lead-modal__subtitle {
        font-size: 0.95rem;
    }

    .lead-form--modal .lead-form__field {
        margin-bottom: 0.85rem;
    }

    .lead-form--modal .lead-form__field label {
        font-size: 0.9rem;
    }

    .lead-form--modal input,
    .lead-form--modal textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }

    .lead-form--modal .button--large {
        padding: 0.95rem 1rem;
        font-size: 1rem;
    }

    .lead-form__hint {
        font-size: 0.8rem;
    }
}

