:root {
    --orange-500: #f07f24;
    --orange-400: #ff9a3d;
    --orange-100: #fff1e4;
    --green-700: #0f7f47;
    --green-600: #159256;
    --green-500: #21a265;
    --green-100: #e7f8ee;
    --green-050: #f3fbf6;
    --ink-950: #11231d;
    --ink-900: #16352b;
    --ink-700: #45655a;
    --ink-500: #6e897f;
    --white: #ffffff;
    --surface: #f9fbf8;
    --surface-strong: #eef6ef;
    --border: rgba(17, 35, 29, 0.1);
    --shadow-soft: 0 20px 60px rgba(22, 53, 43, 0.08);
    --shadow-strong: 0 28px 80px rgba(22, 53, 43, 0.16);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --transition: 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Urbanist", sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(240, 127, 36, 0.08), transparent 32%),
        linear-gradient(180deg, #fffefb 0%, var(--surface) 30%, #ffffff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
    background: none;
    border: 0;
}

ul {
    list-style: none;
}

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

.section-space {
    padding: 110px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 920px;
    margin-bottom: 42px;
}

.section-kicker {
    color: var(--green-600);
}

.section-heading h2,
.quality-copy h2,
.story-copy h2,
.contact-copy h2 {
    margin: 14px 0 18px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.15rem, 4vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--ink-950);
}

.section-heading p,
.quality-copy p,
.story-copy p,
.contact-copy p,
.service-card p,
.quality-card p,
.coverage-note p,
.footer p {
    color: var(--ink-700);
    font-size: 1.05rem;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-kicker {
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    box-shadow: 0 18px 40px rgba(240, 127, 36, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 26px 46px rgba(240, 127, 36, 0.35);
}

.btn-secondary {
    color: var(--ink-950);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
}

.btn-large {
    padding: 16px 28px;
}

.btn-nav {
    padding: 14px 22px;
    font-size: 0.96rem;
}

.btn-submit {
    width: 100%;
    padding: 16px 20px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #19b857);
    color: var(--white);
    font-size: 1.65rem;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.32);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.94);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.topbar {
    background: var(--ink-950);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.topbar-content,
.topbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-content {
    padding: 10px 0;
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffe4ca;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.header.scrolled {
    box-shadow: 0 18px 38px rgba(17, 35, 29, 0.08);
    border-color: rgba(17, 35, 29, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 76px;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
}

.brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    color: var(--ink-950);
}

.brand span {
    display: block;
    font-size: 0.93rem;
    color: var(--ink-700);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-weight: 700;
    color: var(--ink-900);
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange-500), var(--green-500));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-050);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

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

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 104px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(14px);
}

.hero-glow-one {
    width: 430px;
    height: 430px;
    top: -180px;
    right: -80px;
    background: rgba(240, 127, 36, 0.18);
}

.hero-glow-two {
    width: 340px;
    height: 340px;
    left: -110px;
    bottom: 40px;
    background: rgba(21, 146, 86, 0.12);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 34px;
    align-items: center;
}

.hero-copy h1 {
    margin: 18px 0 20px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.75rem, 5.2vw, 5rem);
    line-height: 1.01;
    letter-spacing: -0.06em;
    color: var(--ink-950);
}

.hero-copy h1 span {
    color: var(--green-600);
}

.hero-lead {
    max-width: 620px;
    color: var(--ink-700);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 24px;
}

.hero-quick-actions {
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    max-width: 620px;
}

.hero-quick-actions p {
    margin-bottom: 12px;
    color: var(--ink-700);
    font-weight: 700;
}

.quick-action-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-action {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--green-050);
    color: var(--green-700);
    font-weight: 700;
    border: 1px solid rgba(21, 146, 86, 0.12);
    transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.quick-action:hover {
    transform: translateY(-2px);
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 16px 28px rgba(21, 146, 86, 0.22);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.hero-stats article {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow-soft);
}

.hero-stats strong,
.quality-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.28rem;
    line-height: 1.1;
    color: var(--ink-950);
}

.hero-stats span,
.quality-card span {
    display: block;
    margin-top: 8px;
    color: var(--ink-700);
    font-size: 0.96rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 18px;
    align-items: center;
}

.hero-main-card,
.hero-side-card,
.story-photo,
.gallery-item,
.contact-card,
.service-card,
.quality-card,
.coverage-card,
.coverage-note {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.hero-main-card {
    min-height: 500px;
    isolation: isolate;
}

.hero-main-card > img,
.hero-side-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-photo img,
.gallery-item img {
    height: 100%;
    object-fit: cover;
}

.hero-card-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(17, 35, 29, 0.88), rgba(21, 146, 86, 0.82));
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-card-badge span {
    display: block;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.84;
}

.hero-card-badge strong {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.hero-side-card {
    min-height: 240px;
}

.hero-side-lab {
    transform: translateY(-18px);
}

.hero-side-reception {
    transform: translateY(18px);
}

.trust-strip {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

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

.trust-grid article {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.trust-grid i,
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(240, 127, 36, 0.16), rgba(21, 146, 86, 0.16));
    color: var(--green-700);
    flex-shrink: 0;
}

.trust-grid h3,
.service-card h3,
.coverage-card h3,
.coverage-note h3,
.contact-highlights h3,
.story-pillars h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    color: var(--ink-950);
    margin-bottom: 8px;
}

.trust-grid p,
.coverage-card p,
.contact-highlights p,
.story-pillars p {
    color: var(--ink-700);
}

.services-section {
    padding-top: 120px;
}

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

.service-card {
    padding: 28px;
    border: 1px solid rgba(17, 35, 29, 0.06);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 146, 86, 0), rgba(21, 146, 86, 0.03));
    pointer-events: none;
}

