/* ============================================================
   ONIZUKA STUDIO — MAIN STYLESHEET
   onizukastudio.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --white:        #FFFFFF;
  --off-white:    #F4F7FA;
  --light-gray:   #E8EDF3;
  --mid-gray:     #8A97A8;
  --charcoal:     #1A2332;
  --charcoal-mid: #334155;
  --navy:         #1E3A5F;
  --navy-mid:     #2C5282;
  --steel:        #4A7FA5;
  --steel-light:  #7FB3CC;
  --sky:          #D6E8F5;
  --sage:         #3D6B5E;
  --sage-mid:     #4A8573;
  --sage-light:   #C5DDD8;
  --sage-pale:    #EAF3F1;
  --border:       #D1DCE8;
  --shadow:       rgba(30,58,95,0.08);
  --font-head:    'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; letter-spacing: -0.4px; }
a { color: var(--sage-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── SKIP LINK ─────────────────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--navy); color: white; padding: 8px 16px; z-index: 9999; border-radius: 0 0 4px 0; font-size: 14px; }
.skip-link:focus { top: 0; }

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 14px; }
.section-label::after { content: ''; width: 48px; height: 2px; background: var(--sage-light); display: inline-block; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary { background: var(--navy); color: white; padding: 15px 30px; border-radius: 5px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--sage); color: white; transform: translateY(-1px); }
.btn-secondary { font-size: 14px; font-weight: 500; color: var(--charcoal-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.btn-secondary:hover { color: var(--navy); border-color: var(--navy); }
.btn-white { background: white; color: var(--navy); padding: 15px 34px; border-radius: 5px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: #A8D5C8; color: var(--navy); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.7); padding: 15px 26px; border-radius: 5px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); transition: all 0.2s; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }
.link-arrow { font-size: 14px; font-weight: 600; color: var(--sage-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 2px; border-bottom: 1px solid var(--sage-light); transition: gap 0.2s; white-space: nowrap; }
.link-arrow:hover { gap: 10px; color: var(--navy); }

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); height: 70px; box-shadow: 0 2px 12px var(--shadow); }
.site-header nav { max-width: 1400px; margin: 0 auto; padding: 0 56px; height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { display: block; height: 44px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--charcoal-mid); padding: 8px 14px; border-radius: 4px; text-decoration: none; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { background: var(--navy) !important; color: white !important; padding: 10px 22px !important; border-radius: 5px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--sage) !important; color: white !important; }

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: #0E1F33; padding: 64px 0 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 80px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { display: block; height: 44px; width: auto; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); max-width: 220px; line-height: 1.65; }
.footer-nav { display: flex; gap: 72px; flex-shrink: 0; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 80px; background: rgba(0,0,0,0.15); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.upwork-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 7px 16px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45); }
.green-dot { width: 7px; height: 7px; background: #6fda44; border-radius: 50%; flex-shrink: 0; }

/* ── PAGE CONTENT OFFSET ───────────────────────────────────── */
.page-content { padding-top: 70px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero { min-height: calc(100vh - 70px); display: grid; grid-template-columns: 1fr 1fr; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 56px 80px 80px; background: var(--white); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 28px; }
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--sage-mid); flex-shrink: 0; }
.hero h1 { font-family: var(--font-head); font-size: clamp(36px, 4.2vw, 54px); font-weight: 700; line-height: 1.12; letter-spacing: -1px; color: var(--navy); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--sage-mid); }
.hero-sub { font-size: 17px; color: var(--charcoal-mid); line-height: 1.75; max-width: 480px; margin-bottom: 16px; }
.hero-sub strong { color: var(--charcoal); font-weight: 600; }
.hero-note { font-size: 14px; color: var(--mid-gray); font-style: italic; line-height: 1.6; max-width: 460px; margin-bottom: 40px; padding: 14px 18px; border-left: 3px solid var(--sage-light); background: var(--sage-pale); border-radius: 0 5px 5px 0; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; gap: 0; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { display: flex; flex-direction: column; gap: 4px; padding-right: 32px; margin-right: 32px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.trust-num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.trust-label { font-size: 12px; color: var(--mid-gray); line-height: 1.4; max-width: 130px; }
.hero-right { position: relative; background: linear-gradient(160deg, #1E3A5F 0%, #152840 60%, #0E1F33 100%); display: flex; align-items: center; justify-content: center; min-height: 600px; overflow: hidden; }
.hero-right-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(74,133,115,0.25) 0%, transparent 55%), radial-gradient(ellipse at 80% 70%, rgba(74,127,165,0.2) 0%, transparent 55%); }
.hero-right img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder { position: relative; z-index: 2; text-align: center; color: rgba(255,255,255,0.5); padding: 40px; font-size: 14px; }
.hero-img-placeholder .icon { font-size: 48px; margin-bottom: 16px; }

/* ── WHO BAND ──────────────────────────────────────────────── */
.who-band { background: var(--charcoal); padding: 28px 80px; }
.who-band-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.who-band-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); white-space: nowrap; flex-shrink: 0; }
.who-band-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.who-band-items { display: flex; gap: 36px; flex-wrap: wrap; }
.who-band-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.who-band-item::before { content: ''; width: 6px; height: 6px; background: var(--sage-mid); border-radius: 50%; flex-shrink: 0; }

