@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@500;700;900&family=Assistant:wght@400;500;600;700&display=swap');

:root {
    --bg-page: #ECE6D9;
    --bg-surface: #F4EFE3;
    --bg-surface-alt: #E2DCCC;
    --text-primary: #15181F;
    --text-secondary: #5C6170;
    --border: #CFC7B6;
    --accent-1: #B5421E;
    --accent-1-hover: #8E3115;
    --accent-2: #1F3A5F;
    --accent-2-hover: #152A47;
    --hero-overlay: rgba(21, 24, 31, 0.55);
    --grad-accent: linear-gradient(135deg, #B5421E 0%, #8E3115 100%);
    --shadow-card-hover: 0 1px 0 #CFC7B6, 0 12px 28px rgba(21, 24, 31, 0.07);
    --shadow-hero-vignette: inset 0 0 180px rgba(21, 24, 31, 0.35);
    --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
    --max-width: 1240px;
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Assistant', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-page);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Frank Ruhl Libre', serif;
    color: var(--text-primary);
}

h1 {
    font-weight: 900;
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

h2 {
    font-weight: 700;
    font-size: clamp(2.0rem, 3.6vw, 2.8rem);
    line-height: 1.1;
}

h3 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color 220ms var(--ease-hover);
}

a:hover {
    color: var(--accent-1-hover);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

/* ================ EYEBROW ================ */
.eyebrow {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background-color: var(--accent-1);
    display: inline-block;
}

.eyebrow.eyebrow-light {
    color: var(--bg-surface);
}

.eyebrow.eyebrow-light::before {
    background-color: var(--accent-1);
}

/* ================ BUTTONS ================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 220ms var(--ease-hover);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background-color: var(--accent-1);
    color: #fff;
    border-color: var(--accent-1);
}

.btn-primary:hover {
    background-color: var(--accent-1-hover);
    border-color: var(--accent-1-hover);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.btn-secondary:hover {
    background-color: var(--accent-2);
    color: #fff;
}

.btn-ghost {
    color: var(--text-primary);
    background: transparent;
    padding: 0.5rem 0;
    font-weight: 600;
    position: relative;
    border-radius: 0;
    border: none;
}

.btn-ghost::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-1);
    transition: width 220ms var(--ease-hover);
}

.btn-ghost:hover {
    color: var(--accent-1);
}

.btn-ghost:hover::after {
    width: 100%;
}

.btn-ghost-light {
    color: var(--bg-surface);
}

/* ================ NAV ================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(236, 230, 217, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand-mark {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-mark:hover {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-1);
}

.nav-links a.active {
    color: var(--accent-1);
}

.nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.9375rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: flex-end;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 220ms var(--ease-hover);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================ HERO ================ */
.hero {
    position: relative;
    min-height: 78vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--bg-surface);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-hero-vignette);
}

.hero.hero-tall {
    min-height: 88vh;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--hero-overlay);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.hero-content.hero-center {
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--bg-surface);
    margin-bottom: 1.25rem;
}

.hero p.hero-sub {
    color: rgba(244, 239, 227, 0.92);
    font-size: 1.1875rem;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-content.hero-center p.hero-sub {
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content.hero-center .hero-cta-row {
    justify-content: center;
}

.hero .eyebrow {
    color: #E8B79A;
}

.hero .eyebrow::before {
    background-color: #E8B79A;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(244, 239, 227, 0.85);
    font-size: 1.5rem;
    animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================ GRADIENT FALLBACK ================ */
.hero-gradient {
    background: var(--grad-accent);
    background-attachment: scroll;
}

/* ================ COMPACT HEADER ================ */
.page-header {
    background-color: var(--bg-page);
    padding: clamp(5rem, 9vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: 1.25rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1875rem;
    line-height: 1.55;
    max-width: 620px;
    font-weight: 500;
}

.page-header .date-stamp {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

/* ================ SECTION VARIANTS ================ */
.section-band {
    background-color: var(--bg-surface-alt);
}

.section-surface {
    background-color: var(--bg-surface);
}

.section-dark {
    background-color: var(--accent-2);
    color: var(--bg-surface);
}

.section-dark h2,
.section-dark h3 {
    color: var(--bg-surface);
}

.section-dark p {
    color: rgba(244, 239, 227, 0.9);
}

.section-header {
    margin-bottom: 3.5rem;
    max-width: 760px;
}

.section-header.section-header-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1875rem;
    line-height: 1.55;
    margin-top: 1rem;
    font-weight: 500;
}

/* ================ VALUE PROPS / NUMERAL CARDS ================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-item {
    border-top: 2px solid var(--accent-1);
    padding-top: 1.75rem;
}

.value-numeral,
.numeral {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    color: var(--accent-1);
    display: block;
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.85rem;
}

.value-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ================ EDITORIAL SPLIT ================ */
.split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: start;
}

.split-reverse {
    grid-template-columns: 7fr 5fr;
}

.split h2 {
    margin-bottom: 1.5rem;
}

.split p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.editorial-block {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent-1);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    min-height: 320px;
    display: flex;
    align-items: center;
}

.pull-quote {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.35;
    color: var(--text-primary);
}

.pull-quote::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background-color: var(--accent-1);
    margin-bottom: 1.5rem;
}

/* ================ PROCESS STEPS ================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent-1);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    position: relative;
    transition: all 220ms var(--ease-hover);
}

.process-grid {
    gap: 1.5rem;
}

.process-step:hover {
    border-color: var(--accent-1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-card-hover);
}

.process-step .numeral {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.55;
}

/* ================ TRUST STRIP ================ */
.trust-strip {
    background-color: var(--bg-surface);
    padding: 2.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.trust-claim {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}

.trust-claim::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-1);
    border-radius: 50%;
}

