:root {
  --ink: #04130b;
  --ink-2: #071811;
  --ink-3: #0a1f16;
  --green: #0c9b58;
  --green-bright: #20d477;
  --green-deep: #087845;
  --lime: #dcdc10;
  --mint: #eafaf2;
  --surface: #f8fbf9;
  --white: #fff;
  --text: #13251b;
  --muted: #65746c;
  --line: #dce7e1;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(3, 17, 11, .12);
  --container: 1200px;
  --section: 110px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Sora", sans-serif; letter-spacing: -.035em; line-height: 1.1; }
h1 em, h2 em { color: var(--green-bright); font-style: normal; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: var(--section) 0; }
.section-soft { padding: var(--section) 0; background: var(--surface); }
.section-dark { padding: var(--section) 0; color: var(--white); background: var(--ink); position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; top: -220px; border: 1px solid rgba(32, 212, 119, .2); border-radius: 50%; box-shadow: 0 0 0 80px rgba(32, 212, 119, .025), 0 0 0 160px rgba(32, 212, 119, .02); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; padding: 12px 18px; color: var(--ink); background: var(--lime); border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; height: 86px; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,.09); transition: background .3s ease, height .3s ease, box-shadow .3s ease; }
.site-header.scrolled { height: 72px; background: rgba(4,19,11,.93); box-shadow: 0 15px 45px rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { flex: 0 0 auto; }
.brand img { width: 145px; height: auto; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.primary-nav a { color: rgba(255,255,255,.76); font-size: 14px; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: var(--green-bright); }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 12px 17px; color: var(--ink); background: var(--green-bright); border-radius: 99px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--lime); }
.nav-cta svg { width: 17px; fill: currentColor; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: white; transition: .25s ease; }

.hero { position: relative; min-height: 820px; padding: 155px 0 90px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.18)); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hero-copy { padding-bottom: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--green-bright); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--green); }
.hero h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(48px, 5.5vw, 78px); }
.hero-lead { max-width: 660px; margin-bottom: 34px; color: rgba(255,255,255,.69); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 10px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--ink); background: var(--green-bright); box-shadow: 0 14px 34px rgba(32,212,119,.2); }
.btn-primary:hover { background: var(--lime); box-shadow: 0 18px 38px rgba(220,220,16,.17); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.btn-dark { color: white; background: var(--ink); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 24px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li span { display: grid; place-items: center; width: 20px; height: 20px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 11px; font-weight: 900; }
.hero-visual { position: relative; }
.image-frame { position: relative; height: 590px; border-radius: 180px 180px 28px 28px; overflow: hidden; box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.image-frame::before { content: ""; position: absolute; inset: 16px; z-index: 2; border: 1px solid rgba(255,255,255,.22); border-radius: 165px 165px 20px 20px; pointer-events: none; }
.image-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,19,11,.05) 35%, rgba(4,19,11,.65) 100%); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: var(--text); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.65); border-radius: 14px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.floating-card-top { left: -44px; top: 125px; }
.floating-card-bottom { right: -35px; bottom: 50px; }
.floating-icon { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: var(--lime); border-radius: 10px; font-weight: 900; }
.pulse-dot { position: relative; width: 12px; height: 12px; background: var(--green-bright); border-radius: 50%; box-shadow: 0 0 0 6px rgba(32,212,119,.13); }
.hero-orbit { position: absolute; left: -50px; bottom: -34px; display: grid; place-items: center; width: 108px; height: 108px; color: var(--lime); border: 1px solid rgba(220,220,16,.45); border-radius: 50%; font-family: "Sora"; font-weight: 700; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; inset: 12px; border: 1px dashed rgba(220,220,16,.25); border-radius: 50%; }
.hero-orbit::after { inset: 28px; border-style: solid; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 470px; height: 470px; left: -330px; top: 150px; background: rgba(12,155,88,.17); box-shadow: 0 0 140px rgba(12,155,88,.28); }
.hero-glow-two { width: 180px; height: 180px; right: 3%; top: 90px; background: rgba(220,220,16,.08); box-shadow: 0 0 90px rgba(220,220,16,.11); }

