:root {
    --navy: #07152f;
    --navy-dark: #041022;
    --green: #79c141;
    --deep-green: #10251f;
    --ink: #172033;
    --muted: #5d6678;
    --light: #f7f9fb;
    --mist: #eef3f6;
    --line: #dde6ed;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(7, 21, 47, .12);
    --shadow-hover: 0 24px 60px rgba(7, 21, 47, .18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(121, 193, 65, .8);
    outline-offset: 3px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 37, 31, .96);
    box-shadow: 0 10px 30px rgba(4, 16, 34, .18);
    backdrop-filter: blur(14px);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #ffffff);
    z-index: 1500;
}

.site-nav {
    width: min(1160px, calc(100% - 48px));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
    line-height: 0;
}

.site-logo-img {
    width: clamp(220px, 24vw, 320px);
    height: auto;
    max-height: 74px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-links a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: .96rem;
    transition: color .18s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform .18s ease, opacity .18s ease;
}

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

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

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

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 92px 0 112px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(7, 21, 47, .94), rgba(7, 21, 47, .72), rgba(7, 21, 47, .2)),
        url("../images/vertex.hero.png");
    background-size: cover;
    background-position: center;
}

.home-hero {
    min-height: 650px;
}

.compact-hero {
    min-height: 360px;
}

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

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: 0;
}

.hero h1,
.hero h2 {
    color: #ffffff;
}

h1 {
    max-width: 860px;
    font-size: clamp(2.45rem, 5vw, 4.35rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
}

.hero p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.15rem;
}

.green {
    color: var(--green);
}

.hero-actions,
.inline-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--green);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(121, 193, 65, .22);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn.secondary {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .42);
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(121, 193, 65, .3);
}

.btn.secondary:hover {
    background: rgba(121, 193, 65, .16);
    box-shadow: none;
}

.text-link,
.card-link {
    color: var(--deep-green);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.card-link {
    display: inline-flex;
    margin-top: 20px;
}

.hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: rgba(4, 16, 34, .54);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
}

.hero-panel strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
}

.hero-panel ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hero-panel li,
.check-list li {
    position: relative;
    padding-left: 24px;
}

.hero-panel li + li,
.check-list li + li {
    margin-top: 10px;
}

.hero-panel li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 34px;
    height: 54px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    text-decoration: none;
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: var(--green);
    animation: scrollCue 1.5s infinite;
}

@keyframes scrollCue {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}

.section,
.cta {
    padding: 88px 0;
}

.strip {
    background: var(--mist);
}

.split-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

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

.section-heading > p:not(.eyebrow) {
    margin-top: 14px;
    color: var(--muted);
}

.trust-strip {
    padding: 0;
    background: var(--mist);
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    transform: translateY(-32px);
}

.trust-bar span {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid rgba(7, 21, 47, .08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow);
    color: var(--navy);
    font-weight: 800;
    text-align: center;
}

.cards {
    display: grid;
    gap: 24px;
}

.cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.profile-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(7, 21, 47, .08);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover,
.profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(121, 193, 65, .45);
    box-shadow: var(--shadow-hover);
}

.card h2,
.card h3 {
    margin-bottom: 14px;
}

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

.card.simple-icon::before,
.card.icon-card::before {
    content: "";
    display: block;
    border-radius: 50%;
    background-color: rgba(121, 193, 65, .12);
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid var(--green);
}

.card.simple-icon::before {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    background-size: 28px 28px;
}

.card.icon-card::before {
    width: 64px;
    height: 64px;
    margin: 0 0 22px;
    background-size: 34px 34px;
}

