:root {
    --primary: #1a3e7a;
    --primary-dark: #10284d;
    --secondary: #ff8c00;
    --secondary-dark: #d86f00;
    --secondary-soft: rgba(255, 140, 0, 0.14);
    --accent: #25d366;
    --accent-dark: #1daa55;
    --text-main: #15233b;
    --text-muted: #5d6b82;
    --bg-main: #f5f7fb;
    --bg-alt: #ecf2fb;
    --white: #ffffff;
    --border: rgba(21, 35, 59, 0.1);
    --shadow-lg: 0 24px 60px rgba(16, 40, 77, 0.14);
    --shadow-md: 0 16px 32px rgba(16, 40, 77, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container-width: 1180px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(37, 211, 102, 0.05), transparent 28%),
        linear-gradient(180deg, #f9fbff 0%, var(--bg-main) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3,
strong {
    font-family: "Montserrat", sans-serif;
}

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

ul {
    padding: 0;
}

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(245, 247, 251, 0.74);
    backdrop-filter: blur(14px);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border);
    box-shadow: 0 8px 24px rgba(16, 40, 77, 0.08);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand-copy span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--secondary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(26, 62, 122, 0.08);
    cursor: pointer;
    transition: background var(--transition);
}

.menu-toggle:hover {
    background: rgba(26, 62, 122, 0.14);
}

.menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.section {
    padding: 6.5rem 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 9.5rem 0 5.5rem;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 140, 0, 0.25), transparent 18%),
        radial-gradient(circle at 20% 20%, rgba(37, 211, 102, 0.16), transparent 22%),
        linear-gradient(135deg, #173767 0%, #0e1d38 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    right: -90px;
    top: -60px;
    background: rgba(255, 255, 255, 0.05);
}

.hero::after {
    width: 240px;
    height: 240px;
    left: -80px;
    bottom: -100px;
    background: rgba(255, 140, 0, 0.08);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 3rem;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
}

.section-header .eyebrow,
.about-copy .eyebrow,
.contact-panel .eyebrow {
    background: var(--secondary-soft);
    color: var(--secondary-dark);
}

.hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: #ffb64f;
}

.hero p {
    margin-top: 1.35rem;
    max-width: 58ch;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.contact-actions,
.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    list-style: none;
    margin-top: 1.6rem;
}

.hero-trust-list li {
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-card {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.hero-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(8, 18, 36, 0.35);
}

.hero-card-info strong,
.map-actions strong {
    display: block;
    font-size: 1rem;
}

.hero-card-info span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.hero-card-link {
    flex-shrink: 0;
    text-decoration: none;
    color: #ffd8a0;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(255, 140, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--secondary-dark);
}

.btn-whatsapp {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible,
.wa-send-btn:hover,
.wa-send-btn:focus-visible {
    background: var(--accent-dark);
}

.btn-outline,
.btn-outline-dark {
    background: transparent;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    border-color: var(--border);
    color: var(--text-main);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    background: rgba(26, 62, 122, 0.05);
    border-color: rgba(26, 62, 122, 0.2);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 2.8rem;
    text-align: center;
}

.section-header h2,
.about-copy h2,
.contact-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: var(--primary-dark);
}

.section-header p,
.about-copy p,
.contact-panel p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.02rem;
}

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

.service-card,
.step-card,
.contact-panel,
.map-card,
.about-visual {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-card,
.step-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}

.service-card h3,
.step-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-size: 1.28rem;
}

.service-card p,
.step-card p {
    color: var(--text-muted);
}

.service-badge,
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-weight: 800;
}

.service-badge {
    background: linear-gradient(135deg, rgba(26, 62, 122, 0.12), rgba(255, 140, 0, 0.18));
    color: var(--primary);
}

.workflow {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(236, 242, 251, 0.75)),
        var(--bg-alt);
}

.step-card {
    background: var(--white);
}

.step-number {
    background: linear-gradient(135deg, var(--secondary), #ffb54b);
    color: var(--white);
    box-shadow: 0 14px 24px rgba(255, 140, 0, 0.22);
}

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

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 3.25rem;
    align-items: center;
}

.about-visual {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(26, 62, 122, 0.08), rgba(255, 255, 255, 0.6));
}

.about-visual img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.about-highlight {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(16, 40, 77, 0.82);
    color: var(--white);
}

.about-highlight span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.check-list {
    list-style: none;
    margin: 1.8rem 0 2rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 1.6rem;
}

.local-seo {
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.local-seo-grid,
.faq-grid {
    display: grid;
    gap: 1.4rem;
}

.local-seo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.4rem;
}

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

.local-seo-card,
.faq-card {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.local-seo-card h3,
.faq-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.local-seo-card p,
.faq-card p {
    color: var(--text-muted);
}

.contact-panel,
.map-card {
    background: var(--white);
    padding: 2rem;
}

.contact-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--bg-alt);
    color: var(--primary);
}

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

