/* ============================================
   ArcForm Theme — Industrial Editorial
   ============================================ */

:root {
    --orange: #E8792B;
    --orange-dark: #D46A1F;
    --navy: #1A1D23;
    --navy-light: #2C3040;
    --off-white: #F4F3F0;
    --warm-white: #FAFAF8;
    --warm-gray: #6B6B6B;
    --light-gray: #D4D2CD;
    --border: rgba(26, 29, 35, 0.1);

    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--warm-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.site-header:not(.scrolled) .nav-link,
.site-header:not(.scrolled) .header-cta { color: rgba(255,255,255,0.8); }
.site-header:not(.scrolled) .nav-link:hover { color: #fff; }
.site-header:not(.scrolled) .logo-text { fill: #fff; }
.site-header:not(.scrolled) .hamburger span { background: #fff; }

.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.logo-svg { height: 36px; width: auto; }

.main-nav { display: none; }
@media (min-width: 768px) { .main-nav { display: flex; } }

.nav-list { display: flex; list-style: none; gap: 40px; }

.nav-link {
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.02em; color: var(--navy);
}
.nav-link:hover { color: var(--orange); }

.header-cta {
    font-size: 14px; font-weight: 600;
    color: var(--navy); letter-spacing: 0.02em;
    display: none;
}
@media (min-width: 768px) { .header-cta { display: inline-block; } }
.header-cta:hover { color: var(--orange); }

.mobile-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 1001;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--warm-white); padding: 120px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 999;
}
.mobile-menu.active { right: 0; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a { display: block; padding: 20px 0; font-size: 18px; font-weight: 500; }

/* ── BUTTONS ───────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600; font-size: 15px;
    cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; padding: 16px 32px; border: none; }
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline { background: transparent; color: var(--navy); padding: 14px 32px; border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-text { color: var(--orange); padding: 0; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.btn-text:hover { opacity: 0.8; }
.btn-text svg { transition: transform var(--transition); }
.btn-text:hover svg { transform: translateX(4px); }

.btn-block { width: 100%; justify-content: center; }

/* ── HERO ──────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end;
    background: var(--navy); overflow: hidden;
    padding-bottom: 80px;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg-image {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1A1D23 0%, #2C3040 50%, #1A1D23 100%);
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,29,35,0.2) 0%, rgba(26,29,35,0.85) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--orange); margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700; line-height: 1.05;
    color: #fff; margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.6; color: rgba(255,255,255,0.55);
    margin-bottom: 48px; max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .btn-outline {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.25);
}
.hero .btn-outline:hover {
    background: #fff; color: var(--navy); border-color: #fff;
}

/* ── SECTIONS ──────────────────────────────── */
.section { padding: 120px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-alt { background: var(--off-white); }

.section-label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--orange); margin-bottom: 16px; display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px; line-height: 1.65;
    color: var(--warm-gray); max-width: 600px;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.45); }
.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ── INTRO BAND ────────────────────────────── */
.intro-band { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .intro-band { grid-template-columns: 1fr 1fr; gap: 80px; } }

.intro-text .lead { font-size: 20px; line-height: 1.7; color: var(--warm-gray); }

.intro-image {
    width: 100%; aspect-ratio: 4/3;
    background: var(--off-white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--warm-gray); font-size: 14px;
    overflow: hidden;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px; padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700; color: var(--navy);
    display: block; line-height: 1.1; margin-bottom: 8px;
}
.stat-label {
    font-size: 13px; font-weight: 500;
    color: var(--warm-gray); text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-dark .stat-number { color: #fff; }
.section-dark .stat-label { color: rgba(255,255,255,0.35); }

.section-dark .stats-bar {
    border-top-color: rgba(255,255,255,0.08);
    border-bottom-color: rgba(255,255,255,0.08);
}

/* ── FEATURE BLOCKS ────────────────────────── */
.feature-block {
    display: grid; grid-template-columns: 1fr;
    gap: 48px; align-items: center;
    padding: 80px 0; border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }

@media (min-width: 768px) {
    .feature-block { grid-template-columns: 1fr 1fr; gap: 80px; }
    .feature-block.reverse .feature-image { order: -1; }
}

.feature-image {
    width: 100%; aspect-ratio: 4/3;
    background: var(--off-white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    color: var(--warm-gray); font-size: 14px;
    overflow: hidden;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image svg { opacity: 0.4; }

.feature-content h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 16px;
}
.feature-content p {
    font-size: 16px; line-height: 1.7;
    color: var(--warm-gray); margin-bottom: 24px;
}

.feature-list {
    list-style: none; display: flex;
    flex-direction: column; gap: 12px; margin-bottom: 32px;
}
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; line-height: 1.5; color: var(--navy);
}
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ── CAPABILITIES GRID ─────────────────────── */
.cap-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
}
@media (min-width: 768px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

.cap-card { background: var(--warm-white); padding: 48px 40px; }

.cap-number {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 700;
    color: var(--off-white); line-height: 1; margin-bottom: 24px;
}

.section-dark .cap-card { background: var(--navy); }
.section-dark .cap-number { color: var(--navy-light); }

.cap-card h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    margin-bottom: 12px; line-height: 1.3;
}
.cap-card p { font-size: 15px; line-height: 1.65; color: var(--warm-gray); }

.section-dark .cap-card p { color: rgba(255,255,255,0.4); }
.section-dark .cap-card h3 { color: #fff; }

/* ── TIMELINE ──────────────────────────────── */
.timeline { position: relative; }

.timeline-item {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 32px; padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker { display: flex; flex-direction: column; align-items: center; }

.timeline-number {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--orange); border: 2px solid var(--orange);
    flex-shrink: 0;
}
.timeline-line { width: 2px; flex: 1; background: var(--border); margin-top: 12px; }

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 8px; padding-top: 10px;
}
.timeline-content p { font-size: 16px; line-height: 1.65; color: var(--warm-gray); }

/* ── MARKETS ───────────────────────────────── */
.markets-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .markets-grid { grid-template-columns: repeat(2, 1fr); } }

.market-card {
    padding: 40px; border: 1px solid var(--border);
    background: var(--warm-white);
    transition: border-color var(--transition);
}
.market-card:hover { border-color: var(--orange); }
.market-icon { margin-bottom: 20px; }

.market-card h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700; margin-bottom: 10px;
}
.market-card p { font-size: 15px; line-height: 1.65; color: var(--warm-gray); }