.card.icon-health-safety::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l7%203v5c0%204.5-2.9%208.6-7%2010-4.1-1.4-7-5.5-7-10V6l7-3z%22/%3E%3Cpath%20d%3D%22M8.6%2012.1l2.2%202.2%204.8-5%22/%3E%3C/svg%3E"); }
.card.icon-compliance::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M7%203h8l4%204v14H7z%22/%3E%3Cpath%20d%3D%22M15%203v5h5%22/%3E%3Cpath%20d%3D%22M9%2013l2%202%204-4%22/%3E%3Cpath%20d%3D%22M9%2018h6%22/%3E%3C/svg%3E"); }
.card.icon-quality::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l2.4%204.9%205.4.8-3.9%203.8.9%205.4L12%2015.3%207.2%2018l.9-5.4-3.9-3.8%205.4-.8L12%203z%22/%3E%3C/svg%3E"); }
.card.icon-sheq::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228%22/%3E%3Cpath%20d%3D%22M12%208v4l3%202%22/%3E%3Cpath%20d%3D%22M4%2012h3%22/%3E%3Cpath%20d%3D%22M17%2012h3%22/%3E%3C/svg%3E"); }
.card.icon-retained::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M7%204h10a2%202%200%200%201%202%202v14l-7-3-7%203V6a2%202%200%200%201%202-2z%22/%3E%3Cpath%20d%3D%22M9%208h6%22/%3E%3Cpath%20d%3D%22M9%2012h4%22/%3E%3C/svg%3E"); }
.card.icon-audit::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%204h6l1%202h3v15H5V6h3l1-2z%22/%3E%3Cpath%20d%3D%22M8%2011h.1%22/%3E%3Cpath%20d%3D%22M11%2011h5%22/%3E%3Cpath%20d%3D%22M8%2016h.1%22/%3E%3Cpath%20d%3D%22M11%2016h5%22/%3E%3C/svg%3E"); }
.card.icon-training::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%207l9-4%209%204-9%204-9-4z%22/%3E%3Cpath%20d%3D%22M7%2010v5c0%201.7%202.2%203%205%203s5-1.3%205-3v-5%22/%3E%3C/svg%3E"); }
.card.icon-contractor::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2021V8l8-4%208%204v13%22/%3E%3Cpath%20d%3D%22M9%2021v-7h6v7%22/%3E%3Cpath%20d%3D%22M8%2010h.1%22/%3E%3Cpath%20d%3D%22M12%2010h.1%22/%3E%3Cpath%20d%3D%22M16%2010h.1%22/%3E%3C/svg%3E"); }
.card.icon-incident::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%203l10%2018H2L12%203z%22/%3E%3Cpath%20d%3D%22M12%209v5%22/%3E%3Cpath%20d%3D%22M12%2018h.1%22/%3E%3C/svg%3E"); }
.card.icon-iso::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%228%22/%3E%3Cpath%20d%3D%22M8%2012l2.4%202.4L16%209%22/%3E%3Cpath%20d%3D%22M12%202v3%22/%3E%3Cpath%20d%3D%22M12%2019v3%22/%3E%3C/svg%3E"); }
.card.icon-construction::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020h16%22/%3E%3Cpath%20d%3D%22M6%2020V9l6-5%206%205v11%22/%3E%3Cpath%20d%3D%22M9%2020v-6h6v6%22/%3E%3C/svg%3E"); }
.card.icon-manufacturing::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020V9l5%203V9l5%203V8h6v12H4z%22/%3E%3Cpath%20d%3D%22M7%2016h2%22/%3E%3Cpath%20d%3D%22M12%2016h2%22/%3E%3Cpath%20d%3D%22M17%2016h1%22/%3E%3C/svg%3E"); }
.card.icon-engineering::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M12%202v3%22/%3E%3Cpath%20d%3D%22M12%2019v3%22/%3E%3Cpath%20d%3D%22M2%2012h3%22/%3E%3Cpath%20d%3D%22M19%2012h3%22/%3E%3C/svg%3E"); }
.card.icon-logistics::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%207h11v9H3z%22/%3E%3Cpath%20d%3D%22M14%2010h4l3%203v3h-7z%22/%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2218%22%20r%3D%222%22/%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2218%22%20r%3D%222%22/%3E%3C/svg%3E"); }
.card.icon-facilities::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M5%2021V4h14v17%22/%3E%3Cpath%20d%3D%22M9%2021v-5h6v5%22/%3E%3Cpath%20d%3D%22M8%208h2%22/%3E%3Cpath%20d%3D%22M14%208h2%22/%3E%3Cpath%20d%3D%22M8%2012h2%22/%3E%3Cpath%20d%3D%22M14%2012h2%22/%3E%3C/svg%3E"); }
.card.icon-sme::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2379c141%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2020V9l8-5%208%205v11%22/%3E%3Cpath%20d%3D%22M8%2020v-6h8v6%22/%3E%3Cpath%20d%3D%22M9%2010h6%22/%3E%3Cpath%20d%3D%22M12%207v6%22/%3E%3C/svg%3E"); }

.about-grid,
.contact-grid,
.process-grid,
.feature-band,
.testimonial-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 44px;
    align-items: center;
}

.quote-image {
    min-height: 360px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(7, 21, 47, .08), rgba(7, 21, 47, .28)),
        url("../images/quote-image.png");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.dark {
    background: var(--navy);
    color: #ffffff;
}

.dark h2 {
    color: #ffffff;
}

.dark .eyebrow {
    color: var(--green);
}

.partners-section {
    padding: 42px 0 46px;
}

.partners-section .container {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 36px;
    align-items: center;
}

.partners-heading h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.partners-heading p:not(.eyebrow) {
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
}

.partners-logo-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
}

.partner-logo-placeholder {
    width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
}

.partner-logo-placeholder img {
    width: 140px;
    height: 64px;
    object-fit: contain;
}

.team {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.profile-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: start;
}

.profile-photo {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--deep-green);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
}

.check-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.values-panel,
.testimonial-stats,
.feature-list {
    display: grid;
    gap: 12px;
}

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

