:root {
    --bg: #fcfaf9;
    --surface: #ffffff;
    --surface-soft: #eaf8ff;
    --surface-strong: #1f6fca;
    --primary: #1f6fca;
    --primary-dark: #184f9f;
    --secondary: #6cd3d8;
    --accent: #39a8f2;
    --accent-soft: #e8f9ff;
    --success: #25d366;
    --text: #16345c;
    --muted: #557394;
    --border: #d4e8f7;
    --shadow: 0 18px 50px rgba(31, 111, 202, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(108, 211, 216, 0.2), transparent 24%),
        linear-gradient(180deg, #f8fdff 0%, #f2fbff 100%);
}

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

img,
iframe {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.site-shell {
    min-height: 100vh;
}

.top-strip {
    background: var(--primary);
    color: #fff;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    font-weight: 700;
}

.top-strip-marquee {
    min-width: 0;
}

.top-strip-marquee span {
    display: inline-block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(31, 111, 202, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.15rem 0;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    width: auto;
    flex: 0 0 auto;
}

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

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0;
    border: 1px solid rgba(31, 111, 202, 0.16);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.mobile-nav-head,
.mobile-nav-brand {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.25rem;
}

.brand small,
.site-nav a {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    font-weight: 700;
    flex: 0 1 auto;
    justify-content: center;
}

.nav-cta {
    flex: 0 0 auto;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--primary);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 0.95rem 1.4rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-1px);
}

.nav-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 1px solid rgba(31, 111, 202, 0.35);
}

.btn-whatsapp {
    background: var(--success);
    color: #fff;
}

.btn-block {
    width: 100%;
}

.hero-luxe {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(20, 18, 18, 0.52), rgba(20, 18, 18, 0.52)),
        url("https://images.unsplash.com/photo-1521656693074-0ef32e80a5d5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 24, 33, 0.38), rgba(20, 24, 33, 0.12));
}

.hero-luxe-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-centered {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 3rem 0;
}

.hero-kicker {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(57, 168, 242, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero h1,
.section h2,
.site-footer h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1.02;
}

.hero p,
.section-heading p,
.story-section p,
.service-card p,
.support-notes p,
.site-footer p,
.price-row span {
    line-height: 1.7;
}

.hero p {
    margin: 1rem auto 0;
    max-width: 640px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

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

.offer-strip {
    position: relative;
    margin-top: -3.2rem;
    z-index: 2;
}

.offer-grid,
.story-grid,
.services-grid,
.pickup-layout,
.footer-grid,
.local-seo-grid,
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.offer-grid,
.story-grid,
.pickup-layout,
.footer-grid,
.local-seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card,
.story-point,
.service-card,
.pickup-form,
.map-panel,
.price-table-wrap,
.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
}

.offer-card h2,
.story-point strong,
.pricing-panel h3,
.service-card h3 {
    margin: 0 0 0.35rem;
}

.offer-card p,
.pricing-panel p,
.service-card p,
.story-point p {
    margin: 0;
    color: var(--muted);
}

.offer-card strong {
    display: inline-block;
    margin-top: 0.7rem;
    color: var(--primary);
}

.offer-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 900;
    flex-shrink: 0;
}

.section {
    padding: 5rem 0;
}

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

.center-heading {
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--primary);
    font-weight: 800;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--primary);
}

.section-heading p,
.story-section p,
.service-card p,
.support-notes p {
    color: var(--muted);
}

.story-section {
    padding-top: 4rem;
}

.story-points {
    display: grid;
    gap: 1rem;
}

.story-point {
    padding: 1.3rem;
}