/* ── IMAGE BAND ────────────────────────────── */
.image-band {
    width: 100%; aspect-ratio: 21/9;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 14px;
    overflow: hidden;
}

/* ── CONTACT ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.contact-info p { font-size: 17px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 32px; }

.contact-email {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 18px; font-weight: 600; color: var(--navy);
    border-bottom: 2px solid var(--orange); padding-bottom: 4px;
}
.contact-email:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 0;
    background: transparent; border: none;
    border-bottom: 1px solid var(--light-gray);
    color: var(--navy); font-family: var(--font-body);
    font-size: 16px; outline: none;
    transition: border-color var(--transition);
    border-radius: 0; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-gray); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.5); }

.footer-cta {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; color: #fff;
    margin-bottom: 16px; letter-spacing: -0.02em;
}
.footer-cta p {
    font-size: 17px; color: rgba(255,255,255,0.4);
    margin-bottom: 40px; max-width: 480px;
    margin-left: auto; margin-right: auto;
}

.footer-main { padding: 64px 0; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand .logo-svg { height: 32px; margin-bottom: 16px; }

.footer-tagline {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.3); max-width: 280px;
}

.footer-col h4 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.3); }
.footer-nav a:hover { color: var(--orange); }

.footer-email { font-size: 14px; color: rgba(255,255,255,0.3); }
.footer-email:hover { color: var(--orange); }

.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.social-link { color: rgba(255,255,255,0.2); transition: color var(--transition); }
.social-link:hover { color: var(--orange); }

.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); text-align: center; }

/* ── PAGE HERO (interior pages) ───────────── */
.page-hero {
    background: var(--navy); padding: 160px 0 80px;
}
.page-hero .hero-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--orange); margin-bottom: 24px;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; line-height: 1.1;
    color: #fff; max-width: 700px;
    letter-spacing: -0.02em;
}

