:root {
    --sm-green-900: #0c4e26;
    --sm-green-800: #105028;
    --sm-green-700: #156b34;
    --sm-green-600: #208030;
    --sm-mint-100: #eaf6ef;
    --sm-mint-50: #f4faf6;
    --sm-white: #ffffff;
    --sm-soft: #f7f8f5;
    --sm-border: #dde5dc;
    --sm-ink: #111827;
    --sm-graphite: #202020;
    --sm-muted: #667085;
    --sm-gold: #d6c16a;
    --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--sm-ink);
    background: var(--sm-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 12px;
    color: var(--sm-white);
    background: var(--sm-green-900);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--sm-border);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 84px;
}

.brand img {
    width: 132px;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    justify-self: center;
    padding: 6px;
    color: var(--sm-graphite);
    background: var(--sm-mint-50);
    border: 1px solid var(--sm-border);
    border-radius: 999px;
    font-size: 0.95rem;
}

.nav a,
.text-link,
.service-card a {
    text-decoration: none;
    transition: color 160ms ease;
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 700;
    transition:
        background 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.nav a:hover,
.text-link:hover,
.service-card a:hover {
    color: var(--sm-green-700);
}

.nav a:hover {
    background: var(--sm-white);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.header-actions {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--sm-green-900);
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 999px;
    transition:
        rotate 160ms ease,
        translate 160ms ease,
        opacity 160ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
    translate: 0 7px;
    rotate: 45deg;
}

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

.nav-open .menu-toggle span:nth-child(3) {
    translate: 0 -7px;
    rotate: -45deg;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    color: var(--sm-white);
    background: var(--sm-green-900);
    border: 1px solid var(--sm-green-900);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.btn:hover {
    background: var(--sm-green-700);
    border-color: var(--sm-green-700);
    box-shadow: 0 10px 24px rgba(12, 78, 38, 0.2);
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.btn-secondary {
    color: var(--sm-green-900);
    background: var(--sm-white);
    border-color: var(--sm-border);
}

.btn-secondary:hover {
    color: var(--sm-white);
}

.btn-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.92rem;
}

.hero {
    position: relative;
    min-height: clamp(570px, 72svh, 680px);
    padding: 72px 0 96px;
    color: var(--sm-white);
    background: var(--sm-green-900);
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 44px;
    background: var(--sm-white);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

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

.hero .eyebrow {
    display: inline-flex;
    padding: 8px 11px;
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 4.4vw, 3.55rem);
    line-height: 1;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--sm-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: 3.65rem;
    line-height: 1.05;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: 2.25rem;
    line-height: 1.16;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    color: var(--sm-green-900);
    background: var(--sm-white);
    border-color: var(--sm-white);
}

.hero-actions .btn:hover {
    color: var(--sm-white);
    background: var(--sm-green-700);
    border-color: var(--sm-green-700);
}

.hero-actions .btn-secondary {
    color: var(--sm-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-secondary:hover {
    color: var(--sm-green-900);
    background: var(--sm-white);
    border-color: var(--sm-white);
}

.hero-media {
    position: relative;
    justify-self: end;
    width: min(100%, 470px);
    aspect-ratio: 4 / 5;
    margin-bottom: -68px;
    overflow: hidden;
    background: var(--sm-mint-100);
    border: 8px solid rgba(255, 255, 255, 0.12);
    border-radius: 48% 48% 44% 44% / 30% 30% 48% 48%;
}

.hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.trust-band {
    background: var(--sm-soft);
    border-bottom: 1px solid var(--sm-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.trust-grid span {
    min-height: 72px;
    padding: 18px;
    color: var(--sm-graphite);
    background: var(--sm-white);
    font-weight: 700;
    text-align: center;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.trust-grid span:hover {
    color: var(--sm-green-900);
    background: var(--sm-mint-50);
}

.section {
    padding: 82px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.faq-grid > div > p,
.contact-copy > p,
.about-grid p {
    color: var(--sm-muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-spotlight {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
    margin-bottom: 28px;
}

.spotlight-tabs {
    display: grid;
    gap: 8px;
}

.spotlight-tabs button {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 10px 12px;
    color: var(--sm-graphite);
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
    cursor: pointer;
    line-height: 1.22;
    text-align: left;
    overflow-wrap: break-word;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.spotlight-tabs button:hover,
.spotlight-tabs button.is-active {
    color: var(--sm-green-900);
    background: var(--sm-mint-50);
    border-color: rgba(32, 128, 48, 0.35);
    transform: translateY(-1px);
}

.spotlight-tabs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--sm-white);
    background: var(--sm-green-900);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 800;
}

.spotlight-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    overflow: hidden;
    background: var(--sm-green-900);
    border: 1px solid rgba(12, 78, 38, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.spotlight-panel img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center top;
}

.spotlight-photo {
    min-height: 390px;
    overflow: hidden;
}

.spotlight-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: var(--sm-white);
}

.spotlight-copy h3 {
    font-size: 1.7rem;
}

.spotlight-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.spotlight-copy .btn {
    align-self: flex-start;
    margin-top: 8px;
    color: var(--sm-green-900);
    background: var(--sm-white);
    border-color: var(--sm-white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.content-card {
    min-height: 240px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
    overflow: hidden;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.process-card {
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card:hover,
.content-card:hover,
.process-card:hover {
    border-color: rgba(32, 128, 48, 0.35);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.1);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--sm-border);
    transition: transform 240ms ease;
}

.service-card:hover .service-image {
    transform: scale(1.035);
}

.service-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.service-card p,
.content-card p {
    color: var(--sm-muted);
}

.service-card a {
    margin-top: auto;
    color: var(--sm-green-900);
    font-weight: 800;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: var(--sm-white);
    background: var(--sm-green-900);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
}

.problem-band {
    padding: 74px 0;
    color: var(--sm-white);
    background: var(--sm-green-900);
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 52px;
    align-items: start;
}

.problem-grid p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    min-height: 54px;
    padding: 14px 16px 14px 48px;
    color: var(--sm-ink);
    background: var(--sm-white);
    border-radius: 8px;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 19px;
    width: 16px;
    height: 16px;
    background: var(--sm-green-700);
    border-radius: 50%;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 246, 0.96)),
        var(--sm-white);
    border: 1px solid rgba(12, 78, 38, 0.16);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.process-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -52px;
    width: 150px;
    height: 150px;
    background: rgba(214, 193, 106, 0.16);
    border: 1px solid rgba(214, 193, 106, 0.22);
    border-radius: 26px;
    transform: rotate(14deg);
}

.process-card::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 86px;
    height: 2px;
    background: linear-gradient(90deg, var(--sm-green-700), rgba(214, 193, 106, 0.5));
    opacity: 0.45;
}

.process-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 34px;
    color: var(--sm-green-900);
    background: var(--sm-white);
    border: 2px solid var(--sm-green-900);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(12, 78, 38, 0.13);
    font-weight: 800;
}

.process-card h3,
.process-card p {
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--sm-muted);
}

.process-card:hover {
    background: var(--sm-white);
}

.process-card:hover span {
    color: var(--sm-white);
    background: var(--sm-green-900);
}

.about-section,
.faq-section {
    background: var(--sm-mint-50);
}

.about-grid,
.faq-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.about-media {
    min-height: 460px;
    overflow: hidden;
    background: var(--sm-green-900);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
}

.about-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
}

.text-link {
    color: var(--sm-green-900);
    font-weight: 800;
}

.icon-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.icon-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.content-card {
    min-height: 240px;
    background: var(--sm-soft);
}

.content-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 28%;
    border-bottom: 1px solid var(--sm-border);
}

.content-card div {
    padding: 28px;
}

.content-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    color: var(--sm-white);
    background: var(--sm-green-900);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

details[open],
details:hover {
    border-color: rgba(32, 128, 48, 0.35);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

summary {
    padding: 18px 20px;
    color: var(--sm-green-900);
    font-weight: 800;
    cursor: pointer;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--sm-muted);
}

.contact-section {
    padding: 82px 0;
    color: var(--sm-white);
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(12, 78, 38, 0.9)),
        var(--sm-graphite);
}

.contact-copy p,
.contact-copy address {
    color: rgba(255, 255, 255, 0.82);
}

address {
    display: grid;
    gap: 9px;
    font-style: normal;
}

address a {
    color: var(--sm-white);
    font-weight: 700;
}

.contact-details {
    gap: 13px;
    margin-top: 22px;
}

.contact-company {
    display: block;
    margin-bottom: 2px;
    color: var(--sm-white);
    font-size: 1.02rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
}

.contact-item b {
    color: var(--sm-white);
}

.contact-item svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    color: var(--sm-gold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.contact-item span {
    min-width: 0;
}

.contact-item a {
    overflow-wrap: anywhere;
}

.lead-form {
    display: grid;
    gap: 10px;
    padding: 24px;
    color: var(--sm-ink);
    background: var(--sm-white);
    border-radius: 8px;
}

.lead-form label {
    color: var(--sm-graphite);
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--sm-ink);
    background: var(--sm-soft);
    border: 1px solid var(--sm-border);
    border-radius: 8px;
}

.lead-form textarea {
    min-height: 124px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.btn:focus,
a:focus,
summary:focus {
    outline: 3px solid rgba(214, 193, 106, 0.55);
    outline-offset: 2px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 24px;
}

.form-alert {
    padding: 14px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.form-alert-error {
    color: #7f1d1d;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.form-alert-success {
    color: var(--sm-green-900);
    background: var(--sm-mint-100);
    border: 1px solid #b7dfc4;
}

.inline-action {
    display: inline-flex;
    margin-top: 10px;
    color: var(--sm-green-900);
    font-weight: 800;
}

.site-footer {
    padding: 28px 0;
    background: var(--sm-white);
    border-top: 1px solid var(--sm-border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 128px;
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
    color: var(--sm-muted);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 15;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    color: var(--sm-white);
    background: var(--sm-green-700);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-weight: 800;
    text-decoration: none;
    transition:
        background 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.floating-whatsapp:hover {
    background: var(--sm-green-900);
    box-shadow: 0 18px 38px rgba(12, 78, 38, 0.28);
    transform: translateY(-2px);
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.has-js .reveal {
    opacity: 0;
    translate: 0 18px;
    filter: saturate(0.94);
    transition:
        opacity 580ms ease,
        translate 580ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 580ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, translate;
}

.has-js .reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    filter: none;
}

.has-js .service-card.reveal,
.has-js .content-card.reveal,
.has-js .process-card.reveal {
    translate: 0 26px;
    transition:
        opacity 680ms ease,
        translate 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 680ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
    transition-delay:
        var(--reveal-delay, 0ms),
        var(--reveal-delay, 0ms),
        var(--reveal-delay, 0ms),
        0ms,
        0ms,
        0ms;
}

.has-js .service-grid .reveal:nth-child(4n+2),
.has-js .content-grid .reveal:nth-child(3n+2),
.has-js .process-grid .reveal:nth-child(2) {
    --reveal-delay: 90ms;
}

.has-js .service-grid .reveal:nth-child(4n+3),
.has-js .content-grid .reveal:nth-child(3n+3),
.has-js .process-grid .reveal:nth-child(3) {
    --reveal-delay: 180ms;
}

.has-js .service-grid .reveal:nth-child(4n+4) {
    --reveal-delay: 270ms;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        position: relative;
        min-height: 76px;
    }

    .nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        justify-content: initial;
        justify-self: stretch;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--sm-border);
        border-radius: 8px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

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

    .nav a {
        justify-content: center;
        min-height: 46px;
        padding: 10px 12px;
        background: var(--sm-mint-50);
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .service-spotlight,
    .spotlight-panel,
    .problem-grid,
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .content-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
    }

    .spotlight-tabs button {
        grid-template-columns: 34px minmax(0, 1fr);
        min-width: 0;
        min-height: 64px;
        padding: 10px;
        font-size: 0.9rem;
    }

    .spotlight-tabs span {
        width: 32px;
        height: 32px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.7rem;
    }

    .hero {
        min-height: 560px;
        padding: 64px 0 82px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.92fr);
        gap: 28px;
    }

    .hero-media {
        width: min(100%, 360px);
        margin-bottom: -48px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.25rem);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-inner {
        min-height: 72px;
        gap: 14px;
    }

    .nav {
        grid-template-columns: 1fr 1fr;
    }

    .nav a {
        min-height: 44px;
        font-size: 0.92rem;
    }

    .brand img {
        width: 112px;
    }

    .hero {
        min-height: auto;
        padding: 62px 0 64px;
    }

    .hero::after {
        display: none;
    }

    .hero-layout {
        display: block;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.06;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-lead {
        margin-bottom: 20px;
        font-size: 1rem;
    }

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

    .hero-copy {
        max-width: none;
        text-align: center;
    }

    .hero .eyebrow {
        justify-content: center;
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-media {
        display: none;
    }

    .footer-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-actions .btn,
    .lead-form .btn {
        width: 100%;
    }

    .lead-form {
        padding: 18px;
    }

    .spotlight-panel img {
        min-height: 260px;
    }

    .spotlight-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .spotlight-tabs button {
        min-height: 58px;
        padding: 9px;
        font-size: 0.86rem;
    }

    .spotlight-tabs span {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .spotlight-copy {
        padding: 22px;
    }

    .spotlight-copy .btn {
        align-self: stretch;
    }

    .service-grid,
    .content-grid,
    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .contact-section {
        padding: 58px 0;
    }

    .service-card,
    .content-card {
        min-height: auto;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
