:root {
    --bg: #243038;
    --bg-deep: #1d272f;
    --bg-soft: #2b3942;
    --panel: rgba(42, 54, 63, 0.94);
    --panel-strong: #33414b;
    --panel-alt: rgba(50, 63, 73, 0.92);
    --navy: #e9eff3;
    --navy-soft: #b5c0c8;
    --company-green: #7da341;
    --company-green-deep: #6d9037;
    --steel: #7f7b7d;
    --steel-dark: #666366;
    --steel-line: rgba(181, 192, 200, 0.14);
    --green-line: rgba(125, 163, 65, 0.26);
    --text: #eef3f6;
    --muted: #b4c0c7;
    --white: #ffffff;
    --shadow: 0 24px 44px rgba(6, 10, 14, 0.26);
    --radius-lg: 16px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --container: 1240px;
    --content-inset: 2rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(181, 192, 200, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181, 192, 200, 0.04) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(125, 163, 65, 0.12), transparent 24%),
        linear-gradient(180deg, #2e3b44 0%, #27333b 48%, #202a31 100%);
    background-size: 52px 52px, 52px 52px, auto, auto;
    min-height: 100vh;
}

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

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

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

.site-shell {
    position: relative;
    overflow: clip;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(125, 163, 65, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 163, 65, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(181, 192, 200, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181, 192, 200, 0.03) 1px, transparent 1px);
    background-size: 220px 220px, 220px 220px, 110px 110px, 110px 110px;
    opacity: 0.24;
    z-index: 0;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.narrow {
    max-width: 880px;
}

.site-header {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    z-index: 20;
    padding-top: 0;
    background: transparent;
    backdrop-filter: none;
    margin-top: 0.85rem;
    margin-bottom: 1rem;
}

main {
    padding-top: 8.5rem;
}

.nav-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 1.8rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(181, 192, 200, 0.04);
    border-right-color: rgba(181, 192, 200, 0.015);
    background:
        linear-gradient(90deg,
            rgb(255, 255, 255) 0%,
            rgb(243, 247, 249) 11%,
            rgb(186, 197, 204) 22%,
            rgb(77, 90, 100) 40%,
            rgb(46, 59, 68) 100%);
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(6, 10, 14, 0.16);
    position: relative;
    overflow: hidden;
}

.nav-wrap::before,
.nav-wrap::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 163, 65, 0.4), rgba(181, 192, 200, 0.08));
}

.nav-wrap::before {
    top: 0.35rem;
}

.nav-wrap::after {
    bottom: 0.35rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    position: relative;
    z-index: 2;
    align-self: center;
    transform: translateX(-1cm);
}

.brand::before {
    display: none;
}

.brand img {
    width: 100%;
    max-width: 248px;
    height: 82px;
    object-fit: contain;
    padding: 0;
    border: 0;
    background: transparent;
    filter: drop-shadow(0 8px 18px rgba(5, 9, 12, 0.18));
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.58rem 0.82rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: #edf3f6;
    text-shadow: 0 1px 8px rgba(6, 10, 14, 0.34);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
    border-color: rgba(125, 163, 65, 0.42);
    background:
        linear-gradient(180deg, rgba(125, 163, 65, 0.32), rgba(125, 163, 65, 0.18));
}

.site-nav .nav-cta {
    color: #edf3f6;
    border-color: var(--green-line);
    background: transparent;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    color: #ffffff;
    border-color: rgba(125, 163, 65, 0.42);
    background: linear-gradient(180deg, rgba(125, 163, 65, 0.32), rgba(125, 163, 65, 0.18));
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--steel-line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero,
.page-hero {
    padding: 4.8rem 0 2.6rem;
    position: relative;
}

.hero-home {
    padding-top: 4rem;
    position: relative;
    isolation: isolate;
}

.hero-home::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 39, 47, 0.74), rgba(28, 39, 47, 0.48)),
        linear-gradient(180deg, rgba(36, 48, 56, 0.18), rgba(36, 48, 56, 0.58)),
        url("background_hero.png") center/cover no-repeat;
    opacity: 0.5;
    z-index: -2;
    pointer-events: none;
}

.hero-home::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 48, 56, 0.1) 0%, rgba(36, 48, 56, 0.58) 72%, rgba(36, 48, 56, 0.88) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid,
.split-layout,
.contact-layout {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
}

