@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --navy: #062a4f;
  --navy-2: #083b68;
  --deep: #04192f;
  --ink: #071c33;
  --text: #314055;
  --muted: #6b7a90;
  --line: rgba(6, 42, 79, 0.12);
  --orange: #ff6a2a;
  --orange-2: #ff8a00;
  --orange-soft: rgba(255, 106, 42, 0.12);
  --sky: #00a8e8;
  --sky-soft: rgba(0, 168, 232, 0.12);
  --green: #16a36f;
  --cream: #fff7ed;
  --paper: #ffffff;
  --paper-2: #f6f9fc;
  --shadow-sm: 0 8px 24px rgba(7, 28, 51, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 28, 51, 0.14);
  --shadow-dark: 0 24px 70px rgba(2, 15, 32, 0.32);
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 78px;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }
button { border: none; background: none; cursor: pointer; }
.site-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 420px at 10% 3%, rgba(255, 106, 42, .12), transparent 62%),
    radial-gradient(680px 440px at 90% 10%, rgba(0, 168, 232, .12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 48%, #ffffff 100%);
}
.site-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(6,42,79,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(6,42,79,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,42,79,.10);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 30px rgba(6,42,79,.08); }
.nav-container { max-width: 1240px; height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.logo-mark {
  height: 42px; width: 56px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: white;
  font-family: var(--font-display); font-weight: 900; font-size: .88rem; letter-spacing: -.03em;
  box-shadow: 0 12px 28px rgba(255,106,42,.28);
}
.logo-copy { display: grid; line-height: 1.05; }
.logo-text { font-family: var(--font-display); font-weight: 900; color: var(--navy); font-size: 1.18rem; letter-spacing: -.03em; }
.logo-sub { margin-top: 4px; color: var(--muted); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 13px; border-radius: 999px; color: #334a63; font-weight: 800; font-size: .86rem; transition: background .2s, color .2s, transform .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--sky-soft); color: var(--navy); transform: translateY(-1px); }
.nav-links .nav-cta { background: var(--navy); color: white; padding: 0 18px; box-shadow: 0 12px 28px rgba(6,42,79,.2); }
.nav-links .nav-cta:hover { background: var(--orange); color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--paper-2); border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 21px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }
.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); }

/* Common layout */
.section { padding: 92px 0; position: relative; }
.section.compact { padding: 64px 0; }
.section.dark { background: var(--deep); color: white; }
.section.blue { background: linear-gradient(135deg, var(--navy), #074a7b); color: white; }
.section.orange { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: white; }
.section-inner, .hero-inner, .page-hero-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: .77rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 15px; }
.kicker::before { content: ''; width: 34px; height: 4px; border-radius: 100px; background: currentColor; }
.dark .kicker, .blue .kicker, .orange .kicker { color: white; }
.h1, .hero-title, .page-title { font-family: var(--font-display); color: var(--navy); font-weight: 900; letter-spacing: -.06em; line-height: .96; }
.hero-title { font-size: clamp(3.4rem, 7.5vw, 6.7rem); max-width: 820px; }
.page-title { font-size: clamp(3rem, 6vw, 5.7rem); max-width: 920px; }
.section-title { font-family: var(--font-display); font-size: clamp(2.25rem, 4.5vw, 4.1rem); font-weight: 900; line-height: 1; letter-spacing: -.055em; color: var(--navy); margin-bottom: 18px; }
.dark .section-title, .blue .section-title, .orange .section-title, .dark .h1, .blue .h1, .orange .h1 { color: white; }
.accent { color: var(--orange); }
.sky { color: var(--sky); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 690px; line-height: 1.76; }
.dark .lead, .blue .lead, .orange .lead { color: rgba(255,255,255,.78); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 900; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 14px 34px rgba(255,106,42,.30); }
.btn-secondary { color: var(--navy); background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-dark { color: white; background: var(--navy); box-shadow: 0 16px 36px rgba(6,42,79,.23); }
.btn-outline { color: var(--navy); border: 2px solid rgba(6,42,79,.18); background: rgba(255,255,255,.7); }
.dark .btn-outline, .blue .btn-outline { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 32px; }
.card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(255,106,42,.28); }
.card.dark-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: white; box-shadow: none; }
.card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); font-weight: 900; line-height: 1.1; letter-spacing: -.035em; margin-bottom: 10px; }
.dark-card h3 { color: white; }
.card p { color: var(--muted); }
.dark-card p { color: rgba(255,255,255,.72); }
.icon-pill { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--orange-soft); color: var(--orange); font-size: 1.45rem; margin-bottom: 18px; font-weight: 900; }
.dark-card .icon-pill { background: rgba(255,255,255,.12); color: white; }