.trust-bar { position: relative; z-index: 4; padding: 27px 0; color: white; background: var(--ink-3); border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1.25fr; align-items: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 12px; }
.trust-item strong { color: var(--lime); font-family: "Sora"; font-size: 20px; }
.trust-item span { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; }
.trust-divider { height: 30px; background: rgba(255,255,255,.12); }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; margin-bottom: 60px; }
.section-heading h2, .scope-content h2, .foreign-copy h2, .deliverables-head h2, .benefits-copy h2, .faq-heading h2, .contact-copy h2 { margin-bottom: 24px; font-size: clamp(38px, 4vw, 58px); }
.intro-text { padding-left: 40px; border-left: 1px solid var(--line); }
.intro-text p { margin-bottom: 13px; font-size: 18px; }
.intro-text .muted { color: var(--muted); font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { grid-column: span 2; min-height: 350px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); position: relative; overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border .28s ease; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(12,155,88,.35); box-shadow: var(--shadow); }
.service-card-featured { color: white; background: var(--green-deep); border-color: var(--green-deep); }
.service-number { position: absolute; right: 24px; top: 25px; color: rgba(4,19,11,.18); font-family: "Sora"; font-size: 44px; font-weight: 700; }
.service-card-featured .service-number { color: rgba(255,255,255,.14); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 43px; color: var(--green); background: var(--mint); border-radius: 14px; }
.service-card-featured .service-icon { color: var(--ink); background: var(--lime); }
.service-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 14px; font-size: 21px; }
.service-card > p { margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.service-card-featured > p { color: rgba(255,255,255,.72); }
.service-card details { border-top: 1px solid var(--line); }
.service-card-featured details { border-color: rgba(255,255,255,.14); }
.service-card summary { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; font-size: 13px; font-weight: 800; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary span { font-size: 18px; transition: transform .2s ease; }
.service-card details[open] summary span { transform: rotate(45deg); }
.service-card details div p { padding-top: 13px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.service-card-featured details div p { color: rgba(255,255,255,.68); }

.scope-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.scope-image { position: relative; }
.scope-image img { width: 100%; height: 560px; object-fit: cover; border-radius: 30px; }
.scope-image::before { content: ""; position: absolute; inset: 16px; z-index: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; }
.scope-stamp { position: absolute; z-index: 2; right: -28px; bottom: 45px; padding: 15px 18px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: var(--lime); border-radius: 12px; font-size: 12px; font-weight: 800; box-shadow: var(--shadow); }
.scope-stamp span { display: grid; place-items: center; width: 23px; height: 23px; background: rgba(4,19,11,.12); border-radius: 50%; }
.scope-content { position: relative; z-index: 2; }
.scope-content > p { color: rgba(255,255,255,.65); }
.check-list { margin: 32px 0; padding: 0; list-style: none; }
.check-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.check-list li { position: relative; padding-left: 30px; color: rgba(255,255,255,.83); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 20px; height: 20px; color: var(--ink); background: var(--green-bright); border-radius: 50%; font-size: 10px; font-weight: 900; }
.language-note { display: flex; align-items: center; gap: 13px; padding: 16px 18px; color: white !important; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; font-size: 13px; }
.language-note span { color: var(--lime); font-family: "Sora"; font-size: 18px; }
.boundary-card { position: relative; z-index: 2; display: grid; grid-template-columns: auto .8fr 1.5fr; align-items: center; gap: 22px; margin-top: 64px; padding: 28px 32px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: 18px; }
.boundary-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); background: var(--lime); border-radius: 50%; font-family: "Sora"; font-size: 24px; font-weight: 800; }
.boundary-card span { color: var(--green-bright); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.boundary-card h3 { margin: 4px 0 0; font-size: 18px; }
.boundary-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.foreign-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.foreign-copy p { color: var(--muted); }
.text-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 15px; color: var(--green-deep); font-size: 14px; font-weight: 800; border-bottom: 1px solid currentColor; }
.text-link span { font-size: 22px; }
.fine-print { margin-top: 35px; padding-left: 18px; border-left: 3px solid var(--lime); font-size: 12px; }
.question-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 24px 70px rgba(4,19,11,.07); }
.question-row { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; min-height: 74px; padding: 13px 22px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.question-row:last-child { border: 0; }
.question-row:hover { background: var(--mint); }
.question-row span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--green-deep); background: var(--mint); border-radius: 50%; font-size: 11px; font-weight: 800; }
.question-row p { margin: 0; font-size: 14px; font-weight: 700; }

