*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: #1a1a2e; background: #fff; }
a { text-decoration: none; color: inherit; cursor: pointer; }

:root {
  --navy:  #050e1f;
  --navy2: #0a1830;
  --gold:  #00b4d8;
  --gold2: #38d0f0;
  --light: #eaf4f8;
  --text:  #333;
  --muted: #666;
  --white: #fff;
  --radius: 10px;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section--dark  { background: var(--navy); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--light { background: var(--light); }
.tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,27,62,.3); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.arrow::after { content: ' →'; }

/* ── TOPBAR ── */
.topbar { background: var(--navy2); color: rgba(255,255,255,.75); font-size: 0.82rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--gold); }
.topbar-items { display: flex; gap: 24px; }

/* ── NAV ── */
.nav { background: var(--white); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-size: 1.25rem; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-tag  { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 600; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: var(--text); transition: color 0.2s; padding-bottom: 2px; border-bottom: 2px solid transparent; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--navy); border-bottom-color: var(--gold); }

/* ════════════════════════════════
   HOME PAGE
════════════════════════════════ */

/* Hero */
.hero { background: var(--navy); min-height: 92vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,.08) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(255,255,255,.03) 0%, transparent 50%); }
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; padding: 80px 0; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Segment card */
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 32px; backdrop-filter: blur(12px); }
.hero-card-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px; }
.segment-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; padding: 15px 18px; border-radius: 8px; margin-bottom: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85); font-size: 0.92rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; text-decoration: none; }
.segment-btn:hover { background: rgba(0,180,216,.15); border-color: var(--gold); color: var(--white); transform: translateX(3px); }
.segment-btn:hover .seg-arrow { opacity: 1; color: var(--gold); }
.seg-arrow { font-size: 0.9rem; opacity: 0.3; transition: opacity 0.2s; }
.hero-card-note { font-size: 0.78rem; color: rgba(255,255,255,.35); margin-top: 16px; text-align: center; }

