/* ============================================
   Components — Swipetify
   Reusable UI component styles
   ============================================ */

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-body-sm);
    line-height: 1;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(var(--color-primary-rgb), 0.2);
}

.btn-secondary {
    background: transparent;
    color: #111111;
    border: 1.5px solid #E4E9EF;
}

.btn-secondary:hover {
    background: #F1F4F7;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-text {
    background: transparent;
    color: var(--color-accent);
    padding: 0;
    gap: var(--space-2);
    font-weight: 600;
}

.btn-text:hover {
    gap: var(--space-3);
}

.btn-text .btn__arrow {
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn-text:hover .btn__arrow {
    transform: translateX(4px);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* ============================================================
   NAV — floating pill
   ============================================================ */
.nav-host {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1900;
    display: flex;
    justify-content: center;
    padding: 18px 24px;
    transition: padding .5s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
}

.nav-host.docked {
    padding-top: 12px;
}

.nav {
    pointer-events: auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 8px 10px 4px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    transition: max-width .55s cubic-bezier(.16, 1, .3, 1), padding .45s cubic-bezier(.16, 1, .3, 1),
        background .35s cubic-bezier(.16, 1, .3, 1), border-color .35s cubic-bezier(.16, 1, .3, 1),
        box-shadow .45s cubic-bezier(.16, 1, .3, 1), backdrop-filter .35s cubic-bezier(.16, 1, .3, 1);
}

.nav-host.docked .nav {
    max-width: 980px;
    padding: 8px 8px 8px 18px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(228, 233, 239, .9);
    box-shadow: 0 10px 34px rgba(10, 22, 40, .09), 0 2px 6px rgba(10, 22, 40, .05);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Degular", sans-serif;
    font-weight: 800;
    font-size: 1.06rem;
    letter-spacing: -.03em;
    color: #111;
    cursor: pointer;
    padding: 6px 12px;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.16, 1, .3, 1);
}

.logo:hover {
    opacity: .72;
}

.logo-mark {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--color-primary);
    display: grid;
    place-items: center;
    box-shadow: 0 3px 8px rgba(6, 145, 95, .3);
}

.logo-mark svg {
    width: 15px;
    height: 15px;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: .885rem;
    font-weight: 600;
    color: #4A5A6E;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.nav-links a:hover {
    color: #111;
    background: #F1F4F7;
}

.nav-links a.on {
    color: var(--color-primary);
    background: #E7F8F0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons inside the new nav */
.btn-quiet {
    background: transparent;
    color: #4A5A6E;
    padding: 10px 14px;
    border-radius: 999px;
    font-family: "Degular", sans-serif;
    font-weight: 700;
    font-size: .9rem;
    transition: color .2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-quiet:hover {
    color: var(--color-primary);
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E4E9EF;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 17px;
    height: 1.8px;
    background: #111;
    border-radius: 2px;
    transition: transform .32s ease, opacity .2s ease;
}

.burger span+span {
    margin-top: 4px;
}

.drawer {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    z-index: 1890;
    padding: 88px 24px 26px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid #E4E9EF;
    transform: translateY(-102%);
    transition: transform .46s cubic-bezier(.16, 1, .3, 1);
    display: none;
}

.drawer.open {
    transform: translateY(0);
}

.drawer a {
    display: block;
    padding: 15px 4px;
    text-decoration: none;
    font-family: "Degular", sans-serif;
    font-weight: 700;
    font-size: 1.12rem;
    color: #111;
    border-bottom: 1px solid #EEF2F6;
}

.drawer .drawer-cta {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

@media (max-width:940px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .drawer {
        display: block;
    }

    .nav-host.docked .nav {
        max-width: 100%;
        padding: 8px 8px 8px 6px;
    }
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */

.card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.card--horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: var(--space-6) var(--space-8);
}

.card--horizontal .card__left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.card--horizontal .card__icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
}

.card--horizontal .card__title {
    margin-bottom: 0;
}

.card--horizontal .card__right {
    text-align: right;
}

.card--horizontal .card__description {
    margin-bottom: 0;
}

.card__number-pill {
    font-size: var(--text-caption);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-8);
    background: var(--color-accent-subtle);
    color: var(--color-text-primary);
}

.card__number-pill--white {
    background: #FFFFFF;
}

.card__number-pill--black {
    background: #111111;
    color: #FFFFFF;
}

.card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
    color: #111111;
    background: transparent;
    flex-shrink: 0;
}

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