/* Hero */
.hero { padding: calc(var(--nav-h) + 62px) 0 86px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 16px; background: linear-gradient(90deg, var(--orange) 0 26%, var(--sky) 26% 52%, var(--navy) 52% 78%, var(--orange-2) 78% 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-title span { display: block; }
.hero-desc { max-width: 650px; margin-top: 22px; color: #41566d; font-size: 1.18rem; }
.hero-desc strong { color: var(--navy); }
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.proof-chip { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-size: .82rem; font-weight: 900; color: var(--navy); box-shadow: 0 8px 24px rgba(6,42,79,.06); }
.proof-chip::before { content: '✓'; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: white; font-size: .72rem; }
.hero-visual { position: relative; min-height: 550px; }
.performance-panel { position: relative; z-index: 1; background: #071d35; color: white; border-radius: 34px; padding: 24px; box-shadow: var(--shadow-dark); overflow: hidden; }
.performance-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 240px at 85% 8%, rgba(0,168,232,.26), transparent 58%), radial-gradient(360px 220px at 0 100%, rgba(255,106,42,.18), transparent 60%); pointer-events: none; }
.panel-top, .panel-row, .mini-report, .score-card { position: relative; z-index: 1; }
.panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.panel-title { font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em; }
.panel-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(22,163,111,.16); color: #7ef0bd; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.panel-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #35e39b; box-shadow: 0 0 14px #35e39b; }
.score-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; margin-bottom: 14px; }
.score-big { background: white; color: var(--navy); border-radius: 24px; padding: 22px; }
.score-big span { font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.score-big strong { display: block; font-size: 3.5rem; font-family: var(--font-display); line-height: 1; letter-spacing: -.05em; margin-top: 8px; }
.score-big em { color: var(--green); font-style: normal; font-weight: 900; }
.score-list { display: grid; gap: 10px; }
.score-list div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 14px; }
.score-list span { display: block; font-size: .72rem; color: rgba(255,255,255,.65); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.score-list strong { font-family: var(--font-display); font-size: 1.4rem; }
.panel-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.metric-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 16px; }
.metric-box span { display: block; color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.metric-box strong { display: block; margin-top: 6px; font-size: 1.45rem; line-height: 1; }
.mini-report { background: white; color: var(--navy); border-radius: 24px; padding: 18px; margin-top: 14px; }
.report-row { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.report-label { width: 88px; font-size: .78rem; color: var(--muted); font-weight: 900; }
.report-track { flex: 1; height: 10px; border-radius: 999px; background: #e8eef5; overflow: hidden; }
.report-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange), var(--sky)); }
.hero-callout { position: absolute; right: -8px; bottom: 22px; z-index: 3; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 18px; width: 240px; box-shadow: var(--shadow-md); }
.hero-callout strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.15rem; line-height: 1.1; margin-bottom: 8px; }
.hero-callout p { color: var(--muted); font-size: .88rem; }
.floating-tag { position: absolute; left: -10px; top: 70px; background: var(--orange); color: white; border-radius: 999px; padding: 13px 18px; font-weight: 900; box-shadow: 0 18px 38px rgba(255,106,42,.24); transform: rotate(-3deg); }

/* Ribbons and stats */
.ribbon { overflow: hidden; background: var(--navy); color: white; padding: 17px 0; }
.ribbon-track { display: flex; gap: 34px; min-width: max-content; animation: ribbon 28s linear infinite; }
.ribbon span { font-family: var(--font-display); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ribbon i { color: var(--orange); font-style: normal; }
@keyframes ribbon { to { transform: translateX(-50%); } }
.stats { background: white; border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 36px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--navy); font-weight: 900; letter-spacing: -.05em; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-weight: 800; font-size: .88rem; }