/* Services grid */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 32px 26px; border: 1px solid #e8eaf0; transition: all 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.25s; }
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card.featured-service { border-color: var(--gold); background: linear-gradient(135deg, #fffbf0 0%, #fff 100%); }
.service-card.featured-service::before { transform: scaleY(1); }
.service-featured-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.service-icon { width: 46px; height: 46px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.service-card.featured-service .service-icon { background: rgba(0,180,216,.15); }
.service-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.service-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.service-link:hover { color: var(--gold); }

/* About strip */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-stack { position: relative; height: 440px; }
.about-img-main { width: 78%; height: 360px; background: #162447; border-radius: 16px; position: absolute; top: 0; left: 0; overflow: hidden; display: flex; flex-direction: column; }
.dash-topbar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.35); margin-left: auto; }
.dash-body { flex: 1; padding: 18px 20px 14px; display: flex; flex-direction: column; gap: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.dash-kpi { background: rgba(255,255,255,.05); border-radius: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.dash-kpi-icon { font-size: 1.1rem; line-height: 1; }
.dash-kpi-lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,.4); line-height: 1.3; }
.dash-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-tag { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); }
.dash-tag.active { background: rgba(0,180,216,.2); border-color: rgba(0,180,216,.5); color: #00b4d8; }
.dash-chart { flex: 1; position: relative; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 100%; padding-bottom: 20px; }
.dash-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.dash-bar { width: 100%; border-radius: 4px 4px 0 0; transition: height .3s; }
.dash-bar-lbl { font-size: 0.58rem; color: rgba(255,255,255,.25); text-align: center; }
.dash-trend { position: absolute; top: 0; left: 0; width: 100%; height: calc(100% - 20px); pointer-events: none; }
.about-badge { position: absolute; bottom: 0; right: 0; background: var(--gold); border-radius: 12px; padding: 22px 26px; text-align: center; }
.about-badge-num { font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.about-badge-text { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--navy); letter-spacing: 0.05em; margin-top: 4px; }
.check-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; }
.check-list li::before { content: '✓'; min-width: 22px; height: 22px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 900; margin-top: 1px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.process-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: all 0.2s; }
.process-card:hover { background: rgba(255,255,255,.09); border-color: var(--gold); }
.process-num { font-size: 2.8rem; font-weight: 900; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 10px; }
.process-card h4 { color: var(--white); margin-bottom: 8px; }
.process-card p  { font-size: 0.86rem; color: rgba(255,255,255,.58); line-height: 1.65; }

/* Testimonial Carousel */
.testimonial-wrap { max-width: 820px; margin: 0 auto; text-align: center; padding: 64px 0; }
.testimonial-slide { display: none; animation: fadeIn 0.6s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--white); line-height: 1.8; margin-bottom: 32px; font-style: italic; }
.testimonial-quote::before { content: '\201C'; font-size: 5rem; color: var(--gold); line-height: 0.5; vertical-align: -2.5rem; margin-right: 4px; }
.testimonial-attr { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.testimonial-org  { font-size: 0.8rem; color: rgba(255,255,255,.5); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.testimonial-dot.active { background: var(--gold); }

/* Engagement */
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.engagement-card { border-radius: var(--radius); padding: 36px 30px; border: 1px solid #e8eaf0; background: var(--white); position: relative; transition: all 0.2s; }
.engagement-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 20px 60px rgba(13,27,62,.25); }
.engagement-card.featured p { color: rgba(255,255,255,.7); }
.engagement-card:hover:not(.featured) { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
.engagement-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.engagement-type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.engagement-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.engagement-card.featured h3 { color: var(--white); }
.engagement-card p { font-size: 0.88rem; }
.engagement-features { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 11px; }
.engagement-features li { font-size: 0.86rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.engagement-card.featured .engagement-features li { color: rgba(255,255,255,.7); }
.engagement-features li::before { content: '→'; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.engagement-highlight { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 6px; margin-top: 16px; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #0089a8 100%); padding: 72px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--navy); max-width: 580px; }
.cta-banner p  { color: rgba(13,27,62,.65); margin-top: 8px; }

/* ════════════════════════════════
   CONTACT FORM
════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { min-width: 40px; height: 40px; background: var(--navy); color: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-detail-text .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.contact-detail-text .value { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 15px; border: 1.5px solid #dde1ea; border-radius: 6px; font-size: 0.95rem; color: var(--navy); background: var(--white); transition: border-color 0.2s; font-family: inherit; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,27,62,.08); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.page-hero { background: var(--navy); padding: 72px 0; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 580px; margin-top: 16px; font-size: 1.1rem; }
.page-hero-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.page-hero-breadcrumb span { color: var(--gold); }

.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.founder-card { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid #e8eaf0; display: flex; gap: 24px; align-items: flex-start; transition: all 0.2s; }
.founder-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.founder-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--navy); flex-shrink: 0; overflow: hidden; border: 3px solid var(--gold); }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.founder-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; margin-top: 3px; }
.founder-bio { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-top: 12px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--light); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */
.services-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.service-page-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; border: 1px solid #e8eaf0; transition: all 0.2s; }
.service-page-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-page-card.ai-featured { background: var(--navy); border-color: var(--navy); grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-page-card.ai-featured h3 { color: var(--white); font-size: 1.5rem; }
.service-page-card.ai-featured p { color: rgba(255,255,255,.7); }
.service-page-icon { font-size: 2rem; margin-bottom: 16px; }
.service-page-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-page-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-tag { display: inline-block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.service-tag.core { background: var(--light); color: var(--muted); }
.service-tag.featured { background: var(--gold); color: var(--navy); }
.ai-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.ai-bullets li { font-size: 0.88rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 10px; }
.ai-bullets li::before { content: '→'; color: var(--gold); font-weight: 900; }

/* ════════════════════════════════
   APPROACH PAGE
════════════════════════════════ */
.approach-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.approach-step { display: grid; grid-template-columns: 80px 1fr; gap: 0; position: relative; }
.approach-step:not(:last-child)::after { content: ''; position: absolute; left: 39px; top: 80px; width: 2px; height: calc(100% - 40px); background: linear-gradient(to bottom, var(--gold), rgba(0,180,216,.1)); }
.step-num-col { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.step-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.step-body { padding: 0 0 52px 32px; }
.step-body h3 { color: var(--navy); margin-bottom: 8px; }
.step-body p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; max-width: 640px; }
.step-cta { margin-top: 16px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub  { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 14px; }
.footer-brand-desc { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 280px; }
.footer-col-title { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-links li span { font-size: 0.86rem; color: rgba(255,255,255,.5); transition: color 0.2s; cursor: pointer; }
.footer-links li a:hover, .footer-links li span:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,.3); }
.mockup-banner span { color: var(--gold); }

.ai-infra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

@media (max-width: 960px) {
  .ai-infra-grid { grid-template-columns: 1fr !important; gap: 32px; }
  /* Layout stacking */
  .hero-inner, .about-grid, .contact-grid, .founders-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-image-stack { height: 280px; }
  .about-img-main { width: 100%; height: 240px; position: relative; }
  .about-badge { position: absolute; bottom: -20px; right: 16px; padding: 16px 20px; }
  .about-badge-num { font-size: 2rem; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .engagement-grid, .services-page-grid, .values-grid { grid-template-columns: 1fr; }
  .service-page-card.ai-featured { grid-template-columns: 1fr !important; }

  /* Home page AI card — override inline styles */
  .service-card.featured-service { grid-column: span 1 !important; display: block !important; }
  .service-card.featured-service > div:last-child { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; margin-top: 24px; }

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

  /* Nav */
  .nav-links, .nav-cta { display: none; }

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

  /* Section spacing */
  .section { padding: 56px 0; }
  .page-hero { padding: 48px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 0 48px; gap: 32px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-banner-inner .btn { width: 100%; justify-content: center; }

  /* Topbar */
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-items { justify-content: center; }

  /* Process */
  .approach-step { grid-template-columns: 48px 1fr; }
  .approach-step:not(:last-child)::after { left: 23px; }

  /* Engagement */
  .engagement-card.featured { margin-top: 16px; }

  /* Dashboard */
  .about-img-main { border-radius: 12px; }
  .dash-kpis { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; align-items: flex-start; }
  .dash-tags { display: none; }
  .trustbar .container { flex-direction: column; gap: 12px; }
  .trustbar-clients { gap: 16px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   ADDITIONS — 2026-08-18
   Brand mark, mobile navigation, accessibility baseline,
   SVG icon system, FAQ, legal pages, 404.
   ══════════════════════════════════════════════════════════════ */

/* ── Accessibility baseline ── */
.skip-link {
  position: fixed; left: 8px; top: -70px; z-index: 9999;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700;
  font-size: 0.9rem; transition: top .15s ease;
}
.skip-link:focus { top: 0; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.footer :where(a, button):focus-visible,
.section--dark :where(a, button):focus-visible { outline-color: var(--gold2); }

.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;
}

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

/* ── Brand mark in the navigation ── */
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; }
.nav-logo-mark { width: 40px; height: 40px; flex-shrink: 0; overflow: visible; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-name { font-size: 1.16rem; font-weight: 800; letter-spacing: .02em; color: var(--navy); }
.nav-logo-tag  { font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-top: 3px; }
.footer .nav-logo, .footer .nav-logo-name { color: #fff; }
.footer .nav-logo-tag { color: rgba(255,255,255,.55); }
@media (max-width: 560px) {
  .nav-logo-mark { width: 34px; height: 34px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-tag  { font-size: .5rem; letter-spacing: .15em; }
}

/* ── SVG icon system (replaces emoji) ── */
.icon {
  width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em;
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.service-icon .icon, .service-page-icon .icon,
.value-icon .icon, .dash-kpi-icon .icon { width: 1em; height: 1em; }
.topbar .icon, .footer-contact-item .icon {
  width: 15px; height: 15px; margin-right: 7px; stroke-width: 1.9; opacity: .85;
}
.feature-icon { color: var(--gold); }

/* ── Mobile navigation ── */
.nav-toggle {
  display: none; background: none; border: 1px solid #dfe5ee; border-radius: 8px;
  width: 44px; height: 44px; cursor: pointer; color: var(--navy);
  align-items: center; justify-content: center; padding: 0;
}
.nav-toggle .icon { width: 22px; height: 22px; stroke-width: 2; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

#mobile-nav {
  display: none; border-top: 1px solid #eef1f6; background: #fff;
  padding: 10px 0 18px;
}
#mobile-nav.open { display: block; }
#mobile-nav .container { display: flex; flex-direction: column; gap: 2px; }
#mobile-nav a {
  padding: 13px 4px; font-size: 1rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid #f2f4f8;
}
#mobile-nav a.sub { padding-left: 18px; font-weight: 500; font-size: .93rem; color: var(--text); }
#mobile-nav .mnav-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); padding: 18px 4px 6px;
}
#mobile-nav .btn { margin-top: 18px; justify-content: center; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 961px) {
  #mobile-nav { display: none !important; }
}

/* ── Desktop dropdown for the sector pages ── */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item > .nav-link { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > .nav-link .icon { width: 13px; height: 13px; stroke-width: 2.4; opacity: .6; }
.nav-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 260px; background: #fff; border: 1px solid #e9edf4; border-radius: 12px;
  box-shadow: 0 18px 40px rgba(5,14,31,.13); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .16s ease, transform .16s ease; z-index: 60;
}
.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-menu a { display: flex; gap: 11px; align-items: flex-start; padding: 11px 12px; border-radius: 8px; transition: background .15s; }
.nav-menu a:hover { background: var(--light); }
.nav-menu .icon { width: 17px; height: 17px; color: var(--gold); margin-top: 2px; }
.nav-menu-title { font-size: .9rem; font-weight: 700; color: var(--navy); display: block; }
.nav-menu-desc  { font-size: .76rem; color: var(--muted); display: block; margin-top: 2px; line-height: 1.45; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e6eaf1; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item .faq-answer { padding: 0 44px 26px 0; }
.faq-item .faq-answer p { margin-bottom: 12px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ── Proof strip (replaces the decorative dashboard) ── */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.proof-cell { background: var(--navy2); padding: 26px 22px; }
.proof-num { font-size: 1.9rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.proof-lbl { font-size: .82rem; color: rgba(255,255,255,.72); margin-top: 8px; line-height: 1.5; }
.proof-note { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 20px; text-align: center; }

/* ── Legal / prose pages ── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 42px 0 14px; color: var(--navy); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: #0a7fa0; text-decoration: underline; }
.prose .updated { font-size: .85rem; color: var(--muted); margin-bottom: 34px; }

/* ── Social links ── */
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; display: inline-flex;
  align-items: center; justify-content: center; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8); transition: background .18s, color .18s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social .icon { width: 17px; height: 17px; }

/* ── Footer legal row ── */
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.55); font-size: .8rem; }
.footer-legal a:hover { color: var(--gold); }

/* ── 404 ── */
.err-wrap { text-align: center; max-width: 620px; margin: 0 auto; padding: 90px 0; }
.err-code { font-size: 4.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.err-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }


/* ── Corrections, 2026-08-18 visual review ── */

/* The sector trigger is a <button> for keyboard and screen-reader support;
   strip the user-agent chrome so it matches the surrounding links. */
.nav-item > button.nav-link {
  background: none; border: 0; padding: 0 0 2px; margin: 0;
  font: inherit; font-size: .9rem; font-weight: 600; color: var(--text);
  cursor: pointer; border-bottom: 2px solid transparent;
}
.nav-item > button.nav-link:hover { color: var(--navy); }
.nav-item > button.nav-link.active { color: var(--navy); border-bottom-color: var(--gold); }
.nav-item.force-open .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* The proof panel sizes itself; the old stack was a fixed 440px box with an
   absolutely positioned 360px child, which clipped the bottom two cells. */
.about-image-stack.proof-stack { height: auto; }
.proof-stack .about-img-main {
  position: static; width: 100%; height: auto; overflow: visible;
  padding: 30px 28px;
}
@media (max-width: 960px) {
  .proof-stack .about-img-main { width: 100%; height: auto; }
}
@media (max-width: 600px) {
  .about-image-stack.proof-stack { display: block; }
  .proof-grid { grid-template-columns: 1fr; }
}

/* The mobile panel sits inside .nav, so it inherits the 72px fixed-height,
   centred flex rules meant for the desktop bar. Reset them. */
#mobile-nav .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: auto;
  gap: 2px;
}
#mobile-nav { max-height: calc(100vh - 72px); overflow-y: auto; }
#mobile-nav .btn { width: 100%; }

/* Align the FAQ list with the section heading rather than centring it. */
.faq-list { margin: 0; }

/* ══════════════════════════════════════════════════════════════
   Colour contrast — WCAG 2.1 AA
   The brand cyan (#00b4d8) reaches only 2.46:1 on white, so text
   set in it fails AA. These rules introduce a darker text-safe
   variant for type and keep the original cyan for fills, rules,
   icons, and buttons where it is decorative or sits on navy.
   ══════════════════════════════════════════════════════════════ */
:root { --gold-text: #00758c; }

.tag,
.engagement-type,
.founder-title,
.err-code { color: var(--gold-text); }

.section--dark .tag,
.section--dark .engagement-type,
.footer .tag { color: var(--gold2); }

.proof-note { color: #99a1b2; }
.process-num { color: #146e8f; }
.footer-copyright,
.footer-bottom span { color: #7c8598; }
.footer-legal a { color: #9aa3b4; }
.page-hero-breadcrumb { color: #858b97; }
.page-hero-breadcrumb span { color: var(--gold2); }

/* Cyan type sitting on navy surfaces: use the lighter brand cyan, which
   clears AA against #050e1f, rather than the darker text variant. */
.page-hero .tag,
.engagement-card.featured .engagement-type,
.service-card.featured .service-tag,
.cta-banner .tag { color: var(--gold2); }

/* The step numbers were cyan at 30% opacity, which blended to 1.32:1. */
.process-num { color: #2b8bab; opacity: 1; }
