:root {
    color-scheme: light;
    --bg: #fbfaf3;
    --bg-soft: #f2efdf;
    --surface: rgba(255, 255, 250, 0.78);
    --surface-solid: #fffffa;
    --ink: #171913;
    --muted: #686a5e;
    --line: rgba(23, 25, 19, 0.12);
    --olive: #7f8c47;
    --olive-2: #a8b36f;
    --amber: #fcb016;
    --clay: #d9c4a6;
    --shadow: 0 22px 70px rgba(58, 52, 35, 0.10);
    --header-bg: rgba(251, 250, 243, 0.74);
    --header-ink: #171913;
    --font-body: "Manrope", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0f120d;
    --bg-soft: #171b11;
    --surface: rgba(24, 28, 18, 0.74);
    --surface-solid: #171b11;
    --ink: #f8f5e8;
    --muted: #b7b39f;
    --line: rgba(248, 245, 232, 0.13);
    --olive: #7f8c47;
    --olive-2: #a8b36f;
    --amber: #fcb016;
    --clay: #504535;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    --header-bg: rgba(15, 18, 13, 0.76);
    --header-ink: #f8f5e8;
}

* { box-sizing: border-box; min-width: 0; }
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--amber) 14%, transparent), transparent 26rem),
        radial-gradient(circle at 90% 18%, color-mix(in srgb, var(--olive) 13%, transparent), transparent 24rem),
        linear-gradient(180deg, var(--bg), var(--bg-soft));
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { width: 100%; max-width: 100%; overflow: hidden; }

.site-header {
    position: fixed;
    z-index: 50;
    top: 18px;
    left: 50%;
    width: min(1160px, calc(100% - 32px));
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 12px 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--header-bg);
    color: var(--header-ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: auto; height: 70px; object-fit: contain; }
.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 14px;
    background: var(--ink);
    color: var(--bg);
    font-family: var(--font-display);
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a, .theme-switch {
    padding: 10px 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: color-mix(in srgb, var(--header-ink) 78%, transparent);
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}
.site-nav a:hover, .theme-switch:hover { background: color-mix(in srgb, var(--olive) 12%, transparent); color: var(--header-ink); }
.site-nav .nav-cta { background: var(--ink); color: var(--bg); }
.theme-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bg) 50%, transparent);
}
.theme-switch-track {
    position: relative;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 999px;
    background:
        radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px),
        radial-gradient(circle at 86% 64%, rgba(255, 255, 255, 0.58) 0 1px, transparent 2px),
        linear-gradient(135deg, var(--amber), var(--olive));
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.theme-icon {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 13px;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.theme-icon-sun {
    left: 8px;
    color: #3d3105;
    opacity: 1;
}
.theme-icon-moon {
    right: 8px;
    color: #f8f5e8;
    opacity: 0.82;
}
.theme-switch-thumb {
    position: absolute;
    z-index: 2;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, #fff7c4 0 16%, transparent 17%),
        var(--bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}
:root[data-theme="dark"] .theme-switch-thumb {
    transform: translateX(24px);
    background:
        radial-gradient(circle at 65% 34%, rgba(248, 245, 232, 0.26) 0 28%, transparent 29%),
        #11140f;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.42), 0 0 18px rgba(252, 176, 22, 0.2);
}
:root[data-theme="dark"] .theme-icon-sun {
    opacity: 0.62;
}
:root[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
}
.nav-toggle { display: none; }

.section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(78px, 10vw, 138px) max(24px, calc((100% - 1160px) / 2));
    overflow-x: clip;
}

.section + .section { border-top: 1px solid var(--line); }

.section-dark {
    color: var(--ink);
    background: transparent;
}

.hero {
    min-height: 100svh;
    display: grid;
    align-items: end;
    padding-top: 160px;
    padding-bottom: clamp(54px, 8vw, 92px);
    overflow: hidden;
    padding-left: max(24px, calc((100% - 1160px) / 2));
    padding-right: max(24px, calc((100% - 1160px) / 2));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 10% auto auto 46%;
    width: min(720px, 68vw);
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 42% 58% 48% 52%;
    transform: translateX(-6%) rotate(-9deg);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--olive) 16%, transparent), transparent 42%),
        radial-gradient(circle at 66% 36%, color-mix(in srgb, var(--amber) 22%, transparent), transparent 16rem);
    opacity: 0.74;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 32%;
    background-image: linear-gradient(var(--line) 1px, transparent 1px);
    background-size: 100% 26px;
    mask-image: linear-gradient(transparent, #000);
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-width: 100%;
    text-align: left;
}

.hero-inner h1 {
    max-width: 1030px;
    overflow-wrap: anywhere;
    font-size: clamp(54px, 10vw, 132px);
    line-height: 0.88;
}

.hero-copy {
    max-width: 660px;
    margin: 30px 0 0 auto;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--olive);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

h1, h2, h3 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.06em;
}
h2 { font-size: clamp(36px, 5.6vw, 76px); line-height: 0.95; }
h3 { font-size: 24px; line-height: 1.1; }
p { color: var(--muted); line-height: 1.75; }