.split-layout > :first-child {
    padding-left: var(--content-inset);
}

.section > .container > .section-heading,
.section > .container > .trust-panel,
.section > .container > .cta-banner > div {
    padding-left: var(--content-inset);
}

.split-layout > :first-child > h2,
.split-layout > :first-child > p,
.section > .container > .section-heading > h2,
.section > .container > .section-heading > p,
.section > .container > .trust-panel > h2,
.section > .container > .trust-panel > p {
    max-width: 760px;
}

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

.hero-copy,
.hero-panel,
.info-card,
.list-card,
.service-tile,
.contact-card,
.contact-form,
.trust-grid article,
.process-step,
.cta-banner,
.quote-block,
.data-row {
    animation: riseIn 700ms ease both;
}

.hero-copy,
.hero-panel,
.page-hero .container.narrow,
.contact-card,
.contact-form,
.cta-banner {
    position: relative;
    border: 1px solid var(--steel-line);
    background:
        linear-gradient(180deg, rgba(125, 163, 65, 0.04), transparent 45%),
        var(--panel);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
    min-height: 100%;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 14px;
    overflow: hidden;
}

.hero-copy::before,
.hero-panel::before,
.info-card::before,
.list-card::before,
.service-tile::before,
.contact-card::before,
.contact-form::before,
.process-step::before,
.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--company-green), var(--steel));
}

.hero-copy .eyebrow::after {
    content: "";
    display: inline-block;
    width: 64px;
    height: 1px;
    margin-left: 0.85rem;
    vertical-align: middle;
    background: linear-gradient(90deg, var(--company-green), transparent);
}

.hero-panel {
    padding: 1.7rem;
    border-radius: 14px;
}

.page-hero .container.narrow {
    width: min(calc(100% - 2rem), var(--container));
    max-width: var(--container);
    padding: 1.9rem var(--content-inset);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(6, 10, 14, 0.16);
    margin: 0 auto;
}

.solution-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 2rem;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 2.4rem;
}

.services-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 2.4rem;
}

.operations-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 2.4rem;
}

.quality-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 2.4rem;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 2.4rem;
}

.about-hero-copy {
    max-width: 680px;
}

.services-hero-copy {
    max-width: 680px;
}

.operations-hero-copy {
    max-width: 680px;
}

.quality-hero-copy {
    max-width: 680px;
}

.contact-hero-copy {
    max-width: 680px;
}

.about-hero-copy .page-subheading {
    max-width: 38rem;
}

.services-hero-copy .page-subheading {
    max-width: 38rem;
}

.operations-hero-copy .page-subheading {
    max-width: 38rem;
}

.quality-hero-copy .page-subheading {
    max-width: 38rem;
}

.contact-hero-copy .page-subheading {
    max-width: 38rem;
}

.about-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.services-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.operations-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.quality-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.contact-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-self: stretch;
}