/* ── PROBLEM SECTION ───────────────────────────────────────── */
.problem { background: var(--navy); padding: 96px 80px; position: relative; overflow: hidden; }
.problem::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(74,133,115,0.1) 0%, transparent 70%); pointer-events: none; }
.problem-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.problem .section-label { color: #A8D5C8; }
.problem .section-label::after { background: rgba(168,213,200,0.3); }
.problem h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 18px; }
.problem h2 em { font-style: italic; color: #A8D5C8; }
.problem-intro { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 24px; }
.problem-punchline { font-family: var(--font-head); font-size: 17px; font-style: italic; color: #A8D5C8; line-height: 1.5; }
.problem-list { list-style: none; }
.problem-item { display: flex; align-items: flex-start; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.problem-item:first-child { padding-top: 0; }
.problem-arrow { color: var(--steel-light); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.problem-item p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }

/* ── TWO SIDES ─────────────────────────────────────────────── */
.two-sides { background: var(--white); padding: 96px 80px; }
.two-sides-header { max-width: 1100px; margin: 0 auto 56px; }
.two-sides-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; margin-bottom: 16px; max-width: 640px; }
.two-sides-header p { font-size: 16px; color: var(--charcoal-mid); line-height: 1.75; max-width: 640px; }
.two-sides-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.side-card { border-radius: 10px; padding: 48px 40px; }
.side-card-web { background: var(--navy); }
.side-card-ops { background: var(--sage); }
.side-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.side-card h3 { font-size: 26px; font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 14px; }
.side-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.side-services { display: flex; flex-direction: column; gap: 10px; }
.side-service-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.side-service-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.two-sides-bridge { max-width: 1100px; margin: 24px auto 0; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 36px; display: flex; align-items: center; gap: 24px; }
.bridge-icon { font-size: 24px; flex-shrink: 0; }
.bridge-text { font-size: 15px; color: var(--charcoal-mid); line-height: 1.65; }
.bridge-text strong { color: var(--navy); font-weight: 600; }

/* ── PROOF STATS ───────────────────────────────────────────── */
.proof { background: var(--navy); padding: 56px 80px; }
.proof-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 24px 32px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 8px; }
.proof-item:last-child { border-right: none; }
.proof-icon { font-size: 20px; margin-bottom: 4px; }
.proof-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: white; line-height: 1; }
.proof-num span { color: var(--steel-light); }
.proof-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process { background: var(--off-white); padding: 96px 80px; }
.process-header { max-width: 1100px; margin: 0 auto 60px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.process-header h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.process-header p { font-size: 15px; color: var(--mid-gray); max-width: 320px; text-align: right; line-height: 1.65; }
.process-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); list-style: none; padding: 0; }
.process-step { background: var(--white); padding: 40px 32px; transition: background 0.3s; }
.process-step:hover { background: var(--sage-pale); }
.process-step-num { font-family: var(--font-head); font-size: 64px; font-weight: 700; color: var(--light-gray); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.process-step:hover .process-step-num { color: var(--sage-light); }
.process-step-icon { font-size: 28px; margin-bottom: 16px; }
.process-step h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.process-step p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin: 0; }
.process-note { max-width: 1100px; margin: 20px auto 0; font-size: 13px; color: var(--mid-gray); font-style: italic; text-align: center; }