.local-seo-section {
    background: linear-gradient(180deg, rgba(232, 249, 255, 0.72) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.local-seo-grid {
    align-items: start;
    gap: 2rem;
}

.local-seo-grid > div:first-child {
    max-width: 760px;
}

.local-seo-section h2 {
    font-size: clamp(2.35rem, 3.8vw, 4.5rem);
    line-height: 1.02;
    max-width: 820px;
    margin-bottom: 1rem;
}

.local-seo-section p {
    max-width: 760px;
    font-size: 1.05rem;
}

.local-seo-section .story-points {
    align-content: start;
    grid-auto-rows: max-content;
}

.local-seo-section .story-point {
    min-height: 0;
    padding: 1.5rem;
}

.local-seo-section .story-point strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

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

.faq-card {
    padding: 1.35rem;
}

.faq-card h3 {
    margin: 0 0 0.6rem;
    color: var(--primary-dark);
    font-size: 1.15rem;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-section {
    background: linear-gradient(180deg, #fdfefe 0%, #f1faff 100%);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-tab {
    padding: 1rem 1.45rem;
    border: 1px solid rgba(31, 111, 202, 0.35);
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
}

.pricing-tab.is-active {
    background: var(--primary);
    color: #fff;
}

.pricing-panel {
    display: none;
}

.pricing-panel.is-active {
    display: block;
}

.pricing-panel-head {
    margin-bottom: 1rem;
}

.pricing-panel h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.price-table-wrap + .price-table-wrap {
    margin-top: 1.25rem;
}

.price-table-head,
.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

.price-table-head {
    padding: 1rem 1.3rem;
    background: var(--surface-soft);
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: var(--radius) var(--radius) 0 0;
}

.price-row {
    padding: 1.1rem 1.3rem;
    border-top: 1px solid #f0e4e6;
}

.price-row strong {
    color: var(--primary);
}

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

.service-card {
    padding: 2rem 1.6rem;
    text-align: center;
}

.service-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #203b63;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.service-areas-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, #184f9f 0%, #1f6fca 52%, #39a8f2 100%);
    color: #fff;
}

.light-heading h2,
.light-heading p,
.light-tag {
    color: #fff;
}

.light-tag {
    background: rgba(255, 255, 255, 0.14);
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-chips span {
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    font-weight: 700;
}

.area-link-chips a,
.location-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
}

.area-link-chips a {
    background: var(--surface-soft);
    color: var(--primary-dark);
    border: 1px solid rgba(31, 111, 202, 0.14);
}

.pickup-section {
    background: #fff;
}

.pickup-stack {
    display: grid;
    gap: 1rem;
}

.pickup-form {
    padding: 1.4rem;
}

.pickup-form-large {
    border-radius: 18px;
}

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

.full-width {
    grid-column: 1 / -1;
}

label span {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(57, 168, 242, 0.14);
}

.map-panel {
    padding: 1rem;
}

.map-address-card {
    margin-bottom: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: rgba(232, 249, 255, 0.75);
    border: 1px solid rgba(31, 111, 202, 0.12);
}

.map-address-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.map-address-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.map-panel iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.support-notes {
    padding: 0.25rem 0.1rem 0;
}

.site-footer {
    padding: 2.6rem 0 6rem;
    background: linear-gradient(135deg, #15365e 0%, #184f9f 50%, #1f6fca 100%);
    color: rgba(255, 255, 255, 0.86);
}

.site-footer h3 {
    color: #fff;
    font-size: 1.6rem;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li + li {
    margin-top: 0.7rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #18c46b, #25d366);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.floating-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

@media (max-width: 1080px) {
    .offer-grid,
    .story-grid,
    .pickup-layout,
    .footer-grid,
    .local-seo-grid,
    .faq-grid,
    .services-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 14px;
    }

    .container {
        width: min(var(--container), calc(100% - 1.1rem));
    }

    .section {
        padding: 3.25rem 0;
    }

    .section h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

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

    .section-heading p,
    .story-section p,
    .service-card p,
    .support-notes p,
    .site-footer p,
    .price-row span,
    .offer-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .top-strip-inner,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        position: static;
    }

    .top-strip {
        overflow: hidden;
    }

    .top-strip-inner {
        gap: 0.45rem;
        padding: 0.65rem 0;
    }

    .top-strip-marquee {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .top-strip-marquee span {
        padding-left: 100%;
        animation: mobileTicker 12s linear infinite;
    }

    .top-strip-inner > a {
        font-size: 0.84rem;
        text-align: center;
        font-weight: 800;
    }

    .nav-wrap {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0.8rem 0;
    }

    .brand-row {
        width: 100%;
        justify-content: space-between;
    }

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

    .brand-logo {
        width: 54px;
        height: 54px;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        font-size: 0.8rem;
    }

    .menu-toggle {
        display: inline-flex;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(78vw, 310px);
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        text-align: left;
        padding: 1rem;
        border-left: 1px solid rgba(31, 111, 202, 0.12);
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(234, 248, 255, 0.96) 0%, rgba(255, 255, 255, 0.99) 34%),
            #fff;
        box-shadow: -20px 0 40px rgba(31, 111, 202, 0.16);
        z-index: 70;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .site-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-bottom: 0.35rem;
        border-bottom: 1px solid rgba(31, 111, 202, 0.1);
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        min-width: 0;
    }

    .mobile-nav-logo {
        width: 42px;
        height: 42px;
        object-fit: contain;
        border-radius: 50%;
        background: #fff;
    }

    .mobile-nav-brand strong,
    .mobile-nav-brand small {
        display: block;
    }

    .mobile-nav-brand strong {
        color: var(--primary-dark);
        font-size: 0.96rem;
    }

    .mobile-nav-brand small {
        color: var(--muted);
        font-size: 0.78rem;
    }

    .menu-close {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        border: 1px solid rgba(31, 111, 202, 0.14);
        border-radius: 12px;
        background: #fff;
        color: var(--primary);
        font-size: 1.45rem;
        line-height: 1;
        box-shadow: 0 8px 20px rgba(31, 111, 202, 0.1);
    }

    .site-nav a {
        padding: 0.9rem 0.95rem;
        border-radius: 16px;
        background: rgba(232, 249, 255, 0.92);
        color: var(--primary-dark);
        font-weight: 800;
        font-size: 0.96rem;
        box-shadow: inset 0 0 0 1px rgba(31, 111, 202, 0.06);
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(16, 34, 58, 0.42);
        z-index: 60;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .mobile-nav-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta,
    .hero-actions .btn,
    .pricing-tab,
    .floating-whatsapp {
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .hero-luxe {
        min-height: 540px;
        background-position: center;
        background-image:
            linear-gradient(rgba(13, 30, 52, 0.56), rgba(13, 30, 52, 0.56)),
            url("https://images.unsplash.com/photo-1521656693074-0ef32e80a5d5?auto=format&fit=crop&w=1200&q=80");
    }

    .offer-strip {
        margin-top: 1rem;
    }

    .hero-centered {
        padding: 2.4rem 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.65rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero p {
        font-size: 1rem;
        max-width: 310px;
        margin-top: 0.9rem;
    }

    .hero-kicker,
    .section-tag {
        font-size: 0.78rem;
    }

    .btn,
    .nav-cta,
    .pricing-tab {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }

    .hero-actions {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .hero-actions .btn {
        max-width: 320px;
        margin: 0 auto;
        border-radius: 10px;
    }

    .offer-card h2,
    .pricing-panel h3,
    .service-card h3 {
        font-size: 1.4rem;
    }

    .offer-grid {
        gap: 1rem;
    }

    .offer-card {
        padding: 1.2rem;
        border-radius: 20px;
        box-shadow: 0 12px 28px rgba(31, 111, 202, 0.12);
    }

    .offer-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .story-section {
        padding-top: 2.6rem;
    }

    .story-grid,
    .story-points {
        gap: 0.9rem;
    }

    .story-point {
        padding: 1rem;
    }

    .pricing-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 1.1rem;
    }

    .pricing-tab {
        width: 100%;
        min-height: 54px;
        border-radius: 10px;
        padding: 0.85rem 0.7rem;
        font-size: 0.84rem;
        line-height: 1.25;
    }

    .pricing-panel-head {
        margin-bottom: 0.85rem;
    }

    .pricing-panel h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .service-card,
    .pickup-form,
    .map-panel,
    .offer-card,
    .price-table-wrap {
        border-radius: 18px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.6rem 1.15rem;
    }

    .service-card h3 {
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .service-card p {
        font-size: 0.92rem;
        max-width: 270px;
        margin: 0 auto;
    }

    .price-table-head {
        font-size: 0.84rem;
        padding: 0.95rem 1rem;
    }

    .price-row {
        padding: 0.95rem 1rem;
    }

    .price-row strong {
        font-size: 0.95rem;
    }

    .pickup-form {
        padding: 1.1rem;
    }

    .pickup-layout,
    .pickup-stack {
        gap: 1rem;
    }

    label span {
        font-size: 0.9rem;
    }

    input,
    select,
    textarea {
        min-height: 50px;
        font-size: 0.95rem;
    }

    textarea {
        min-height: 108px;
    }

    .price-table-head,
    .price-row {
        grid-template-columns: 1fr;
    }

    .price-table-head span:last-child {
        display: none;
    }

    .map-panel iframe {
        min-height: 260px;
    }

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

    .area-chips span {
        width: 100%;
        padding: 0.82rem 0.85rem;
        text-align: center;
        font-size: 0.92rem;
    }

    .support-notes {
        padding-top: 0.15rem;
    }

    .footer-grid {
        gap: 1rem;
    }

    .site-footer {
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 6.25rem;
    }

    .floating-whatsapp {
        width: 68px;
        height: 68px;
        right: 1rem;
        left: auto;
        bottom: 1rem;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
    }

    .floating-whatsapp span:last-child {
        display: none;
    }

    .floating-icon {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.16);
    }

    .floating-icon svg {
        width: 24px;
        height: 24px;
    }

    .floating-whatsapp::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}

@keyframes mobileTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