/* Service preview */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 34px; }
.service-card { min-height: 300px; display: flex; flex-direction: column; }
.service-card .service-num { font-size: .72rem; letter-spacing: .16em; color: var(--orange); text-transform: uppercase; font-weight: 900; margin-bottom: 16px; }
.service-card .btn-link { margin-top: auto; padding-top: 22px; color: var(--navy); font-weight: 900; }
.service-card.featured { grid-column: span 2; background: linear-gradient(135deg, var(--navy), #0b4d80); color: white; }
.service-card.featured h3, .service-card.featured .btn-link { color: white; }
.service-card.featured p { color: rgba(255,255,255,.78); max-width: 640px; }
.service-card.featured .service-num { color: #ffbf8d; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; overflow: hidden; margin-top: 36px; }
.process-step { padding: 30px; background: rgba(255,255,255,.055); border-right: 1px solid rgba(255,255,255,.14); }
.process-step:last-child { border-right: none; }
.process-step span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange); color: white; font-weight: 900; margin-bottom: 20px; }
.process-step h3 { color: white; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.1; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,.72); font-size: .93rem; }

/* Local focus */
.problem-panel { background: #fff4ed; border: 1px solid rgba(255,106,42,.18); border-radius: 28px; padding: 34px; }
.problem-list { display: grid; gap: 18px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; }
.problem-item span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: white; font-weight: 900; flex: 0 0 auto; }
.problem-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.local-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.local-card { padding: 22px; border-radius: 18px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-sm); }
.local-card strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 7px; }

/* Page hero */
.page-hero { padding: calc(var(--nav-h) + 68px) 0 70px; background: linear-gradient(135deg, rgba(255,106,42,.09), rgba(0,168,232,.08)); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-top: 18px; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta span { padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--navy); font-weight: 900; font-size: .86rem; }