.hero-actions, .quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.hero-actions { justify-content: flex-end; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.button-outline { background: var(--surface); color: var(--ink); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 760px;
    margin: 48px 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: var(--line);
}
.hero-stats div {
    display: grid;
    gap: 3px;
    padding: 22px;
    background: var(--surface);
    backdrop-filter: blur(16px);
}
.hero-stats strong, .mini-stats strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
}
.hero-stats span, .mini-stats span {
    color: var(--olive);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.quick-links { justify-content: flex-end; }
.quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 16px;
    border: 1px solid color-mix(in srgb, var(--olive) 34%, var(--line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-solid) 82%, transparent);
    color: var(--ink);
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 34px rgba(58, 52, 35, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.quick-links a:hover {
    transform: translateY(-2px);
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
}
.quick-links a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--amber) 45%, transparent);
    outline-offset: 3px;
}

.pillars {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.9fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.pillars article {
    padding: clamp(24px, 4vw, 46px);
    border-right: 1px solid var(--line);
}
.pillars article:last-child { border-right: 0; }
.pillars span {
    color: var(--olive);
    font-family: var(--font-display);
    font-weight: 900;
}
.pillars h2 { margin-top: 24px; color: var(--ink); font-size: clamp(30px, 4vw, 48px); }
.pillars p { max-width: 320px; font-size: 18px; font-weight: 800; color: var(--muted); }

.values-card {
    margin-top: clamp(30px, 5vw, 60px);
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 38px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.values-grid div {
    min-height: 150px;
    padding: 20px;
    border-radius: 24px;
    background: color-mix(in srgb, var(--olive) 9%, transparent);
}
.values-grid strong {
    display: block;
    color: var(--olive);
    font-family: var(--font-display);
    font-size: 54px;
    line-height: 1;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    gap: clamp(40px, 8vw, 96px);
    align-items: center;
}
.about h2, .section-heading h2, .contact-copy h2 { color: var(--ink); }

.mini-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--line);
}
.mini-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.mini-stats span {
    max-width: 58%;
    text-align: right;
}

.energy-art {
    position: relative;
    min-height: 540px;
    border-radius: 999px 999px 36px 36px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--olive) 16%, transparent), transparent),
        var(--surface);
    overflow: hidden;
}
.energy-art::before {
    content: "";
    position: absolute;
    inset: 9%;
    border: 1px solid var(--line);
    border-radius: inherit;
}
.energy-art span {
    position: absolute;
    border-radius: 999px;
    filter: blur(0.2px);
}
.energy-art span:nth-child(1) { width: 48%; aspect-ratio: 1; left: 12%; top: 16%; background: var(--olive); opacity: 0.82; }
.energy-art span:nth-child(2) { width: 38%; aspect-ratio: 1; right: 14%; bottom: 18%; background: var(--amber); opacity: 0.86; }
.energy-art span:nth-child(3) { width: 24%; aspect-ratio: 1; inset: 0; margin: auto; background: var(--ink); }

.section-heading {
    max-width: 820px;
    margin: 0 0 52px;
    text-align: left;
}
.section-heading p { max-width: 620px; }

.service-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
}
.service-card {
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: var(--surface);
}
.service-card:last-child { border-right: 0; }
.service-card:nth-child(1) { background: var(--ink); color: var(--bg); }
.service-card span {
    color: var(--olive);
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
}
.service-card:nth-child(1) span { color: var(--amber); }
.service-card p { color: var(--muted); }
.service-card:nth-child(1) p { color: color-mix(in srgb, var(--bg) 70%, transparent); }
.service-card a { margin-top: auto; color: var(--olive); font-weight: 900; }
.service-card:nth-child(1) a { color: var(--amber); }

.service-detail { border-top: 1px solid var(--line); }
.light-detail, .olive-detail, .dark-detail { background: transparent; color: var(--ink); }
.service-detail .split {
    padding: clamp(26px, 5vw, 56px);
    border: 1px solid var(--line);
    border-radius: 38px;
    background: var(--surface);
}
.service-detail:nth-of-type(even) .split { background: color-mix(in srgb, var(--olive) 8%, var(--surface)); }
.detail-card {
    padding: 0;
    border-top: 1px solid var(--line);
}
.detail-card div {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 900;
}
.detail-card div:last-child { border-bottom: 0; }
.detail-card span { color: var(--olive); }

#impact {
    background: var(--ink);
    color: var(--bg);
}
#impact .section-heading h2,
#impact h3,
#impact .eyebrow { color: var(--bg); }
#impact p { color: color-mix(in srgb, var(--bg) 68%, transparent); }
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.impact-grid article {
    padding: clamp(24px, 4vw, 40px);
    border-right: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.impact-grid strong {
    display: block;
    color: var(--amber);
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.9;
}

.team-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.team-grid article {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--surface);
    overflow: hidden;
}
.team-grid img, .avatar { width: 100%; height: 340px; object-fit: cover; }
.avatar {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--bg-soft), color-mix(in srgb, var(--olive) 18%, var(--bg)));
    color: var(--olive);
    font-family: var(--font-display);
    font-size: 88px;
}
.team-grid h3, .team-grid p { padding: 0 26px; }
.team-grid h3 { margin-top: 24px; }
.team-grid p { margin-bottom: 28px; color: var(--muted); font-weight: 900; text-transform: uppercase; }