.trust-claim:last-child::after {
    display: none;
}

/* ================ TESTIMONIAL PLACEHOLDER ================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 220ms var(--ease-hover);
}

.testimonial-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card blockquote {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-family: 'Assistant', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* ================ CTA BAND ================ */
.cta-band {
    background-color: var(--accent-2);
    color: var(--bg-surface);
    padding: clamp(4rem, 7vw, 6rem) 0;
    position: relative;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 64px;
    height: 3px;
    background-color: var(--accent-1);
}

.cta-band-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-band h2 {
    color: var(--bg-surface);
    margin-bottom: 2rem;
}

.cta-band-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band .btn-ghost {
    color: var(--bg-surface);
}

.cta-band .btn-ghost::after {
    background-color: var(--bg-surface);
}

.cta-band .btn-ghost:hover {
    color: var(--bg-surface);
}

/* ================ FORM ================ */
.form-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-field {
    margin-bottom: 1.25rem;
    display: block;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field label {
    display: block;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-field .helper {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 220ms var(--ease-hover);
    direction: rtl;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
    border-color: var(--accent-2);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--accent-1);
}

.form-error {
    display: block;
    color: var(--accent-1);
    font-size: 0.8125rem;
    margin-top: 0.4rem;
    min-height: 0;
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Checkbox grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background-color: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 220ms var(--ease-hover);
    font-size: 0.9375rem;
    font-weight: 500;
}

.checkbox-pill:hover {
    border-color: var(--accent-1);
}

.checkbox-pill input {
    width: auto;
    margin: 0;
    accent-color: var(--accent-1);
}

.checkbox-pill input:checked + span {
    color: var(--accent-1);
    font-weight: 600;
}

.checkbox-pill:has(input:checked) {
    border-color: var(--accent-1);
    background-color: rgba(181, 66, 30, 0.06);
}

/* Form messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    line-height: 1.5;
    display: none;
}

.form-message.is-success {
    display: block;
    background-color: rgba(31, 58, 95, 0.06);
    border: 1px solid var(--accent-2);
    color: var(--accent-2);
}

.form-message.is-error {
    display: block;
    background-color: rgba(181, 66, 30, 0.07);
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
}

.form-message strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.1875rem;
}

/* ================ CONTACT CHANNELS ================ */
.contact-channels {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.channel {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.channel:first-child {
    padding-top: 0;
}

.channel:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.channel-label {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.channel-value {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    direction: ltr;
    text-align: right;
}

.channel-meta {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 0.4rem;
}

/* ================ FAQ ================ */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: right;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1.5rem 0;
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: color 220ms var(--ease-hover);
}

.faq-question:hover {
    color: var(--accent-1);
}

.faq-toggle {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--accent-1);
    transition: transform 220ms var(--ease-hover);
    line-height: 1;
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms var(--ease-reveal);
}

.faq-answer-inner {
    padding: 0 0 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

/* ================ FUNNEL ================ */
.funnel-shell {
    max-width: 720px;
    margin: 0 auto;
}

.funnel-step-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
}

.funnel-step-indicator {
    flex: 1;
    text-align: center;
    opacity: 0.35;
    transition: opacity 220ms var(--ease-hover);
}

.funnel-step-indicator.is-active {
    opacity: 1;
}

.funnel-step-indicator.is-done {
    opacity: 0.55;
}

.funnel-step-indicator .num {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1;
    color: var(--accent-1);
    display: block;
    margin-bottom: 0.4rem;
}

.funnel-step-indicator .label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

.funnel-page { display: none; }
.funnel-page.active { display: block; }

.funnel-page h2 {
    margin-bottom: 0.5rem;
}

.funnel-page .step-sub {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.funnel-progress-rail {
    height: 3px;
    background-color: var(--border);
    margin-bottom: 2.5rem;
    border-radius: 99px;
    overflow: hidden;
}

.funnel-progress-fill {
    height: 100%;
    background: var(--grad-accent);
    width: 20%;
    transition: width 320ms var(--ease-reveal);
}

/* ================ POST-FUNNEL EXPLANATION ================ */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.next-step-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent-1);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
}

.next-step-card .numeral {
    font-size: clamp(2.6rem, 4vw, 3.25rem);
    margin-bottom: 0.5rem;
}

.next-step-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.next-step-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* ================ ABOUT — country pipelines ================ */
.country-block {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent-1);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: center;
}