/* Services page */
.service-matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
.matrix-card { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
.matrix-icon { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--orange), var(--orange-2)); font-size: 1.65rem; font-weight: 900; box-shadow: 0 14px 30px rgba(255,106,42,.24); }
.matrix-card h3 { font-size: 1.55rem; }
.includes { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.includes span { padding: 7px 10px; border-radius: 999px; background: var(--paper-2); color: #44566c; font-size: .78rem; font-weight: 900; }
.dark-card .includes span { background: rgba(255,255,255,.10); color: rgba(255,255,255,.82); }

/* Solutions */
.solution-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.solution-tab { border: 1px solid var(--line); background: white; border-radius: 18px; padding: 20px; text-align: left; transition: .2s; }
.solution-tab strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.16rem; }
.solution-tab span { color: var(--muted); font-size: .9rem; }
.solution-tab.active, .solution-tab:hover { border-color: rgba(255,106,42,.35); background: #fff8f3; transform: translateY(-2px); }
.solution-panel { display: none; margin-top: 24px; }
.solution-panel.active { display: block; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.industry-card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-sm); }
.industry-card h3 { color: var(--navy); font-family: var(--font-display); font-weight: 900; margin-bottom: 8px; }
.industry-card ul { margin-top: 14px; display: grid; gap: 8px; }
.industry-card li { color: var(--muted); font-size: .92rem; }
.industry-card li::before { content: '•'; color: var(--orange); margin-right: 8px; font-weight: 900; }

/* About */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.value-num { font-family: var(--font-display); color: var(--orange); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 18px; }
.story-box { background: var(--navy); color: white; border-radius: 32px; padding: 42px; box-shadow: var(--shadow-dark); }
.story-box p { color: rgba(255,255,255,.76); margin-top: 18px; }

/* AI demo */
.ai-shell { display: grid; grid-template-columns: .86fr 1.14fr; gap: 36px; align-items: start; }
.chat-panel { background: white; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-md); overflow: hidden; }
.chat-head { background: var(--navy); color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-agent { display: flex; align-items: center; gap: 12px; }
.agent-icon { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: var(--orange); font-weight: 900; }
.chat-body { padding: 22px; min-height: 430px; display: flex; flex-direction: column; gap: 14px; background: linear-gradient(180deg, #f7fafc, #fff); }
.bubble { max-width: 84%; padding: 14px 16px; border-radius: 18px; font-size: .95rem; }
.bubble.bot { background: white; border: 1px solid var(--line); color: var(--text); align-self: flex-start; box-shadow: 0 8px 20px rgba(6,42,79,.06); }
.bubble.user { background: var(--orange); color: white; align-self: flex-end; }
.quick-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: auto; }
.prompt-btn { border: 1px solid var(--line); background: white; border-radius: 14px; padding: 12px; text-align: left; color: var(--navy); font-weight: 800; transition: .2s; }
.prompt-btn:hover { border-color: var(--orange); transform: translateY(-2px); }
.chat-input { display: flex; gap: 10px; padding: 18px; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 999px; padding: 0 16px; outline: none; }
.chat-input button { border-radius: 999px; padding: 0 18px; color: white; background: var(--navy); font-weight: 900; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.contact-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.contact-card h3 { color: var(--navy); font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.contact-card a { color: var(--orange); font-weight: 900; }
.contact-form { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 16px; }
.field label { display: block; color: var(--navy); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; outline: none; background: #fbfdff; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,42,.12); }

/* CTA and Footer */
.cta-panel { position: relative; overflow: hidden; border-radius: 34px; background: linear-gradient(135deg, var(--navy), #073f6b); color: white; padding: 48px; box-shadow: var(--shadow-dark); }
.cta-panel::after { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; right: -110px; top: -120px; background: rgba(255,106,42,.28); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { color: white; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.05em; }
.cta-panel p { color: rgba(255,255,255,.78); max-width: 720px; margin-top: 16px; }
.footer { background: #031426; color: white; padding-top: 64px; }
.footer-inner { width: min(1240px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 42px; }
.footer-logo .logo-text { color: white; }
.footer-brand p { color: rgba(255,255,255,.68); max-width: 410px; margin: 20px 0; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 7px 10px; color: rgba(255,255,255,.75); font-weight: 800; font-size: .76rem; }
.footer-col h4 { color: white; font-family: var(--font-display); margin-bottom: 16px; font-weight: 900; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.68); margin-bottom: 10px; font-size: .92rem; }
.footer-col a:hover { color: white; }
.footer-contact a { color: white; }
.footer-cta { margin-top: 18px; color: #ffb28d !important; font-weight: 900; }
.footer-bottom { width: min(1240px, calc(100% - 48px)); margin: 54px auto 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .86rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; left: 18px; right: 18px; top: calc(var(--nav-h) + 12px); display: grid; gap: 8px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 16px; box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s var(--ease); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { justify-content: center; border-radius: 14px; }
  .hero-inner, .two-col, .ai-shell, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-callout, .floating-tag { position: static; margin-top: 14px; display: inline-block; transform: none; }
  .three-col, .four-col, .industry-grid, .values-grid, .solution-tabs { grid-template-columns: repeat(2, 1fr); }
  .service-matrix { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  :root { --nav-h: 72px; }
  .section { padding: 68px 0; }
  .section-inner, .hero-inner, .page-hero-inner, .footer-inner, .footer-bottom { width: min(100% - 32px, 1240px); }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .hero-title { font-size: clamp(2.75rem, 17vw, 4rem); }
  .page-title { font-size: clamp(2.45rem, 14vw, 4rem); }
  .section-title { font-size: clamp(2.05rem, 12vw, 3rem); }
  .actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .three-col, .four-col, .local-grid, .industry-grid, .values-grid, .solution-tabs, .stats-grid, .score-card, .panel-row, .quick-actions, .process-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .stat, .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step { border-bottom-color: rgba(255,255,255,.14); }
  .stat:last-child, .process-step:last-child { border-bottom: none; }
  .performance-panel { border-radius: 24px; padding: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-panel { padding: 32px 24px; }
  .matrix-card { grid-template-columns: 1fr; }
}