/* ── TEAM ─────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border: 1px solid var(--border); background: var(--warm-white);
    overflow: hidden;
}
@media (min-width: 480px) { .team-card { grid-template-columns: 180px 1fr; } }

.team-photo {
    aspect-ratio: 1; background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    color: var(--light-gray); font-size: 13px;
    border-right: 1px solid var(--border);
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 32px; }

.team-name {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.team-role {
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--orange); margin-bottom: 16px;
}
.team-bio { font-size: 14px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 16px; }
.team-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--navy);
}
.team-link:hover { color: var(--orange); }
.team-link svg { opacity: 0.5; }

/* ── HARD NUMBERS / DATA BAR ─────────────── */
.data-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--border); border: 1px solid var(--border);
}
@media (min-width: 768px) { .data-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .data-grid { grid-template-columns: repeat(4, 1fr); } }

.data-card { background: var(--warm-white); padding: 48px 32px; }

.data-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700; line-height: 1; color: var(--navy);
    margin-bottom: 4px;
}
.data-number .data-unit {
    font-size: 0.5em; font-weight: 600; color: var(--orange);
}
.data-label {
    font-size: 14px; font-weight: 600; color: var(--navy);
    margin-bottom: 8px;
}
.data-desc {
    font-size: 13px; line-height: 1.6; color: var(--warm-gray);
}
.data-source {
    display: block; margin-top: 12px;
    font-size: 11px; color: var(--light-gray);
    font-style: italic;
}

/* ── PARTNERS / LOGO BAR ─────────────────── */
.partners-bar {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 48px 64px; padding: 32px 0;
}

.partner-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    opacity: 0.4; transition: opacity var(--transition);
}
.partner-item:hover { opacity: 0.8; }

.partner-logo {
    height: 48px; width: auto;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px;
    font-weight: 700; color: var(--navy); letter-spacing: 0.05em;
}
.partner-type {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--warm-gray);
}

.partners-note {
    text-align: center; margin-top: 32px;
    font-size: 14px; color: var(--warm-gray); font-style: italic;
}

/* ── ECONOMIC IMPACT ─────────────────────── */
.impact-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } }

.impact-card { background: var(--navy); padding: 48px 40px; }

.impact-icon { margin-bottom: 20px; color: var(--orange); }
.impact-card h3 {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.impact-card p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.4); }

/* ── COMPLIANCE ROADMAP ──────────────────── */
.compliance-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .compliance-grid { grid-template-columns: repeat(3, 1fr); } }

.compliance-card {
    padding: 40px; border: 1px solid var(--border);
    background: var(--warm-white);
}

.compliance-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; padding: 4px 12px;
    margin-bottom: 20px;
}
.compliance-status.planned { background: rgba(232,121,43,0.1); color: var(--orange); }
.compliance-status.in-progress { background: rgba(46,107,229,0.1); color: #2E6BE5; }
.compliance-status.active { background: rgba(46,166,89,0.1); color: #2EA659; }

.compliance-card h3 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.compliance-card p { font-size: 14px; line-height: 1.65; color: var(--warm-gray); }

/* ── ARTICLE PREVIEW ─────────────────────── */
.article-card {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border: 1px solid var(--border); background: var(--warm-white);
    overflow: hidden; transition: border-color var(--transition);
}
@media (min-width: 768px) { .article-card { grid-template-columns: 1fr 1fr; } }
.article-card:hover { border-color: var(--orange); }

.article-image {
    aspect-ratio: 16/10; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 14px;
}

.article-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.article-tag {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--orange); margin-bottom: 16px;
}
.article-content h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.article-content p { font-size: 15px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 24px; }

/* ── ANIMATIONS ────────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animate-in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 767px) {
    .section { padding: 80px 0; }
    .section-header, .section-header-center { margin-bottom: 40px; }
    .hero { padding-bottom: 60px; min-height: 90vh; }
    .hero-title { font-size: 36px; }
    .cap-card { padding: 32px 24px; }
    .feature-block { padding: 48px 0; }
    .timeline-item { grid-template-columns: 56px 1fr; gap: 20px; }
    .timeline-number { width: 40px; height: 40px; font-size: 16px; }
}