.about-hero-visual img {
    width: min(100%, 430px);
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.services-hero-visual img {
    width: min(100%, 430px);
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.operations-hero-visual img {
    width: min(100%, 430px);
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.quality-hero-visual img {
    width: min(100%, 430px);
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.contact-hero-visual img {
    width: min(100%, 430px);
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    animation: slowGearSpin 30s linear infinite;
    transform-origin: center;
}

.solution-hero-copy {
    max-width: 760px;
}

.solution-hero-copy .page-subheading {
    max-width: 760px;
}

.solution-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.solution-hero-visual img {
    width: min(100%, 520px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.solution-scope-stack {
    align-content: start;
}

.solution-scope-visual img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
}

.capability-stack {
    align-content: center;
    margin-top: 3rem;
}

.capability-visual img {
    width: min(100%, 520px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
    margin: 0 auto;
}

.story-visual img {
    width: min(100%, 560px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
    margin-top: 1.5rem;
}

.decision-visual img {
    width: min(100%, 560px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
    margin-top: 1.5rem;
}

.operations-process-visual img {
    width: min(100%, 560px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
    margin-top: 3rem;
}

.quality-rotate-visual {
    display: flex;
    justify-content: center;
}

.quality-rotate-visual img {
    width: min(100%, 340px);
    height: auto;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    margin-top: 1.5rem;
    animation: slowGearSpin 30s linear infinite;
    transform-origin: center;
}

.contact-person-visual {
    margin-top: 2cm;
    margin-left: 1.5cm;
}

.contact-person-visual img {
    width: min(100%, 420px);
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(181, 192, 200, 0.12);
    box-shadow: 0 18px 34px rgba(6, 10, 14, 0.24);
    margin-top: 1.5rem;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-left: 1.5cm;
    width: min(100%, 420px);
    padding: 0;
    border: 0;
    background: transparent;
    transition: transform 180ms ease, opacity 180ms ease;
    animation: whatsappFloat 4.2s ease-in-out infinite;
}

.whatsapp-cta:hover {
    opacity: 0.92;
}

.whatsapp-cta img {
    width: min(100%, 320px);
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.section {
    padding: 0.5rem 0 3rem;
    position: relative;
}

.section-muted,
.section-accent {
    position: relative;
}

.section-muted::before,
.section-accent::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 1rem;
    bottom: 1rem;
    border-top: 1px solid rgba(181, 192, 200, 0.05);
    border-bottom: 1px solid rgba(181, 192, 200, 0.05);
    z-index: 0;
}

.section-muted::before {
    background:
        linear-gradient(90deg, rgba(181, 192, 200, 0.02), transparent 22%),
        rgba(255, 255, 255, 0.015);
}

.section-accent::before {
    background:
        linear-gradient(90deg, rgba(125, 163, 65, 0.05), transparent 30%),
        rgba(255, 255, 255, 0.01);
}

.contact-form-section::before {
    display: none;
}

.contact-success-message {
    padding-top: 0;
    padding-bottom: 1.25rem;
}

.contact-success-banner {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(125, 163, 65, 0.28);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(125, 163, 65, 0.14), rgba(125, 163, 65, 0.06));
    box-shadow: 0 14px 28px rgba(6, 10, 14, 0.12);
}

.contact-success-banner p {
    color: var(--white);
    font-weight: 600;
    line-height: 1.7;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--company-green);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.03em;
    color: var(--text);
}

h1 {
    font-size: clamp(1.95rem, 3.2vw, 3.05rem);
    line-height: 1.04;
    max-width: 20ch;
}

h2 {
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    line-height: 1.08;
}

h3 {
    font-size: 1.05rem;
    line-height: 1.22;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.hero-subheading,
.page-subheading,
.section-heading p,
.trust-panel p,
.rich-text p {
    font-size: 0.95rem;
}

.hero-panel h2 {
    font-size: 1.3rem;
    margin: 0.75rem 0 1rem;
    max-width: 18ch;
}

.hero-actions,
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-tags span,
.panel-label,
.tile-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.8rem;
    border: 1px solid var(--green-line);
    border-radius: var(--radius-sm);
    background: rgba(125, 163, 65, 0.1);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.panel-label,
.tile-kicker {
    width: fit-content;
}

.service-tile-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.service-tile-head .tile-kicker {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.metric-grid,
.card-grid,
.trust-grid,
.stacked-list,
.data-table,
.contact-list,
.contact-form {
    display: grid;
    gap: 1rem;
}

.metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.metric-grid article,
.trust-grid article {
    padding: 1rem;
    border: 1px solid rgba(181, 192, 200, 0.12);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(125, 163, 65, 0.03), transparent),
        rgba(255, 255, 255, 0.02);
}

.metric-grid strong,
.trust-grid strong {
    display: block;
    color: var(--company-green);
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}

.section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(181, 192, 200, 0.1);
    max-width: 900px;
    position: relative;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, var(--company-green), transparent);
}

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

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

.info-card,
.list-card,
.service-tile,
.process-step,
.contact-card,
.contact-form,
.quote-block {
    position: relative;
    padding: 1.3rem;
    border: 1px solid var(--steel-line);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(125, 163, 65, 0.03), transparent 42%),
        var(--panel-alt);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.info-card::after,
.list-card::after,
.service-tile::after,
.process-step::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    border-top: 1px solid rgba(181, 192, 200, 0.08);
    border-right: 1px solid rgba(181, 192, 200, 0.08);
    opacity: 0.7;
}

.info-card h3,
.list-card h3,
.service-tile h3,
.process-step h3,
.contact-card h2 {
    position: relative;
    padding-bottom: 0.7rem;
    margin-bottom: 0.85rem;
}

.info-card h3::after,
.list-card h3::after,
.service-tile h3::after,
.contact-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--company-green), rgba(181, 192, 200, 0.18));
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-weight: 800;
}

.icon-badge img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 0;
}

.service-tile a,
.footer-grid a,
.contact-list a {
    color: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
}

.service-tile a {
    margin-top: 1rem;
    display: inline-flex;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--company-green), var(--steel));
    z-index: 0;
}