.values-panel div,
.testimonial-stats div,
.feature-list span,
.process-list li {
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(121, 193, 65, .1);
    border: 1px solid rgba(121, 193, 65, .18);
}

.values-panel strong,
.values-panel span,
.testimonial-stats strong,
.testimonial-stats span,
.process-list strong,
.process-list span {
    display: block;
}

.values-panel span,
.testimonial-stats span,
.process-list span {
    margin-top: 5px;
    color: var(--muted);
}

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

.process-list li {
    counter-increment: process;
    position: relative;
    padding-left: 66px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--deep-green);
    color: #ffffff;
    font-weight: 900;
}

.feature-band {
    align-items: start;
}

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

.feature-list span {
    font-weight: 800;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-btn,
.copy-email {
    border: 1px solid rgba(16, 37, 31, .14);
    background: #ffffff;
    color: var(--deep-green);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.filter-btn:hover,
.filter-btn.active,
.copy-email:hover,
.copy-email.copied {
    background: var(--deep-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-target[hidden] {
    display: none !important;
}

.faq-section {
    padding: 82px 0;
}

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

.faq-item {
    border: 1px solid rgba(16, 37, 31, .12);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(6, 22, 18, .08);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 22px 22px;
    color: var(--muted);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-card::before {
    content: "\201C";
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(121, 193, 65, .14);
    border: 2px solid var(--green);
    color: var(--green);
    font-size: 3rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: var(--green);
    font-size: 1rem;
    letter-spacing: 3px;
}

.testimonial-source {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

.testimonial-source strong,
.testimonial-source span {
    display: block;
}

.testimonial-source span {
    color: var(--muted);
}

.contact-grid {
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
}

.contact-panel {
    background: var(--deep-green);
    color: #ffffff;
}

.contact-panel h2,
.contact-panel .eyebrow {
    color: #ffffff;
}

.contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-detail:last-child {
    border-bottom: 0;
}

.contact-detail strong {
    display: block;
    color: var(--green);
    margin-bottom: 5px;
}

.contact-detail a {
    color: #ffffff;
    text-decoration: none;
    word-break: break-word;
}

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

label {
    display: block;
    margin-top: 16px;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(121, 193, 65, .18);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-weight: 600;
}

.consent input {
    width: auto;
    margin-top: 5px;
}

.field-help,
.form-status,
.note {
    margin-top: 10px;
    color: var(--muted);
    font-size: .92rem;
}

.smart-form.show-validation input:invalid,
.smart-form.show-validation textarea:invalid,
.smart-form.show-validation select:invalid {
    outline: 2px solid #b42318;
    outline-offset: 2px;
}

.cta {
    text-align: center;
    background: var(--mist);
}

.cta h2 {
    margin-bottom: 12px;
}

.cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
}

.site-footer {
    padding: 42px 0;
    background: var(--navy-dark);
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 230px 1fr auto;
    gap: 28px;
    align-items: center;
}

.footer-brand img {
    width: 210px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px 18px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-contact {
    display: grid;
    gap: 4px;
    text-align: right;
}

.footer-contact span {
    color: rgba(255, 255, 255, .72);
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.legal-content p {
    color: var(--muted);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--deep-green);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 1400;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s ease var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .process-grid,
    .feature-band,
    .testimonial-summary,
    .partners-section .container {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 520px;
    }

    .cards.three,
    .cards.four,
    .team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .partners-heading {
        text-align: center;
    }

    .partners-logo-list {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 820px) {
    .site-nav {
        min-height: 86px;
    }

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

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 92px;
        display: grid;
        gap: 4px;
        padding: 18px;
        border-radius: var(--radius);
        background: rgba(16, 37, 31, .98);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .18s ease, transform .18s ease;
    }

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

    .nav-links a {
        padding: 12px 8px;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .container,
    .site-nav {
        width: min(100% - 36px, 1160px);
    }

    .site-logo-img {
        width: clamp(190px, 62vw, 250px);
    }

    .hero {
        min-height: 560px;
        padding: 68px 0 94px;
        background-position: 70% center;
    }

    .home-hero {
        min-height: 620px;
    }

    .compact-hero {
        min-height: 320px;
    }

    h1 {
        font-size: 2.35rem;
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
    }

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

    .btn,
    .text-link {
        width: 100%;
        text-align: center;
    }

    .section,
    .cta {
        padding: 64px 0;
    }

    .cards.three,
    .cards.four,
    .team,
    .trust-bar,
    .values-panel,
    .feature-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .profile-card {
        grid-template-columns: 1fr;
    }

    .profile-photo {
        width: 72px;
        height: 72px;
    }

    .trust-bar {
        transform: none;
        padding: 24px 0;
    }

    .card,
    .profile-card,
    .hero-panel {
        padding: 24px;
    }

    .quote-image {
        min-height: 260px;
    }

    .partners-section {
        padding: 34px 0 38px;
    }

    .scroll-cue {
        bottom: 20px;
    }
}

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

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