.section-heading.centered { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { color: var(--muted); }
.document-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: stretch; }
.document-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-md); }
.document-visual img { width: 100%; height: 100%; object-fit: cover; }
.document-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(4,19,11,.83)); }
.doc-overlay { position: absolute; z-index: 2; left: 30px; bottom: 28px; color: white; }
.doc-overlay strong, .doc-overlay span { display: block; }
.doc-overlay strong { font-family: "Sora"; font-size: 25px; }
.doc-overlay span { color: var(--green-bright); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.document-list { margin: 0; padding: 10px 0; list-style: none; }
.document-list li { display: flex; align-items: center; gap: 18px; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.document-list li span { flex: 0 0 auto; color: var(--green); font-family: "Sora"; font-size: 11px; }
.security-note { display: flex; align-items: center; gap: 15px; margin-top: 30px; padding: 20px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.security-note span { font-size: 22px; }
.security-note p { margin: 0; color: var(--muted); font-size: 13px; }

.deliverables-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.deliverables-head > p { color: var(--muted); }
.price-note { display: flex; gap: 14px; align-items: center; margin-top: 35px; padding: 18px; background: var(--surface); border-radius: 14px; }
.price-note > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; color: var(--ink); background: var(--lime); border-radius: 10px; font-family: "Sora"; font-size: 20px; font-weight: 700; }
.price-note p { margin: 0; color: var(--muted); font-size: 12px; }
.deliverable-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.deliverable-card { min-height: 200px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; }
.deliverable-card > span { color: var(--green); font-family: "Sora"; font-size: 11px; font-weight: 800; }
.deliverable-card h3 { margin: 42px 0 10px; font-size: 18px; }
.deliverable-card p { margin: 0; color: var(--muted); font-size: 13px; }
.accent-card { color: white; background: var(--green-deep); border-color: var(--green-deep); }
.accent-card > span { color: var(--lime); }
.accent-card p { color: rgba(255,255,255,.68); }

.section-heading.light p { color: rgba(255,255,255,.58); }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-grid::before { content: ""; position: absolute; left: 11%; right: 11%; top: 45px; height: 1px; background: linear-gradient(90deg, transparent, rgba(32,212,119,.5), transparent); }
.process-step { position: relative; min-height: 280px; padding: 32px 26px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; transition: transform .25s ease, background .25s ease; }
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,.075); }
.step-no { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 55px; color: var(--ink); background: var(--green-bright); border: 7px solid var(--ink); outline: 1px solid rgba(32,212,119,.4); border-radius: 50%; font-family: "Sora"; font-size: 12px; font-weight: 800; }
.process-step:nth-child(even) .step-no { background: var(--lime); }
.process-step h3 { margin-bottom: 13px; font-size: 18px; }
.process-step p { color: rgba(255,255,255,.57); font-size: 13px; }