.why-grid article {
    min-height: 190px;
    padding: 26px;
    border-top: 1px solid var(--line);
}
.why-grid h3 { color: var(--olive); }

.partners {
    background: color-mix(in srgb, var(--olive) 7%, transparent);
}
.partner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}
.partner-row div {
    display: grid;
    min-width: 156px;
    min-height: 76px;
    place-items: center;
    padding: 18px 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-weight: 900;
}
.partner-row img { max-height: 42px; width: auto; filter: grayscale(1); opacity: 0.76; }

.contact-form {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--muted); font-weight: 900; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--bg) 78%, transparent);
    padding: 14px 16px;
    color: var(--ink);
    font: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--olive); outline: 3px solid color-mix(in srgb, var(--olive) 18%, transparent); }
.form-status { min-height: 24px; font-weight: 900; }
.form-status.success { color: var(--olive); }
.form-status.error { color: #b42318; }
.contact-methods { display: grid; gap: 18px; margin-top: 34px; }
.contact-methods div {
    display: grid;
    gap: 4px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
}
.contact-methods strong { font-family: var(--font-display); }
.contact-methods span { color: var(--muted); }
.contact-copy aside {
    margin-top: 34px;
    padding: 22px;
    border-radius: 22px;
    background: var(--ink);
    color: var(--bg);
    font-weight: 900;
}

.footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 80px max(24px, calc((100% - 1160px) / 2)) 30px;
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 0 0 100vmax var(--ink);
    clip-path: inset(0 -100vmax);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 42px;
}
.footer-logo { width: auto; height: 90px; margin-bottom: 20px; }
.footer-brand { font-family: var(--font-display); font-size: 30px; font-weight: 900; }
.footer h3 { color: var(--olive-2); font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; }
.footer a { display: block; margin: 12px 0; color: color-mix(in srgb, var(--bg) 76%, transparent); font-weight: 800; }
.footer p { color: color-mix(in srgb, var(--bg) 68%, transparent); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 28px;
    border-top: 1px solid color-mix(in srgb, var(--bg) 13%, transparent);
    color: color-mix(in srgb, var(--bg) 62%, transparent);
}
.footer-bottom strong { color: var(--amber); }

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg);
    font-weight: 1000;
    box-shadow: var(--shadow);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { border-bottom: 1px solid var(--line); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    body {
        position: relative;
    }
    .site-header {
        left: 14px;
        right: 14px;
        width: auto;
        max-width: none;
        transform: none;
        border-radius: 28px;
        align-items: flex-start;
    }
    .nav-toggle {
        display: grid;
        gap: 5px;
        width: 44px;
        height: 44px;
        place-content: center;
        border: 0;
        border-radius: 999px;
        background: color-mix(in srgb, var(--olive) 12%, transparent);
    }
    .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--header-ink); }
    .site-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--surface-solid);
        box-shadow: 0 22px 70px rgba(16, 16, 13, 0.18);
        backdrop-filter: none;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a, .theme-switch {
        width: 100%;
        justify-content: space-between;
        padding: 15px 18px;
        text-align: left;
        color: var(--ink);
        background: transparent;
    }
    .theme-switch {
        width: fit-content;
        justify-content: center;
        padding: 10px;
    }
    .site-nav a:hover,
    .theme-switch:hover {
        background: rgba(127, 140, 71, 0.12);
    }
    .site-nav .nav-cta {
        justify-content: center;
        background: var(--ink);
        color: var(--bg);
    }
    .split, .pillars, .values-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
    .footer-grid,
    .service-grid,
    .impact-grid,
    .mini-stats {
        grid-template-columns: 1fr;
    }
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .service-card {
        border-right: 0;
    }
    .pillars article { border-right: 0; border-bottom: 1px solid var(--line); }
    .pillars article:last-child { border-bottom: 0; }
    .energy-art { min-height: 360px; border-radius: 34px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions, .quick-links { justify-content: flex-start; }
    .hero-copy, .hero-stats { margin-left: 0; }
    .hero::before {
        inset: 92px auto auto 30%;
        width: 520px;
        max-width: 84vw;
        transform: translateX(0) rotate(-9deg);
    }
    .brand img { height: 50px; }
}

@media (max-width: 620px) {
    .section { padding-left: 20px; padding-right: 20px; }
    .footer {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero {
        padding-top: 138px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-inner h1 {
        max-width: 100%;
        font-size: clamp(44px, 15.2vw, 68px);
        line-height: 0.92;
        letter-spacing: -0.065em;
    }
    .hero-copy {
        max-width: 100%;
        font-size: 16px;
    }
    .hero-stats {
        width: 100%;
        max-width: 100%;
    }
    .quick-links {
        max-width: 100%;
    }
    .quick-links a {
        overflow-wrap: anywhere;
    }
    .mini-stats div {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .mini-stats span {
        max-width: 100%;
        text-align: left;
    }
    .hero-stats, .service-grid, .impact-grid, .mini-stats, .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .brand img { height: 50px; }
}