.country-block:last-child {
    margin-bottom: 0;
}

.country-name {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--accent-1);
    letter-spacing: -0.01em;
}

.country-block p {
    color: var(--text-primary);
    margin: 0;
}

/* ================ STANDARDS BLOCK ================ */
.standards-block h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    max-width: 920px;
}

.standards-block::before {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background-color: var(--accent-1);
    margin-bottom: 2.25rem;
}

/* ================ MISSION ================ */
.mission-statement {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement p {
    font-family: 'Assistant', sans-serif;
    font-weight: 500;
    font-size: 1.1875rem;
    line-height: 1.55;
    color: var(--text-primary);
}

/* ================ PRIVACY CONTENT ================ */
.policy-doc {
    max-width: 720px;
    margin: 0 auto;
}

.policy-doc h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.policy-doc h2:first-child {
    margin-top: 0;
}

.policy-doc h3 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.policy-doc p,
.policy-doc li {
    color: var(--text-primary);
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.policy-doc ul {
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-doc li {
    margin-bottom: 0.4rem;
}

/* ================ FOOTER ================ */
.site-footer {
    background-color: var(--text-primary);
    color: rgba(244, 239, 227, 0.78);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(244, 239, 227, 0.12);
}

.footer-brand {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--bg-surface);
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
}

.footer-blurb {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 360px;
    color: rgba(244, 239, 227, 0.7);
}

.footer-col h4 {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    color: rgba(244, 239, 227, 0.78);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: var(--bg-surface);
}

.footer-meta {
    color: rgba(244, 239, 227, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(244, 239, 227, 0.5);
    font-size: 0.8125rem;
}

.footer-signature {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(244, 239, 227, 0.6);
    margin-top: 1.5rem;
    width: 100%;
}

.footer-signature a {
    color: rgba(244, 239, 227, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-signature a:hover {
    color: var(--bg-surface);
}

/* ================ REVEAL ANIMATION ================ */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms var(--ease-reveal), transform 600ms var(--ease-reveal);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms var(--ease-reveal), transform 600ms var(--ease-reveal);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }

/* ================ RESPONSIVE ================ */
@media (max-width: 980px) {
    .nav-links {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        flex-direction: column;
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        gap: 1.25rem;
        align-items: flex-start;
        transform: translateY(-110%);
        transition: transform 280ms var(--ease-hover);
        z-index: 90;
    }

    .nav-links.is-open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .value-grid,
    .testimonial-grid,
    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .split-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .country-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll;
        min-height: 70vh;
    }

    .hero.hero-tall {
        min-height: 80vh;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .funnel-step-bar {
        gap: 0.25rem;
    }

    .funnel-step-indicator .label {
        display: none;
    }

    .form-card,
    .contact-channels {
        padding: 1.75rem;
    }

    .trust-claim {
        gap: 1.25rem;
    }
}

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

    .reveal,
    .reveal-stagger > * {
        transform: none !important;
    }

    .hero {
        background-attachment: scroll !important;
    }

    .hero-scroll-cue {
        animation: none !important;
    }
}