.benefits-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.benefits-copy > p { color: var(--muted); }
.benefits-copy img { width: 100%; height: 270px; margin-top: 40px; object-fit: cover; border-radius: 22px; }
.benefits-list { border-top: 1px solid var(--line); }
.benefit { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.benefit > span { color: var(--green); font-family: "Sora"; font-size: 12px; font-weight: 800; }
.benefit h3 { margin-bottom: 8px; font-size: 19px; }
.benefit p { margin: 0; color: var(--muted); font-size: 13px; }

.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.audience .section-heading p { color: var(--muted); }
.audience-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-tags span { padding: 17px 22px; background: white; border: 1px solid var(--line); border-radius: 99px; font-size: 13px; font-weight: 800; box-shadow: 0 10px 28px rgba(4,19,11,.04); }
.audience-tags span:nth-child(2), .audience-tags span:nth-child(5) { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading p { margin-bottom: 28px; color: var(--muted); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:first-child { border-top: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font-family: "Sora"; font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; color: var(--green); background: var(--mint); border-radius: 50%; font-size: 18px; transition: transform .2s ease, background .2s ease; }
.accordion details[open] summary span { color: var(--ink); background: var(--lime); transform: rotate(45deg); }
.accordion details p { max-width: 90%; padding: 0 0 24px; margin: 0; color: var(--muted); font-size: 14px; }

.contact { padding-bottom: 90px; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.contact-copy > p { max-width: 550px; color: rgba(255,255,255,.63); }
.contact-details { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-details > * { padding: 19px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { margin-bottom: 6px; color: var(--green-bright); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-details strong { font-size: 13px; }
.contact-form { padding: 36px; color: var(--text); background: white; border-radius: var(--radius-md); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-head span { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-head h3 { margin: 5px 0 0; font-size: 25px; }
.form-head .form-arrow { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 21px; }
.contact-form > p { margin: 15px 0 24px; color: var(--muted); font-size: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: var(--text); font-size: 11px; font-weight: 800; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 9px; outline: none; font-size: 13px; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(12,155,88,.09); }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; }
.contact-form .consent input { margin-top: 4px; accent-color: var(--green); }
.contact-form .consent span { margin: 0; color: var(--muted); font-weight: 500; line-height: 1.5; }
.form-submit { width: 100%; }
.form-disclaimer { margin-top: 14px; color: var(--muted); font-size: 10px; text-align: center; }

.site-footer { padding: 75px 0 24px; color: white; background: #020a06; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1fr; gap: 60px; padding-bottom: 55px; }
.footer-brand img { width: 160px; margin-bottom: 23px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.48); font-size: 13px; }
.footer-links h3 { margin-bottom: 20px; color: rgba(255,255,255,.36); font-family: "Manrope"; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links > span { display: block; margin-bottom: 11px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: var(--green-bright); }
.footer-cta { padding: 23px; background: var(--green-deep); border-radius: 16px; }
.footer-cta > span { display: block; margin-bottom: 28px; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-cta a { display: flex; align-items: center; justify-content: space-between; font-family: "Sora"; font-size: 16px; font-weight: 600; }
.footer-cta a span { color: var(--lime); font-size: 22px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.38); font-size: 10px; }
.footer-bottom p { max-width: 660px; margin: 0; text-align: right; }
.whatsapp-float { position: fixed; right: 23px; bottom: 23px; z-index: 900; display: grid; place-items: center; width: 58px; height: 58px; color: var(--ink); background: var(--green-bright); border: 5px solid rgba(255,255,255,.85); border-radius: 50%; box-shadow: 0 14px 35px rgba(4,19,11,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 25px; fill: currentColor; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  :root { --section: 90px; }
  .primary-nav { gap: 18px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(45px, 6vw, 64px); }
  .image-frame { height: 540px; }
  .floating-card-top { left: -20px; }
  .floating-card-bottom { right: -16px; }
  .scope-grid, .foreign-grid, .deliverables-grid, .benefits-grid, .faq-grid, .contact-grid { gap: 55px; }
  .service-card { grid-column: span 3; }
  .service-card:last-child { grid-column: 2 / span 4; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 820px) {
  .site-header { height: 74px; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 74px 0 auto; display: grid; gap: 0; padding: 18px 24px 28px; background: rgba(4,19,11,.98); border-top: 1px solid rgba(255,255,255,.1); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .28s ease, opacity .28s ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 16px; }
  .menu-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero-grid, .split-intro, .scope-grid, .foreign-grid, .document-layout, .deliverables-grid, .benefits-grid, .audience-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-points { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(100%, 580px); margin-inline: auto; }
  .image-frame { height: 560px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-divider { display: none; }
  .trust-item { justify-content: flex-start; }
  .split-intro { gap: 20px; margin-bottom: 42px; }
  .intro-text { padding-left: 0; border: 0; }
  .scope-grid, .foreign-grid, .document-layout, .deliverables-grid, .benefits-grid, .audience-grid, .faq-grid, .contact-grid { gap: 45px; }
  .scope-image { max-width: 580px; }
  .scope-stamp { right: -10px; }
  .boundary-card { grid-template-columns: auto 1fr; }
  .boundary-card p { grid-column: 1 / -1; }
  .faq-heading { position: static; }
  .contact-copy { text-align: center; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-copy > p { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
}

@media (max-width: 620px) {
  :root { --section: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand img { width: 126px; }
  .hero { min-height: auto; padding: 112px 0 70px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-points { align-items: flex-start; flex-direction: column; width: max-content; max-width: 100%; margin-inline: auto; }
  .image-frame { height: 430px; border-radius: 100px 100px 24px 24px; }
  .image-frame::before { border-radius: 88px 88px 16px 16px; }
  .floating-card-top { left: -8px; top: 80px; }
  .floating-card-bottom { right: -5px; bottom: 28px; }
  .floating-card { padding: 11px 12px; }
  .hero-orbit { left: -12px; width: 80px; height: 80px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { display: block; text-align: center; }
  .trust-item strong, .trust-item span { display: block; }
  .trust-item span { margin-top: 3px; font-size: 10px; }
  .section-heading h2, .scope-content h2, .foreign-copy h2, .deliverables-head h2, .benefits-copy h2, .faq-heading h2, .contact-copy h2 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5), .service-card:last-child { grid-column: auto; min-height: 330px; }
  .scope-image img { height: 430px; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .boundary-card { margin-top: 42px; padding: 23px; }
  .document-visual { min-height: 390px; }
  .deliverable-bento, .process-grid { grid-template-columns: 1fr; }
  .deliverable-card { min-height: 180px; }
  .process-step { min-height: auto; }
  .step-no { margin-bottom: 35px; }
  .contact-details, .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { display: block; }
  .footer-bottom p { margin-top: 12px; text-align: left; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .js .reveal { transition-delay: 0ms !important; }
}

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