.info-item strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.info-item a:hover,
.map-actions a:hover,
.footer-links a:hover,
.hero-card-link:hover {
    color: var(--secondary-dark);
}

.contact-actions {
    margin-top: 2rem;
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-card iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 20px;
}

.map-actions {
    align-items: center;
    justify-content: space-between;
}

.map-actions a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.footer {
    padding: 2.75rem 0 1.6rem;
    color: var(--white);
    background: linear-gradient(135deg, #173767 0%, #0e1d38 100%);
}

.footer-shell,
.legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copy {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    background: var(--white);
}

.footer-copy p {
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.7);
}

.partner-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
}

.partner-link:hover,
.partner-link:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.legal {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal p {
    color: rgba(255, 255, 255, 0.62);
}

.call-widget {
    position: fixed;
    right: 1.4rem;
    bottom: 6.75rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem 0.75rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), #ffb54b);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 22px 40px rgba(255, 140, 0, 0.28);
}

.call-widget:hover,
.call-widget:focus-visible {
    box-shadow: 0 26px 44px rgba(255, 140, 0, 0.34);
}

.call-widget-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: callShake 3s ease-in-out infinite;
    transform-origin: center;
}

.call-widget-icon svg {
    width: 22px;
    height: 22px;
}

.call-widget-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.call-widget-copy strong {
    font-size: 0.98rem;
}

.call-widget-copy span {
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 600;
}

.whatsapp-widget {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 1100;
}

.wa-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 20px 35px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    animation: bubblePulse 2.8s ease-in-out infinite;
}

.wa-bubble img {
    width: 34px;
    height: 34px;
}

.wa-tooltip {
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity var(--transition), transform var(--transition);
}

.wa-bubble:hover .wa-tooltip,
.wa-bubble:focus-visible .wa-tooltip {
    opacity: 1;
    transform: translate(-4px, -50%);
}

.wa-chat-box {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(92vw, 340px);
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(16, 40, 77, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.wa-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #0d5d53;
    color: var(--white);
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-profile img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--white);
    object-fit: cover;
}

.wa-profile span {
    display: block;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.wa-close {
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.wa-chat-body {
    padding: 1.2rem;
    background: #ece5dd;
}

.wa-chat-body p {
    display: inline-block;
    max-width: 92%;
    padding: 0.85rem 0.95rem;
    border-radius: 0 18px 18px 18px;
    background: var(--white);
    box-shadow: 0 10px 18px rgba(16, 40, 77, 0.08);
    color: var(--text-main);
}

.wa-chat-footer {
    padding: 1rem;
}

.wa-send-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: background var(--transition);
}

.mobile-only {
    display: none;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(255, 140, 0, 0.45);
    outline-offset: 3px;
}

@keyframes bubblePulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes callShake {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    4% {
        transform: rotate(-12deg) scale(1.08);
    }

    8% {
        transform: rotate(12deg) scale(1.08);
    }

    12% {
        transform: rotate(-10deg) scale(1.05);
    }

    16% {
        transform: rotate(10deg) scale(1.05);
    }

    20% {
        transform: rotate(0deg) scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-shell,
    .services-grid,
    .workflow-grid,
    .local-seo-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-shell {
        gap: 2rem;
    }

    .nav-links {
        gap: 1.1rem;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 860px) {
    .nav {
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.6rem;
        padding: 0;
        position: relative;
        justify-content: flex-start;
    }

    .brand {
        flex-shrink: 0;
        max-width: none;
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .menu-toggle {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .nav-links {
        margin-left: 0;
        flex: 1;
        width: auto;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 0.45rem;
        overflow-x: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        max-height: none;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links li {
        flex: 0 0 auto;
        width: auto;
    }

    .nav-links a {
        display: block;
        padding: 0.68rem 0.8rem;
        border-radius: 12px;
        background: rgba(26, 62, 122, 0.07);
        white-space: nowrap;
        font-size: 0.88rem;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: rgba(26, 62, 122, 0.1);
    }

    .mobile-only {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .contact-shell,
    .services-grid,
    .workflow-grid,
    .local-seo-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 11rem;
    }

    .footer-shell,
    .legal,
    .map-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 5rem 0;
    }

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

    .brand-copy span {
        display: none;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero p,
    .section-header p,
    .about-copy p,
    .contact-panel p {
        font-size: 0.98rem;
    }

    .hero-card-info,
    .contact-actions,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card,
    .step-card,
    .contact-panel,
    .map-card {
        padding: 1.4rem;
    }

    .wa-tooltip {
        display: none;
    }

    .call-widget {
        right: 1rem;
        bottom: 6.25rem;
        padding: 0.7rem 0.9rem 0.7rem 0.75rem;
    }

    .call-widget-copy span {
        display: none;
    }
}

@media (max-width: 380px) {
    .brand-copy strong {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .brand-copy {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
