@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    /* Sampled from the opaque pixels of the original PNG. */
    --brand-green: #00a900;
    --brand-red: #f31021;
    --brand-orange: #f94b0b;
    --brand-yellow: #ffd64d;
    --brand-black: #000000;
    /* Darker and lighter green variants keep text and controls readable. */
    --green: #356b3c;
    --green-bright: #a5cc8a;
    --green-pale: #e8efe3;
    --green-soft: #dce7d5;
    --green-border: #bacdb2;
    --green-muted: #c1d4b4;
    --green-dark: #20482d;
    --green-deep: #183823;
    --ink: #1e2b21;
    --ink-soft: #586354;
    --night: #102519;
    --footer: #0b1b11;
    --red-dark: #a83d3d;
    --accent-copper: #b97850;
    --text-on-dark: #d6dfd0;
    --text-on-dark-muted: #bac9b4;
    --focus: #93631c;
    --yellow: #e9c76a;
    --yellow-soft: #f2d994;
    --cream: #f4f3ec;
    --paper: #fffefa;
    --line: rgba(30, 43, 33, .14);
    --white-line: rgba(255, 255, 255, .17);
    --shadow: 0 28px 70px rgba(16, 37, 25, .12);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 86px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-family: 'Manrope', Arial, sans-serif;
    line-height: 1.08;
    letter-spacing: -.045em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    font-weight: 700;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section { padding: 132px 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 18px;
    color: var(--paper);
    background: var(--night);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    background: rgba(255, 254, 250, .96);
    border-bottom: 1px solid transparent;
    transition: height .3s ease, box-shadow .3s ease, border-color .3s ease;
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    height: 74px;
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(16, 37, 25, .07);
}

.header-shell {
    width: min(calc(100% - 48px), 1380px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 172px;
    height: 56px;
    object-fit: cover;
}

.brand-line {
    max-width: 72px;
    padding-left: 14px;
    color: var(--ink-soft);
    border-left: 1px solid var(--line);
    font-size: .66rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 26px);
}

.main-nav > a {
    position: relative;
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .025em;
    white-space: nowrap;
}

.main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    color: var(--paper);
    background: var(--green-dark);
    border-radius: 100px;
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--green); transform: translateY(-2px); }

.nav-cta svg,
.button svg,
.text-link svg,
.cert-action svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform .25s ease, opacity .25s ease;
}

.hero {
    position: relative;
    min-height: max(780px, 100svh);
    padding-top: var(--header-height);
    overflow: hidden;
    color: var(--paper);
    background: var(--night);
}

.hero-media,
.hero-overlay,
.hero-grid-lines {
    position: absolute;
    inset: var(--header-height) 0 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    animation: hero-scale 18s ease-out both;
}

@keyframes hero-scale { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(16, 37, 25, .93) 0%, rgba(16, 37, 25, .77) 42%, rgba(16, 37, 25, .18) 78%),
        linear-gradient(0deg, rgba(16, 37, 25, .65) 0%, transparent 45%);
}

.hero-grid-lines {
    opacity: .6;
    background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.09) 25%, transparent calc(25% + 1px));
    background-size: 25% 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(max(780px, 100svh) - var(--header-height));
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
    align-items: center;
    gap: 80px;
    padding-top: 64px;
    padding-bottom: 100px;
}

.hero-copy { max-width: 860px; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 2px;
    background: currentColor;
}

.eyebrow-light { color: var(--yellow); }

.hero h1 {
    max-width: 850px;
    margin-bottom: 30px;
    font-size: clamp(3.4rem, 7.4vw, 7.2rem);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.07em;
}

