:root {
    --ink: #172331;
    --ink-soft: #4a5b66;
    --paper: #fffaf2;
    --surface: #ffffff;
    --mist: #f2f6ef;
    --line: #dfe6df;
    --blue: #155f9e;
    --blue-deep: #12395e;
    --copper: #a76534;
    --green: #53765d;
    --yellow: #f0c75b;
    --warm: #f8ede3;
    --shadow: 0 18px 45px rgba(18, 33, 47, 0.1);
    --radius: 8px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 92px;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 200;
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    border-radius: 4px;
}

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

.container {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid rgba(219, 227, 223, 0.9);
    backdrop-filter: blur(14px);
}

.navbar {
    width: min(100% - 40px, var(--max-width));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-logo {
    width: 84px;
    height: 48px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-name {
    display: none;
}

.brand-line {
    color: var(--copper);
    max-width: 250px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 11px;
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.94rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: rgba(16, 75, 145, 0.08);
}

.nav-action {
    background: var(--blue);
    color: white;
}

.nav-action:hover,
.nav-action.active {
    background: var(--blue-deep);
    color: white;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
    padding: 88px 0;
}

.section-band {
    padding: 78px 0 64px;
}

.section-muted {
    background: var(--mist);
}

.section-dark {
    background: var(--blue-deep);
    color: white;
}

.hero {
    position: relative;
    overflow: hidden;
    background-image:
        url('images/introduction.png'),
        linear-gradient(90deg, rgba(18, 33, 47, 0.65), rgba(18, 33, 47, 0.65)),
        repeating-linear-gradient(135deg, rgba(16, 75, 145, 0.08) 0 1px, transparent 1px 18px);
    background-size: cover;
    background-position: center 27%;
    background-attachment: fixed;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--green), var(--copper));
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr);
    gap: 52px;
    align-items: center;
}

.eyebrow,
.section-label,
.panel-kicker {
    margin: 0 0 12px;
    color: #c0c0c0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1,
.section-heading h2,
.two-column h2,
.approach h2,
.contact h2 {
    margin: 0;
    color: var(--ink);
    line-height: 1.05;
    font-size: clamp(2.15rem, 5vw, 4.7rem);
    letter-spacing: 0;
}

.hero h1 {
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-lede {
    max-width: 680px;
    margin: 24px 0 0;
    color: #f0f0f0;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 12px 24px rgba(16, 75, 145, 0.2);
}

.button-primary:hover {
    background: var(--blue-deep);
}

.button-secondary {
    color: var(--blue-deep);
    background: var(--surface);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-panel {
    position: relative;
    min-height: 440px;
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    align-content: space-between;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 75, 145, 0.08), transparent 40%);
    pointer-events: none;
}

.hero-logo,
.hero-panel-content,
.hero-metrics {
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 430px;
    margin: 10px auto 28px;
}

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

.service-snapshot li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-soft);
    font-weight: 700;
}

.service-snapshot li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    transform: rotate(-45deg);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.hero-metrics span {
    padding: 14px 10px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink-soft);
    text-align: center;
    font-size: 0.9rem;
}

.hero-metrics strong {
    display: block;
    color: var(--blue-deep);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: start;
}

.two-column h2,
.section-heading h2,
.approach h2,
.contact h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.section-copy > p,
.section-heading > p,
.contact-intro > p,
.dark-copy {
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.statement,
.value-card,
.service-card,
.standard-card,
.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.statement {
    padding: 24px;
}

.statement h3,
.value-card h3,
.service-card h4,
.process-list h3 {
    margin: 0 0 8px;
    line-height: 1.2;
    color: var(--blue-deep);
}

.statement p,
.value-card p,
.service-card p,
.standard-card p,
.process-list p {
    margin: 0;
    color: var(--ink-soft);
}

.positioning-note {
    margin-top: 20px;
    padding: 22px 24px;
    background: var(--warm);
    border: 1px solid rgba(167, 101, 52, 0.22);
    border-radius: var(--radius);
}

.positioning-note span {
    display: block;
    margin-bottom: 8px;
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.positioning-note p {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
}

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

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

.value-card {
    padding: 24px;
}

.value-index {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--copper);
    font-size: 0.86rem;
    font-weight: 900;
}

.service-category {
    padding-top: 34px;
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.category-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.category-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--mist);
    border-radius: 50%;
    color: var(--blue);
    font-weight: 900;
}

.category-heading h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
}

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

.service-card {
    min-height: 156px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 75, 145, 0.35);
    box-shadow: 0 14px 34px rgba(18, 33, 47, 0.09);
}

.service-card-urgent {
    border-color: rgba(167, 101, 52, 0.38);
    background: linear-gradient(180deg, #fff, var(--warm));
}

.service-reassurance {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 42px;
    padding: 30px;
    background: linear-gradient(90deg, rgba(79, 116, 91, 0.1), rgba(255, 255, 255, 0.88));
    border: 1px solid var(--line);
    border-left: 6px solid var(--green);
    border-radius: var(--radius);
}

.service-reassurance h3 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.16;
}