.process-row::after {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    top: 2rem;
    height: 48px;
    background:
        radial-gradient(circle at 12.5% 0, rgba(125, 163, 65, 0.8) 0 3px, transparent 4px),
        radial-gradient(circle at 37.5% 0, rgba(125, 163, 65, 0.8) 0 3px, transparent 4px),
        radial-gradient(circle at 62.5% 0, rgba(125, 163, 65, 0.8) 0 3px, transparent 4px),
        radial-gradient(circle at 87.5% 0, rgba(125, 163, 65, 0.8) 0 3px, transparent 4px);
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.process-step {
    z-index: 1;
    padding-top: 3.4rem;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 122px;
    height: 34px;
    margin-bottom: 1rem;
    border: 1px solid var(--green-line);
    border-radius: var(--radius-sm);
    background: var(--panel-strong);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 0.72rem;
}

.trust-panel {
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.trust-panel::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 3px;
    background: linear-gradient(180deg, var(--company-green), transparent);
}

.cta-banner {
    padding: 1.5rem 1.7rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.72rem;
    line-height: 1.1;
    white-space: nowrap;
    transition: 180ms ease;
}

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

.btn-primary {
    background: linear-gradient(90deg, var(--company-green), var(--company-green-deep));
    color: var(--white);
    box-shadow:
        0 10px 20px rgba(125, 163, 65, 0.22),
        0 3px 8px rgba(6, 10, 14, 0.18);
}

.btn-secondary {
    border-color: var(--steel-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #89b148, #789c3d);
    box-shadow:
        0 14px 28px rgba(125, 163, 65, 0.28),
        0 6px 14px rgba(6, 10, 14, 0.22);
    border-color: rgba(255, 255, 255, 0.08);
}

.rich-text {
    display: grid;
    gap: 1rem;
}

.split-layout .rich-text {
    margin-top: 3rem;
}

.contact-list article {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(181, 192, 200, 0.08);
}

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

.contact-list strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.contact-map {
    position: relative;
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(181, 192, 200, 0.1);
    min-height: 360px;
}

.contact-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(36, 48, 56, 0.3);
    pointer-events: none;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    filter: saturate(0.8) contrast(0.95);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(181, 192, 200, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.contact-form select option {
    color: #1d272f;
    background: #ffffff;
}

.contact-form label {
    color: var(--white);
    font-weight: 700;
}

.form-status {
    margin: 0;
    color: var(--company-green);
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 600;
}

.form-status-error {
    color: #ffb3b3;
}

.site-footer {
    padding: 1rem 0;
}

.back-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 163, 65, 0.34);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(52, 65, 75, 0.94), rgba(35, 46, 54, 0.94));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(6, 10, 14, 0.22);
    cursor: pointer;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background 180ms ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(180deg, rgba(125, 163, 65, 0.9), rgba(109, 144, 55, 0.92));
}

.back-to-top__arrow {
    font-size: 1.3rem;
    line-height: 1;
    transform: translateY(-1px);
}

.footer-grid,
.footer-base {
    border-top: 1px solid rgba(181, 192, 200, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}

.footer-grid h3 {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--muted);
}

.brand-footer img {
    width: auto;
    max-width: 180px;
    height: 64px;
}

.brand-footer::before {
    display: none;
}

.brand-footer img {
    filter: none;
}

.rotating-gear-mark {
    display: inline-flex;
    transform-origin: center;
    overflow: visible;
    margin-left: 3cm;
}

.rotating-gear-mark img {
    transform-origin: center;
    animation: slowGearSpin 28s linear infinite;
    will-change: transform;
}

.footer-copy {
    margin-top: 1rem;
    max-width: 40ch;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--steel-line);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(125, 163, 65, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(238, 241, 243, 0.96), rgba(223, 228, 232, 0.96));
}

.footer-meta {
    display: block;
}

.footer-base p,
.footer-meta p {
    color: #5e6a74;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
}