.hero h1 em,
.safety h2 em,
.contact h2 em {
    color: var(--yellow);
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 38px;
    color: var(--text-on-dark);
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: .94rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--yellow); border-color: var(--yellow); box-shadow: 0 6px 20px rgba(16,37,25,.16); }
.button-primary:hover { background: var(--yellow-soft); border-color: var(--yellow-soft); }
.button-ghost { color: var(--paper); border-color: rgba(255,255,255,.45); }
.button-ghost:hover { color: var(--ink); background: #fff; border-color: var(--paper); }

.hero-proof {
    align-self: end;
    margin-bottom: 96px;
    padding: 26px 0 2px 32px;
    border-left: 1px solid rgba(255,255,255,.38);
}

.proof-number {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(4.4rem, 7vw, 7rem);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.08em;
}

.proof-number span { color: var(--yellow); font-size: .5em; vertical-align: top; }
.hero-proof > p { max-width: 240px; margin: 24px 0; color: var(--text-on-dark); line-height: 1.5; }
.proof-rule { height: 1px; margin-bottom: 18px; background: var(--white-line); }
.proof-meta { display: grid; gap: 7px; color: var(--text-on-dark-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: var(--green-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(165,204,138,.2); }

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-muted);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i { position: relative; width: 1px; height: 28px; overflow: hidden; background: rgba(255,255,255,.25); }
.scroll-cue i::after { position: absolute; inset: -100% 0 auto; height: 100%; background: #fff; content: ''; animation: scroll-line 2s infinite; }
@keyframes scroll-line { 0% { transform: translateY(0); } 100% { transform: translateY(200%); } }

.trust-strip { background: var(--green-dark); color: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { min-height: 170px; padding: 36px 28px; display: flex; align-items: flex-start; gap: 18px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-grid article:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.trust-index { color: var(--yellow); font-family: 'Manrope', sans-serif; font-size: .74rem; font-weight: 700; }
.trust-grid strong { display: block; margin-bottom: 8px; font-family: 'Manrope', sans-serif; font-size: 1.05rem; }
.trust-grid p { margin: 0; color: var(--text-on-dark); font-size: .9rem; line-height: 1.45; }

.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); align-items: end; gap: 80px; }
.split-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--ink-soft); font-size: 1.05rem; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 480px; overflow: hidden; color: var(--paper); background: var(--night); border-radius: var(--radius); }
.service-card-wide { grid-column: span 2; min-height: 560px; }
.service-image, .service-shade { position: absolute; inset: 0; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.service-card-wide .service-image img { object-position: center 43%; }
.service-shade { background: linear-gradient(0deg, rgba(16,37,25,.91) 0%, rgba(16,37,25,.23) 65%, rgba(16,37,25,.12) 100%); }
.service-card::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.2); border-radius: inherit; content: ''; pointer-events: none; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-number { position: absolute; z-index: 1; top: 26px; left: 28px; display: grid; width: 46px; height: 46px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.service-content { position: absolute; z-index: 1; right: 32px; bottom: 34px; left: 32px; }
.service-card-wide .service-content { max-width: 700px; }
.service-content h3 { margin-bottom: 13px; font-size: clamp(1.6rem, 2.5vw, 2.45rem); }
.service-content p { max-width: 650px; margin: 0; color: var(--text-on-dark); font-size: .95rem; line-height: 1.55; }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.about-visual { position: relative; padding: 0 0 58px 38px; }
.about-visual::before { position: absolute; top: 30px; bottom: 20px; left: 0; width: 62%; background: var(--green-pale); border-radius: var(--radius); content: ''; }
.about-image-main { position: relative; height: 680px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.about-stamp { position: absolute; right: -30px; bottom: 0; display: flex; width: 180px; height: 180px; flex-direction: column; align-items: center; justify-content: center; color: var(--paper); background: var(--green-dark); border: 8px solid var(--paper); border-radius: 50%; text-align: center; }
.about-stamp span, .about-stamp small { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-stamp strong { margin: 2px 0; color: var(--yellow); font-family: 'Manrope', sans-serif; font-size: 2.3rem; line-height: 1; letter-spacing: -.05em; }
.about-caption { position: absolute; bottom: 5px; left: 65px; max-width: 240px; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.about-copy h2 { margin-bottom: 30px; }
.about-copy > p { color: var(--ink-soft); }
.about-copy .about-lead { color: var(--ink); font-size: 1.14rem; line-height: 1.65; }
.about-copy blockquote { margin: 34px 0; padding: 22px 0 22px 24px; color: var(--green-dark); border-left: 3px solid var(--yellow); font-family: Georgia, serif; font-size: 1.18rem; font-style: italic; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--green); font-weight: 700; }
.text-link:hover svg { transform: translateX(4px); }
.text-link svg { transition: transform .2s ease; }

.safety { position: relative; overflow: hidden; color: var(--paper); background: var(--green-dark); }
.safety::before { position: absolute; top: -220px; right: -180px; width: 600px; height: 600px; border: 1px solid rgba(233,199,106,.25); border-radius: 50%; content: ''; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.safety-intro { position: relative; display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 80px; margin-bottom: 70px; }
.safety-intro > p { max-width: 430px; margin: 0 0 10px; color: var(--text-on-dark-muted); font-size: 1.05rem; }
.safety-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.safety-grid article { min-height: 410px; padding: 38px 30px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); transition: background .25s ease, transform .25s ease; }
.safety-grid article:hover { background: rgba(255,255,255,.06); transform: translateY(-5px); }
.feature-icon { display: grid; width: 60px; height: 60px; margin-bottom: 80px; place-items: center; color: var(--yellow); background: rgba(233,199,106,.1); border: 1px solid rgba(233,199,106,.27); border-radius: 50%; }
.feature-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-kicker { display: block; margin-bottom: 14px; color: var(--green-bright); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.safety-grid h3 { margin-bottom: 16px; font-size: 1.36rem; letter-spacing: -.03em; }
.safety-grid p { margin: 0; color: var(--text-on-dark-muted); font-size: .9rem; line-height: 1.6; }

.certifications { background: var(--paper); }
.compact-heading { margin-bottom: 50px; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cert-card { position: relative; min-height: 350px; padding: 38px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .3s ease, background .3s ease; }
.cert-card::before { position: absolute; right: -80px; bottom: -100px; width: 240px; height: 240px; background: var(--green-pale); border-radius: 50%; content: ''; transition: transform .4s ease; }
.cert-card:hover { color: var(--paper); background: var(--green-dark); }
.cert-card:hover::before { transform: scale(1.2); opacity: .12; }
.cert-code { display: block; margin-bottom: 56px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.cert-card:hover .cert-code { color: var(--yellow); }
.cert-card strong { display: block; font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1; letter-spacing: -.06em; }
.cert-card p { margin: 13px 0 0; color: var(--ink-soft); }
.cert-card:hover p { color: var(--text-on-dark); }
.cert-action { position: absolute; z-index: 1; right: 38px; bottom: 30px; left: 38px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; font-weight: 700; }

.clients { padding-bottom: 150px; overflow: hidden; background: var(--cream); }
.clients-heading { margin-bottom: 64px; text-align: center; }
.clients-heading .eyebrow { justify-content: center; }
.client-track-wrap { position: relative; overflow: hidden; }
.client-track-wrap::before, .client-track-wrap::after { position: absolute; z-index: 2; top: 0; bottom: 0; width: 12vw; content: ''; pointer-events: none; }
.client-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.client-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.client-track { display: flex; width: max-content; animation: logo-track 38s linear infinite; }
.client-track:hover { animation-play-state: paused; }
.client-logo { width: 220px; height: 125px; padding: 27px; display: grid; place-items: center; background: rgba(255,255,255,.6); border: 1px solid rgba(30,43,33,.08); border-right: 0; }
.client-logo img { max-width: 150px; max-height: 70px; width: auto; height: auto; mix-blend-mode: multiply; filter: grayscale(1); opacity: .72; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@keyframes logo-track { to { transform: translateX(-50%); } }

.contact { color: var(--paper); background: var(--night); }
.contact-top { padding: 130px 0 110px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); gap: clamp(60px, 9vw, 130px); }
.contact-copy h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 5.5vw, 5.2rem); }
.contact-copy > p { max-width: 520px; color: var(--text-on-dark-muted); font-size: 1.05rem; }
.contact-details { display: grid; gap: 0; margin-top: 54px; border-top: 1px solid var(--white-line); }
.contact-details > * { padding: 20px 0; border-bottom: 1px solid var(--white-line); }
.contact-details span { display: block; margin-bottom: 4px; color: var(--green-bright); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { color: var(--text-on-dark); font-weight: 500; }
.contact-details a:hover strong { color: var(--yellow); }
.contact-panel { padding: 42px; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 28px 80px rgba(0,0,0,.25); }
.contact-form { display: grid; gap: 21px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .75rem; font-weight: 700; letter-spacing: .025em; }
.field label span { color: var(--green); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 2px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(30,43,33,.28); border-radius: 0; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.field textarea { min-height: 92px; resize: vertical; }
.field small, .standalone-error { color: var(--red-dark); font-size: .73rem; }
.field [aria-invalid="true"] { border-color: var(--red-dark); }
.check-field { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .74rem; line-height: 1.45; cursor: pointer; }
.check-field input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--green); }
.button-dark { justify-self: start; padding-inline: 28px; color: var(--paper); background: var(--green-dark); }
.button-dark:hover { background: var(--green); }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-success { display: flex; gap: 14px; margin-bottom: 26px; padding: 16px; color: var(--green-dark); background: var(--green-pale); border: 1px solid var(--green-border); border-radius: var(--radius-sm); }
.form-success svg { flex: 0 0 auto; width: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success strong { display: block; }
.form-success p { margin: 2px 0 0; font-size: .84rem; line-height: 1.4; }
.form-hint { margin: 0; color: var(--ink-soft); font-size: .8rem; line-height: 1.55; }
.whatsapp-continue { margin-top: 16px; padding: 10px 18px; min-height: 44px; font-size: .8rem; }
.map-wrap { position: relative; height: 460px; overflow: hidden; background: var(--green-soft); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.55) contrast(1.05); }
.map-label { position: absolute; right: 28px; bottom: 28px; padding: 14px 18px; color: var(--paper); background: var(--green-dark); border-radius: 10px; font-size: .85rem; font-weight: 700; box-shadow: var(--shadow); }
.map-label span { display: block; color: var(--text-on-dark-muted); font-size: .62rem; font-weight: 500; letter-spacing: .08em; }

.site-footer { color: var(--paper); background: var(--footer); }
.footer-main { padding: 70px 0 60px; display: flex; justify-content: space-between; gap: 70px; }
.footer-brand img { width: 180px; height: 60px; margin-bottom: 20px; object-fit: cover; }
.footer-brand p { max-width: 330px; margin: 0; color: var(--text-on-dark-muted); }
.footer-links { display: flex; gap: clamp(60px, 10vw, 130px); }
.footer-links > div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 10px; color: var(--yellow); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: var(--text-on-dark-muted); font-size: .88rem; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--text-on-dark-muted); border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; height: 54px; align-items: center; gap: 9px; padding: 0 18px 0 14px; color: var(--paper); background: var(--green); border-radius: 100px; box-shadow: 0 12px 36px rgba(0,0,0,.22); font-size: .78rem; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.whatsapp svg { width: 27px; fill: currentColor; }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .main-nav { gap: 14px; }
    .main-nav > a { font-size: .7rem; }
    .brand-line { display: none; }
    .nav-cta { padding: 11px 15px; }
    .hero-content { grid-template-columns: 1fr 240px; gap: 45px; }
    .safety-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 50px; }
}

@media (max-width: 900px) {
    :root { --header-height: 76px; }
    .section { padding: 100px 0; }
    .brand img { width: 148px; height: 48px; }
    .brand-line { display: none; }
    .nav-toggle { display: block; }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
    .main-nav { position: fixed; top: 100%; right: 0; left: 0; height: calc(100dvh - var(--header-height)); overflow-y: auto; padding: 20px 28px 32px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); visibility: hidden; transform: translateX(100%); transition: transform .32s ease, visibility .32s; }
    .main-nav.is-open { visibility: visible; transform: translateX(0); }
    .main-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: 'Manrope', sans-serif; font-size: 1.1rem; }
    .main-nav > a::after { display: none; }
    .main-nav .nav-cta { justify-content: center; margin-top: 28px; padding: 15px 20px; color: var(--paper); font-family: 'DM Sans', sans-serif; font-size: .96rem; border: 0; }
    .hero-content { grid-template-columns: 1fr; align-content: center; padding-top: 85px; }
    .hero-copy { max-width: 720px; }
    .hero-proof { display: none; }
    .hero-overlay { background: linear-gradient(90deg, rgba(16,37,25,.92), rgba(16,37,25,.42)), linear-gradient(0deg, rgba(16,37,25,.7), transparent); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.18); }
    .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
    .split-heading, .safety-intro { grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .service-card, .service-card-wide { grid-column: auto; min-height: 480px; }
    .about-grid { grid-template-columns: 1fr; gap: 75px; }
    .about-visual { max-width: 680px; }
    .about-image-main { height: 590px; }
    .about-copy { max-width: 680px; }
    .cert-grid { grid-template-columns: 1fr; }
    .cert-card { min-height: 260px; }
    .cert-code { margin-bottom: 34px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-copy { max-width: 680px; }
}

@media (max-width: 640px) {
    :root { --radius: 17px; }
    .container, .header-shell { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 78px 0; }
    h2 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
    .hero { min-height: 760px; }
    .hero-content { min-height: calc(760px - var(--header-height)); padding-top: 65px; padding-bottom: 80px; }
    .hero h1 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .scroll-cue { display: none; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid article { min-height: 130px; border-left: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .service-card-wide { min-height: 440px; }
    .service-content { right: 24px; bottom: 26px; left: 24px; }
    .service-content h3 { font-size: 1.6rem; }
    .about-visual { padding-left: 16px; }
    .about-image-main { height: 470px; }
    .about-stamp { right: -8px; width: 145px; height: 145px; }
    .about-stamp strong { font-size: 1.9rem; }
    .about-caption { display: none; }
    .safety-grid { grid-template-columns: 1fr; }
    .safety-grid article { min-height: 330px; }
    .feature-icon { margin-bottom: 50px; }
    .cert-card { padding: 30px; }
    .client-logo { width: 175px; height: 105px; }
    .contact-top { padding: 84px 0 72px; }
    .contact-panel { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .map-wrap { height: 380px; }
    .map-label { right: 16px; bottom: 16px; }
    .footer-main { flex-direction: column; }
    .footer-links { gap: 50px; }
    .footer-bottom { flex-direction: column; gap: 4px; }
    .whatsapp { right: 14px; bottom: 14px; width: 52px; padding: 0; justify-content: center; }
    .whatsapp span { display: none; }
}

.about-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; }
.about-image-main { height: 490px; }
.about-image-main img { object-position: 63% center; }
.scope-link { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding: 22px; background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 14px; transition: background .2s; }
.scope-link:hover { background: var(--green-soft); }
.scope-link strong { display: block; font-size: .86rem; color: var(--green-dark); }
.scope-link small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .75rem; }
.pdf-badge { flex: 0 0 auto; display: grid; place-items: center; width: 39px; height: 47px; color: var(--paper); background: var(--red-dark); border-radius: 5px 11px 5px 5px; font-size: .65rem; font-weight: 800; letter-spacing: .03em; }
.document-arrow { margin-left: auto; font-size: 1.35rem; flex-shrink: 0; }
.purpose-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 78px; }
.purpose-card { padding: 36px 32px; border: 1.5px solid var(--green-border); border-radius: 34px; text-align: center; }
.purpose-icon { display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 26px; color: var(--green-dark); background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 26px; box-shadow: inset 0 0 0 5px var(--paper); }
.purpose-icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.purpose-card h3 { display: inline-block; margin-bottom: 24px; padding-bottom: 10px; border-bottom: 2px solid var(--accent-copper); font-size: 1.5rem; letter-spacing: -.03em; }
.purpose-card p, .purpose-card ul { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.65; }
.purpose-card ul { margin-top: 14px; padding-left: 20px; text-align: left; }
.fleet { background: var(--cream); }
.fleet-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.fleet-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.fleet-gallery .fleet-main { grid-column: 1 / -1; }
.fleet-gallery img { width: 100%; height: auto; }
.fleet-gallery figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 28px 24px; background: linear-gradient(transparent, rgba(16, 37, 25, .85)); color: var(--paper); font-size: .9rem; }
.policy-heading { position: relative; margin-bottom: 24px; }
.policy-heading h3 { margin-bottom: 8px; font-size: 1.8rem; }
.policy-heading p { margin-bottom: 0; color: var(--text-on-dark); }
.policy-layout { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: start; }
.policy-feature { display: flex; flex-direction: column; align-items: flex-start; padding: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.policy-feature .pdf-badge { width: 62px; height: 76px; font-size: .95rem; margin-bottom: 32px; }
.policy-code { color: var(--yellow); font-size: .74rem; letter-spacing: .06em; margin-bottom: 12px; }
.policy-feature h3 { font-size: 2.1rem; margin-bottom: 18px; }
.policy-feature p { color: var(--text-on-dark); }
.policy-feature .text-link { color: var(--yellow); margin-top: 28px; }
.policy-feature:hover, .policy-row:hover { background: rgba(255,255,255,.13); }
.policy-list { display: grid; border-top: 1px solid var(--white-line); }
.policy-row { display: flex; gap: 18px; align-items: center; padding: 17px 12px; border-bottom: 1px solid var(--white-line); transition: background .2s; }
.policy-row small { display: block; color: var(--green-muted); font-size: .67rem; letter-spacing: .05em; margin-bottom: 3px; }
.policy-row strong { display: block; font-size: .92rem; line-height: 1.45; font-weight: 500; }
.operations-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 80px; }
.operation-card { overflow: hidden; border-radius: var(--radius); background: var(--green-deep); }
.operation-card > img { width: 100%; aspect-ratio: 1; height: auto; object-fit: cover; object-position: 64% center; }
.operation-card > div { padding: 32px; }
.operation-card h3 { font-size: 2rem; margin-bottom: 16px; }
.operation-card .feature-kicker { color: var(--green-muted); }
.operation-card p { color: var(--text-on-dark); margin: 0; }
.aenor-card { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 24px; padding: 38px; background: var(--green-pale); border-radius: var(--radius); }
.aenor-card .cert-code { margin-bottom: 16px; }
.aenor-card h3 { font-size: 2.7rem; margin-bottom: 12px; }
.aenor-card p { color: var(--ink-soft); margin: 0; }
.certificate-languages { display: flex; gap: 12px; flex-shrink: 0; }
.button-outline { border-color: var(--green-dark); color: var(--green-dark); }
.button-outline:hover { color: var(--paper); background: var(--green-dark); }
.location { background: var(--paper); }
.location-address p { color: var(--ink-soft); }
.location .map-wrap { border-radius: var(--radius); border: 1px solid var(--line); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 5px; }
.safety a:focus-visible, .hero a:focus-visible, .contact :focus-visible, .site-footer a:focus-visible { outline-color: var(--yellow); }
.contact-panel :focus-visible { outline-color: var(--focus); }
@media (max-width: 1100px) and (min-width: 901px) { .brand-line { display: none; } }
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { max-width: none; }
    .about-image-main { height: 450px; }
    .about-copy { max-width: none; }
    .purpose-grid { gap: 16px; }
    .purpose-card { padding: 28px 18px; }
    .policy-layout { grid-template-columns: 1fr; }
    .aenor-card { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
    .purpose-grid, .fleet-gallery, .operations-grid { grid-template-columns: 1fr; }
    .purpose-grid { margin-top: 48px; gap: 22px; }
    .purpose-card { padding: 32px; }
    .about-image-main { height: 340px; }
    .about-visual { padding-bottom: 24px; }
    .scope-link { gap: 12px; padding: 16px; }
    .scope-link strong { font-size: .76rem; }
    .scope-link small { font-size: .7rem; }
    .fleet-gallery { gap: 16px; }
    .fleet-gallery figcaption { font-size: .75rem; padding: 32px 16px 16px; }
    .policy-feature { padding: 28px; }
    .policy-row { gap: 12px; padding: 17px 0; }
    .policy-row strong { font-size: .86rem; }
    .operation-card > div { padding: 26px; }
    .aenor-card { padding: 28px; }
    .certificate-languages { width: 100%; flex-wrap: wrap; }
    .contact-details strong { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .client-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}