.service-reassurance > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.care-card {
    min-height: 244px;
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.care-card span {
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.care-card h3 {
    margin: 22px 0 10px;
    color: var(--blue-deep);
    line-height: 1.2;
}

.care-card p {
    margin: 0;
    color: var(--ink-soft);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.standard-card {
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.standard-card span {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.standard-card h3 {
    margin: 18px 0 12px;
    color: var(--blue-deep);
    line-height: 1.18;
}

.standard-card ul {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.standard-card li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    font-weight: 700;
}

.standard-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border: 2px solid rgba(21, 95, 158, 0.28);
    border-radius: 50%;
}

.objectives-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.objectives-strip span {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 13px 16px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-weight: 800;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.section-dark .section-label {
    color: var(--yellow);
}

.section-dark h2,
.section-dark .dark-copy {
    color: white;
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
}

.process-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
}

.process-list h3,
.process-list p {
    color: white;
}

.process-list p {
    opacity: 0.82;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.clients-grid span {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-soft);
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
    gap: 52px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact-quiet {
    margin: 16px 0 0;
    padding: 15px 16px;
    background: rgba(16, 75, 145, 0.08);
    border-left: 4px solid var(--blue);
    border-radius: 6px;
    color: var(--ink-soft);
}

.contact-methods a {
    display: grid;
    gap: 4px;
    padding: 18px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
}

.contact-methods span {
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-methods strong {
    color: var(--blue-deep);
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-row label {
    color: var(--ink);
    font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 14px;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
}

.form-row textarea {
    min-height: 128px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 3px solid rgba(244, 197, 66, 0.34);
    border-color: var(--blue);
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 14px 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: #1ebe5d;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 89;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(21, 95, 158, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
    opacity: 0;
    pointer-events: none;
}

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

.back-to-top:hover {
    transform: translateY(-1px);
    background: var(--blue-deep);
    box-shadow: 0 4px 12px rgba(21, 95, 158, 0.28);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 640ms ease,
        transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-panel.reveal-item {
    transform: translateY(16px) scale(0.985);
}

.hero-panel.reveal-item.is-visible {
    transform: translateY(0) scale(1);
}

.hero-logo {
    animation: softFloat 7s ease-in-out infinite;
}

@keyframes softFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(18, 57, 94, 0.96), rgba(23, 35, 49, 1)),
        var(--ink);
    color: rgba(255, 255, 255, 0.82);
    padding: 64px 0 26px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.7fr) minmax(170px, 0.8fr) minmax(220px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    background: white;
    border-radius: 6px;
}

.footer-brand p {
    max-width: 360px;
}

.footer-slogan {
    color: var(--copper);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px !important;
    text-transform: uppercase;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: white;
    font-weight: 800;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: white;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--yellow);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link path {
    fill: currentColor;
}

.social-link rect,
.social-link circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-link circle:last-child {
    fill: currentColor;
    stroke: none;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

.footer-column {
    display: grid;
    gap: 9px;
}

.site-footer a {
    display: table;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer .footer-actions a,
.site-footer .social-link {
    display: inline-flex;
    margin: 0;
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-column a:hover {
    transform: translateX(2px);
}

.footer-contact address {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    line-height: 1.65;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: white;
    font-weight: 800;
}

@media (max-width: 980px) {
    .brand-logo {
        width: 74px;
    }

    .brand-line {
        max-width: 210px;
        font-size: 0.66rem;
    }

    .nav-link {
        padding: 0 8px;
    }

    .hero-grid,
    .two-column,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .values-grid,
    .services-grid,
    .care-grid,
    .standards-grid,
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .service-reassurance {
        grid-template-columns: 1fr;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container,
    .navbar {
        width: min(100% - 28px, var(--max-width));
    }

    .navbar {
        min-height: 70px;
    }

    .brand-logo {
        width: 64px;
        height: 40px;
    }

    .brand-line {
        font-size: 0.62rem;
        max-width: 220px;
    }

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

    .nav-menu {
        position: fixed;
        inset: 70px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 14px 18px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 35px rgba(18, 33, 47, 0.14);
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform 180ms ease, visibility 180ms ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-link {
        min-height: 50px;
        border-radius: 4px;
    }

    .section-pad {
        padding: 64px 0;
    }

    .section-band {
        padding: 52px 0 46px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .statement-grid,
    .values-grid,
    .services-grid,
    .care-grid,
    .standards-grid,
    .objectives-strip,
    .clients-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .contact-form {
        padding: 22px;
    }

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

    .process-list article {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }

    .process-list span {
        width: 40px;
        height: 40px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 29px;
        height: 29px;
    }

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

@media (max-width: 540px) {
    .brand-line {
        font-size: 0.6rem;
        max-width: 200px;
    }
}

@media (max-width: 420px) {
    .brand-line {
        font-size: 0.56rem;
        max-width: 180px;
    }

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

    .two-column h2,
    .section-heading h2,
    .approach h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        right: 16px;
        bottom: 80px;
        width: 36px;
        height: 36px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}

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

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}