.service-card h3 {
    margin: 18px 0 12px;
}

.quality-section {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(21, 146, 86, 0.08), rgba(240, 127, 36, 0.06)),
        var(--surface-strong);
}

.quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.quality-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-900);
    font-weight: 700;
}

.quality-list i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 146, 86, 0.12);
    color: var(--green-700);
}

.quality-cards {
    display: grid;
    gap: 18px;
}

.quality-card {
    padding: 26px;
    border: 1px solid rgba(17, 35, 29, 0.08);
}

.quality-card-iso {
    display: grid;
    grid-template-columns: minmax(132px, 164px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff8ef);
}

.quality-card-iso img {
    width: 100%;
    max-width: 164px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(137, 104, 22, 0.22));
}

.quality-card-iso-copy {
    display: grid;
    gap: 14px;
}

.quality-tag-light {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(240, 127, 36, 0.14);
    color: #b46416;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quality-card-highlight {
    min-height: 240px;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(14, 53, 36, 0.98), rgba(21, 146, 86, 0.92)),
        var(--green-700);
    box-shadow: var(--shadow-strong);
}

.quality-card-highlight .quality-tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quality-card-highlight h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.quality-card-highlight p {
    color: rgba(255, 255, 255, 0.82);
}

.story-grid,
.contact-grid,
.coverage-layout {
    display: grid;
    gap: 30px;
    align-items: start;
}

.story-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.story-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
        "large small-one"
        "large small-two";
    gap: 18px;
    min-height: 500px;
}

.story-photo-large {
    grid-area: large;
}

.story-photo-small:first-of-type {
    grid-area: small-one;
}

.story-photo-small:last-of-type {
    grid-area: small-two;
}

.story-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.story-pillars article {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--green-050);
    border: 1px solid rgba(21, 146, 86, 0.08);
}

.coverage-section {
    background: linear-gradient(180deg, rgba(240, 127, 36, 0.04), rgba(255, 255, 255, 0));
}

.coverage-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.coverage-card,
.coverage-note {
    padding: 30px;
    border: 1px solid rgba(17, 35, 29, 0.08);
}

.coverage-card {
    min-height: 100%;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.coverage-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--orange-100);
    color: var(--ink-900);
    font-weight: 700;
}

.coverage-note {
    background: linear-gradient(180deg, rgba(21, 146, 86, 0.95), rgba(11, 102, 58, 1));
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.coverage-note h3,
.coverage-note p {
    color: var(--white);
}

.coverage-note .btn {
    margin-top: 22px;
    padding: 15px 24px;
    min-width: 230px;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(240, 127, 36, 0.28);
}

.gallery-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at top left, rgba(240, 127, 36, 0.18), transparent 24%),
        linear-gradient(135deg, #143128, #0c221c 60%, #103d2f 100%);
}

.gallery-section .section-heading {
    max-width: 980px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.9fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.gallery-item,
.gallery-item-wide {
    min-height: 280px;
    aspect-ratio: 4 / 3;
}

.gallery-item-wide {
    aspect-ratio: 16 / 10;
}

.gallery-item-reception img {
    object-position: center 22%;
}

.gallery-item-products img {
    object-position: center center;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
}

.contact-highlights {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-highlights article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(17, 35, 29, 0.08);
    box-shadow: var(--shadow-soft);
}

.contact-highlights article > div {
    display: grid;
    gap: 4px;
    align-content: start;
}

.contact-highlights i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 127, 36, 0.14);
    color: var(--orange-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card {
    padding: 32px;
    border: 1px solid rgba(17, 35, 29, 0.08);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(17, 35, 29, 0.12);
    background: #fcfdfc;
    color: var(--ink-900);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(21, 146, 86, 0.48);
    box-shadow: 0 0 0 4px rgba(21, 146, 86, 0.12);
}

.footer {
    padding: 34px 0 46px;
    background: var(--ink-950);
    color: rgba(255, 255, 255, 0.86);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.footer img {
    width: 86px;
    margin-bottom: 14px;
}

.footer strong {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font-family: "Sora", sans-serif;
}

.footer a {
    display: block;
    margin-top: 8px;
}

@media (max-width: 1120px) {
    .trust-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .quality-grid,
    .story-grid,
    .coverage-layout,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: 1fr 168px;
    }

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

    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 880px) {
    .topbar-content,
    .topbar-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .desktop-only {
        display: none;
    }

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

    .nav-menu {
        position: fixed;
        top: 112px;
        left: 20px;
        right: 20px;
        padding: 24px;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-strong);
        border: 1px solid rgba(17, 35, 29, 0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero {
        padding-top: 32px;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    .hero-stats,
    .story-pillars {
        grid-template-columns: 1fr;
    }

    .quality-card-iso {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quality-tag-light {
        margin: 0 auto;
    }

    .hero-visual,
    .story-gallery,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-side-lab,
    .hero-side-reception {
        transform: none;
    }

    .hero-main-card,
    .hero-side-card,
    .gallery-item,
    .gallery-item-wide {
        min-height: 280px;
    }

    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }

    .trust-strip {
        margin-top: -20px;
    }
}

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

    .section-space,
    .quality-section,
    .gallery-section {
        padding: 78px 0;
    }

    .nav {
        min-height: 82px;
    }

    .brand img {
        width: 64px;
    }

    .hero-actions,
    .quick-action-list {
        flex-direction: column;
    }

    .btn-large,
    .btn-submit,
    .quick-action,
    .coverage-note .btn {
        width: 100%;
    }

    .trust-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px;
    }

    .section-heading h2,
    .quality-copy h2,
    .story-copy h2,
    .contact-copy h2 {
        font-size: clamp(1.95rem, 8vw, 2.9rem);
        line-height: 1.1;
    }

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