/* ── MCP SECTION ───────────────────────────────────────────── */
.mcp { background: var(--navy); padding: 96px 80px; position: relative; overflow: hidden; }
.mcp::before { content: 'MCP'; position: absolute; right: -30px; bottom: -40px; font-family: var(--font-head); font-size: 260px; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -8px; }
.mcp::after { content: ''; position: absolute; top: -120px; left: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(74,133,115,0.12) 0%, transparent 70%); pointer-events: none; }
.mcp-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.mcp-header { text-align: center; margin-bottom: 60px; }
.mcp-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #A8D5C8; margin-bottom: 20px; }
.mcp-eyebrow::before,.mcp-eyebrow::after { content: ''; width: 32px; height: 1px; background: rgba(168,213,200,0.4); }
.mcp-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: white; letter-spacing: -0.8px; line-height: 1.15; max-width: 720px; margin: 0 auto 16px; }
.mcp-header h2 em { font-style: italic; color: #A8D5C8; }
.mcp-header-sub { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 640px; margin: 0 auto; }
.mcp-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; align-items: start; }
.mcp-explain { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 40px; }
.mcp-explain-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #A8D5C8; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.mcp-explain-label::after { content: ''; flex: 1; height: 1px; background: rgba(168,213,200,0.2); }
.mcp-explain p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 14px; }
.mcp-explain p:last-child { margin-bottom: 0; }
.mcp-explain strong { color: white; font-weight: 600; }
.mcp-actions-col { display: flex; flex-direction: column; gap: 14px; }
.mcp-action-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid #A8D5C8; border-radius: 0 8px 8px 0; padding: 18px 20px; transition: background 0.2s; }
.mcp-action-card:hover { background: rgba(168,213,200,0.08); }
.mcp-action-title { font-size: 13px; font-weight: 600; color: white; margin-bottom: 5px; line-height: 1.4; }
.mcp-action-body { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.6; }
.mcp-platforms { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; text-align: center; }
.mcp-platforms-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.mcp-platform-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.mcp-tag { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 7px 18px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.mcp-tag:hover { background: rgba(168,213,200,0.15); border-color: rgba(168,213,200,0.3); color: #A8D5C8; }

/* ── CASE STUDIES ──────────────────────────────────────────── */
.casestudies { background: var(--white); padding: 96px 80px; }
.cs-header { max-width: 1100px; margin: 0 auto 56px; display: flex; justify-content: space-between; align-items: flex-end; }
.cs-header h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.cs-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cs-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.2s; }
.cs-card:hover { box-shadow: 0 16px 40px var(--shadow); transform: translateY(-3px); }
.cs-card-img { height: 160px; position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 18px; text-align: center; }
.cs-img-1 { background: linear-gradient(135deg, #1E3A5F 0%, #152840 100%); }
.cs-img-2 { background: linear-gradient(135deg, #2C5282 0%, #1E3A5F 100%); }
.cs-img-3 { background: linear-gradient(135deg, #3D6B5E 0%, #2A4D44 100%); }
.cs-img-4 { background: linear-gradient(135deg, #2A4D6B 0%, #1A3550 100%); }
.cs-img-label { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 3px 10px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 1.5px; text-transform: uppercase; }
.cs-type-pill { position: absolute; top: 12px; right: 12px; padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
.cs-type-auto { background: rgba(74,133,115,0.3); color: #A8D5C8; border: 1px solid rgba(74,133,115,0.4); }
.cs-type-web { background: rgba(74,127,165,0.3); color: #B3D4EC; border: 1px solid rgba(74,127,165,0.4); }
.cs-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cs-industry { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 10px; }
.cs-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.cs-card p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.cs-result { background: var(--sage-pale); border-left: 3px solid var(--sage-mid); border-radius: 0 5px 5px 0; padding: 11px 14px; font-size: 13px; font-weight: 500; color: var(--sage); line-height: 1.5; margin-bottom: 20px; }
.cs-link { font-size: 13px; font-weight: 600; color: var(--steel); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.cs-link:hover { gap: 8px; color: var(--navy); }

/* ── SUPPORT BAND ──────────────────────────────────────────── */
.support-band { background: var(--sage); padding: 80px 80px; position: relative; overflow: hidden; }
.support-band::before { content: ''; position: absolute; right: -60px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); pointer-events: none; }
.support-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.support-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.support-label::after { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.25); }
.support-band h2 { font-size: clamp(26px, 2.8vw, 38px); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 18px; }
.support-band h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.support-copy { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }
.support-quote { font-family: var(--font-head); font-size: 17px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; padding-left: 20px; border-left: 3px solid rgba(255,255,255,0.3); }
.support-cards { display: flex; flex-direction: column; gap: 16px; }
.support-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; transition: background 0.2s; }
.support-card:hover { background: rgba(255,255,255,0.15); }
.support-card-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.support-card-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 5px; }
.support-card-body { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── AUTOMATION FILES ──────────────────────────────────────── */
.af { background: var(--off-white); padding: 96px 80px; position: relative; overflow: hidden; }
.af::before { content: 'AF'; position: absolute; right: -30px; top: 50%; transform: translateY(-50%); font-family: var(--font-head); font-size: 340px; font-weight: 700; color: rgba(30,58,95,0.03); line-height: 1; pointer-events: none; user-select: none; }
.af-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.af-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.af-header h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.8px; }
.af-header h2 em { font-style: italic; color: var(--sage); }
.af-hashtag { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: white; padding: 10px 20px; border-radius: 24px; font-size: 13px; font-weight: 600; white-space: nowrap; flex-shrink: 0; text-decoration: none; transition: background 0.2s; }
.af-hashtag:hover { background: var(--sage); color: white; }
.af-posts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.af-post { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 32px; display: flex; gap: 20px; transition: box-shadow 0.3s; text-decoration: none; color: inherit; }
.af-post:hover { box-shadow: 0 6px 24px var(--shadow); }
.af-post-num { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--light-gray); line-height: 1; flex-shrink: 0; margin-top: -4px; }
.af-post-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-mid); margin-bottom: 8px; }
.af-post h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.af-post p { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 18px; }
.af-post-link { font-size: 13px; font-weight: 600; color: var(--sage-mid); }

/* ── CLOSING CTA ───────────────────────────────────────────── */
.closing { background: var(--charcoal); padding: 112px 80px; text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 50%, rgba(74,133,115,0.15) 0%, transparent 55%), radial-gradient(ellipse at 85% 50%, rgba(74,127,165,0.12) 0%, transparent 55%); }
.closing-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.closing h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 700; color: white; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.closing h2 em { font-style: italic; color: #A8D5C8; }
.closing p { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 44px; }
.closing-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header nav, .footer-inner { padding: 0 40px; }
  .footer-bottom { padding: 24px 40px; }
  .hero-left { padding: 60px 40px; }
  .problem, .two-sides, .mcp, .casestudies, .support-band, .af, .closing { padding-left: 40px; padding-right: 40px; }
  .proof, .process, .who-band { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .site-header nav { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; gap: 0; padding: 16px 0; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--light-gray); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .hero-left { padding: 48px 24px; }
  .problem-inner, .two-sides-grid, .mcp-body, .support-inner, .af-posts, .cs-grid { grid-template-columns: 1fr; }
  .proof-inner, .process-steps { grid-template-columns: 1fr 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { padding: 24px; }
  .who-band { padding: 20px 24px; }
  .who-band-inner { flex-wrap: wrap; gap: 16px; }
  .who-band-items { gap: 12px; }
  .problem, .two-sides, .mcp, .casestudies, .support-band, .af, .closing { padding: 64px 24px; }
  .proof, .process { padding: 48px 24px; }
  .hero-trust { flex-wrap: wrap; gap: 24px; }
  .trust-item { border-right: none; padding-right: 0; margin-right: 0; }
  .process-header { flex-direction: column; }
  .process-header p { text-align: left; max-width: 100%; }
}

@media (max-width: 480px) {
  .proof-inner, .process-steps { grid-template-columns: 1fr; }
  .two-sides-grid { grid-template-columns: 1fr; }
}

/* ── PRINT STYLES ──────────────────────────────────────────── */
@media print {
  .site-header, .nav-toggle { display: none; }
  .page-content { padding-top: 0; }
  a { color: var(--navy); }
}

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