.card__title {
    font-size: var(--text-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    color: #111111;
}

/* Descriptive paragraphs are restored */
.card__description {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat {
    padding: var(--space-6);
    position: relative;
}

.stat__number {
    font-family: var(--font-display);
    font-size: var(--text-h1);
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat__label {
    font-size: var(--text-caption);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 48px;
        background: var(--color-border);
    }
}

/* ═══════════════════════════════════════════
   STEPS / HOW IT WORKS
   ═══════════════════════════════════════════ */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    counter-reset: step-counter;
}

.step {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
}

.step__content {
    flex: 1;
}

.step__title {
    font-size: var(--text-h3);
    margin-bottom: var(--space-2);
}

.step__description {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step__connector {
    display: none;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step__connector {
        display: block;
        position: absolute;
        top: 28px;
        right: -50%;
        width: 100%;
        height: 1px;
        background: var(--color-border);
    }

    .step {
        position: relative;
    }

    .step:last-child .step__connector {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */

.cta-banner {
    background: #ffffff;
    border-radius: 24px 999px 999px 24px;
    padding: var(--space-12) var(--space-8);
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-banner-inverted {
    background: #ffffff;
    border-radius: 999px 24px 24px 999px;
    padding: var(--space-12) var(--space-8);
    position: relative;
    overflow: hidden;
}

.cta-banner__bg-graphics {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cta-banner__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    color: #111;
    line-height: 1.1;
    font-weight: 800;
}

.cta-banner__text {
    max-width: 500px;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
    color: #4A5A6E;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-banner__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-banner__btn {
    background: #FFFFFF;
    color: #111;
    border: none;
    border-radius: 20px;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cta-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.cta-banner__badge {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
}

@media (max-width: 900px) {

    .cta-banner,
    .cta-banner-inverted {
        flex-direction: column;
        border-radius: 24px;
        padding: var(--space-12) var(--space-6);
        text-align: center;
    }

    .cta-banner__text {
        margin-inline: auto;
    }

    .cta-banner__actions {
        justify-content: center;
        margin-bottom: 32px;
    }

    .cta-banner__badge {
        margin-right: 0;
        width: 140px;
        height: 140px;
    }
}

@media (min-width: 768px) {

    .cta-banner,
    .cta-banner-inverted {
        padding: 60px 80px;
    }
}

/* ═══════════════════════════════════════════
   TRUST STRIP (Partner Wordmarks)
   ═══════════════════════════════════════════ */

.trust-strip {
    padding-block: var(--space-12);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.trust-strip__label {
    text-align: center;
    font-size: var(--text-overline);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.trust-strip__track {
    display: flex;
    gap: 64px;
    animation: scroll-logos 40s linear infinite;
    width: max-content;
}

.trust-strip__logo {
    display: block;
    flex-shrink: 0;
}

@keyframes scroll-logos {
    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */

.form__group {
    margin-bottom: var(--space-6);
}

.form__label {
    display: block;
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: var(--text-body);
    transition: border-color var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-muted);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form__select {
    appearance: none;
    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='%236A6A7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form__select option {
    background: var(--color-surface);
    color: var(--color-text-primary);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__submit {
    width: 100%;
    height: 52px;
    margin-top: var(--space-4);
}

.form__success {
    display: none;
    padding: var(--space-6);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-success);
    text-align: center;
    font-weight: 500;
}

.form__success.visible {
    display: block;
}

.form__error {
    font-size: var(--text-caption);
    color: var(--color-error);
    margin-top: var(--space-1);
    display: none;
}

.form__error.visible {
    display: block;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */

.faq__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: border-color var(--duration-normal) var(--ease-out);
}

.faq__item.active {
    border-color: rgba(201, 168, 106, 0.3);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--color-surface);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-text-primary);
    border: none;
    transition: background var(--duration-fast) var(--ease-out);
}

.faq__question:hover {
    background: var(--color-surface-hover);
}

.faq__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
    font-size: 1.25rem;
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-in-out),
        padding var(--duration-slow) var(--ease-in-out);
}

.faq__item.active .faq__answer {
    max-height: 400px;
}

.faq__answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    font-size: var(--text-body-sm);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════════
   CONTACT INFO BLOCKS
   ═══════════════════════════════════════════ */

.contact-info__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    margin-bottom: var(--space-8);
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.contact-info__label {
    font-family: var(--font-display);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.contact-info__text {
    font-size: var(--text-body-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.contact-info__text a {
    color: var(--color-accent);
}

.contact-info__text a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-16);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gradient-glow);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer__brand-desc {
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: var(--space-4);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
    position: relative;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
    transition: color var(--duration-fast) var(--ease-out),
        padding-left var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
    color: var(--color-accent);
    padding-left: var(--space-2);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-accent-subtle);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__copyright {
    border-top: 1px solid var(--color-border);
    padding: var(--space-6) 0;
    text-align: center;
    font-size: var(--text-caption);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */

.page-hero {
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.page-hero p {
    margin-inline: auto;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.page-hero .overline {
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .page-hero {
        padding-top: calc(var(--nav-height) + var(--space-24));
        padding-bottom: var(--space-20);
    }
}

/* ═══════════════════════════════════════════
   MISSION / VISION CARDS
   ═══════════════════════════════════════════ */

.mission-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cta);
}

.mission-card h3 {
    margin-bottom: var(--space-4);
}

.mission-card p {
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   MAP CONTAINER
   ═══════════════════════════════════════════ */

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(0.9) hue-rotate(180deg);
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   BENTO GRID — Showcase Section (Masonry 5x2)
   ═══════════════════════════════════════════ */

.bento-grid-masonry {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.bento-card:hover img {
    transform: scale(1.05);
}

.bento-card--text {
    background: #ffffff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #000000;
}

.bento-card--text h3 {
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #000000;
    line-height: 1.1;
    text-wrap: balance;
}

.bento-card--text p {
    color: #334155;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.bento-card--text p:last-child {
    margin-bottom: 0;
}

.bento-card--orange {
    background: var(--color-primary);
    color: #ffffff;
    position: relative;
    min-height: 300px;
}

.bento-card__content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bento-card__logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    position: absolute;
    top: 32px;
    left: 32px;
    text-transform: lowercase;
}

.bento-card__cover-title {
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 0.9;
    position: absolute;
    bottom: 32px;
    right: 32px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ── Responsive Breakpoints for Bento Grid ── */
@media (max-width: 1280px) {
    .bento-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .bento-card {
        height: 340px;
    }

    .bento-card--text {
        padding: 28px;
    }

    .bento-card--text h3 {
        font-size: 26px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .bento-grid-masonry {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bento-card {
        height: auto;
        min-height: 260px;
    }

    .bento-card img {
        height: 280px;
    }

    .bento-card--orange {
        min-height: 220px;
        height: 220px;
    }

    .bento-card__logo {
        font-size: 24px;
        top: 24px;
        left: 24px;
    }

    .bento-card__cover-title {
        font-size: 42px;
        bottom: 24px;
        right: 24px;
    }

    .bento-card--text {
        padding: 26px 20px;
    }

    .bento-card--text h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .bento-card--text p {
        font-size: 13.5px;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .bento-card img {
        height: 230px;
    }

    .bento-card--orange {
        min-height: 190px;
        height: 190px;
    }

    .bento-card__cover-title {
        font-size: 34px;
    }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */

.whatsapp-btn {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}