.developer-credit {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    opacity: 0.82;
    margin-left: 0.45rem;
}

.developer-credit a {
    color: #33a8ff;
    display: inline-block;
    text-shadow: 0 0 10px rgba(51, 168, 255, 0.2);
    animation: moerseWave 2.8s ease-in-out infinite;
}

.data-table {
    position: relative;
}

.data-table::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0.7rem;
    bottom: 0.7rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(125, 163, 65, 0.4), transparent);
    opacity: 0.7;
}

.data-row {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    column-gap: 2rem;
    position: relative;
    align-items: start;
}

.data-row strong {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.84rem;
    display: block;
    line-height: 1.35;
    padding-top: 0.08rem;
}

.data-row p {
    line-height: 1.35;
}

.quote-block {
    border-left: 4px solid var(--company-green);
    border-radius: 0 14px 14px 0;
}

.services-quote-block {
    margin-top: 5.5rem;
}

.quality-quote-block {
    margin-top: 9rem;
}

.operations-capability-stack {
    margin-top: 1.2rem;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowGearSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes whatsappFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes moerseWave {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-1px) rotate(-2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(1px) rotate(2deg);
    }
}

@media (max-width: 1120px) {
    .nav-wrap {
        grid-template-columns: 1fr auto;
        overflow: visible;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border: 1px solid var(--steel-line);
        border-radius: 14px;
        background: rgba(46, 59, 68, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .hero-grid,
    .split-layout,
    .contact-layout,
    .about-hero,
    .operations-hero,
    .quality-hero,
    .contact-hero,
    .services-hero,
    .solution-hero,
    .card-grid.three-up,
    .card-grid.four-up,
    .process-row,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-row::before,
    .process-row::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 4px;
        margin-top: 0;
    }

    .hero,
    .page-hero {
        padding: 4.9rem 0 3rem;
    }

    main {
        padding-top: 5.4rem;
    }

    .brand img {
        max-width: 184px;
        height: 64px;
    }

    .hero-grid,
    .split-layout,
    .contact-layout,
    .about-hero,
    .operations-hero,
    .quality-hero,
    .contact-hero,
    .services-hero,
    .solution-hero,
    .card-grid.three-up,
    .card-grid.four-up,
    .process-row,
    .footer-grid,
    .metric-grid,
    .data-row {
        grid-template-columns: 1fr;
    }

    .split-layout > :first-child {
        padding-left: 0;
    }

    .section > .container > .section-heading,
    .section > .container > .trust-panel,
    .section > .container > .cta-banner > div {
        padding-left: 0;
    }

    .hero-copy,
    .hero-panel,
    .page-hero .container.narrow,
    .cta-banner {
        padding: 1.6rem;
    }

    .process-step {
        padding-top: 4rem;
    }

    .process-step span {
        left: 1rem;
    }

    .cta-banner,
    .footer-base {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-footer {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 3cm;
        overflow: visible;
    }

    .brand-footer img {
        max-width: 140px;
        height: 54px;
    }

    h1 {
        max-width: 100%;
    }

    .about-hero-visual {
        justify-content: center;
    }

    .services-hero-visual {
        justify-content: center;
    }

    .operations-hero-visual {
        justify-content: center;
    }

    .quality-hero-visual {
        justify-content: center;
    }

    .contact-hero-visual {
        justify-content: center;
    }

    .about-hero-visual img {
        width: min(100%, 420px);
        height: auto;
        max-height: none;
    }

    .services-quote-block {
        margin-top: 0;
    }

    .quality-quote-block {
        margin-top: 0;
    }

    .operations-capability-stack {
        margin-top: 0;
    }

    .contact-person-visual {
        margin-top: 1.5rem;
        margin-left: 0;
    }

    .whatsapp-cta {
        margin-left: 0;
    }

    .services-hero-visual img {
        width: min(100%, 420px);
        height: auto;
        max-height: none;
    }

    .operations-hero-visual img {
        width: min(100%, 420px);
        height: auto;
        max-height: none;
    }

    .quality-hero-visual img {
        width: min(100%, 420px);
        height: auto;
        max-height: none;
    }

    .contact-hero-visual img {
        width: min(100%, 420px);
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .section {
        padding: 0.75rem 0 3.2rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 48px;
        height: 48px;
    }
}
