/* ============================================================
   Abadi Guru — Agentic AI & Multilingual Website Creation
   Design system + components (no AI-slop: real hierarchy,
   brand slate-blue #6070A0 + gold #F0D030, image-led layout)
   ============================================================ */

:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --slate: #6070a0;
  --slate-deep: #2c3e66;
  --slate-darker: #1c2a4a;
  --slate-soft: #e8edf6;
  --slate-tint: #f3f6fb;
  --gold: #e0a915;
  --gold-bright: #f0d030;
  --gold-deep: #b9860c;
  --paper: #ffffff;
  --mist: #f6f8fc;
  --mist-2: #eef2f9;
  --muted: #5b6478;
  --line: #e2e8f2;
  --white-08: rgba(255, 255, 255, 0.08);
  --white-14: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 2px 8px rgba(20, 32, 60, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 32, 60, 0.12);
  --shadow-lg: 0 30px 70px rgba(20, 32, 60, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1200px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --grad-brand: linear-gradient(120deg, #2c3e66 0%, #6070a0 55%, #8a97c2 100%);
  --grad-gold: linear-gradient(120deg, #e0a915 0%, #f0d030 100%);
  --grad-hero: radial-gradient(120% 120% at 80% 0%, rgba(96, 112, 160, 0.30) 0%, rgba(15, 23, 42, 0) 55%),
    radial-gradient(90% 90% at 10% 100%, rgba(224, 169, 21, 0.16) 0%, rgba(15, 23, 42, 0) 60%),
    linear-gradient(180deg, #0f172a 0%, #16223f 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--mist { background: var(--mist); }
.section--slate { background: var(--slate-deep); color: #eaf0fb; }
.section--dark { background: var(--ink); color: #eaf0fb; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(224, 169, 21, 0.10);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold-bright); background: rgba(240, 208, 48, 0.12); }
.eyebrow--slate { color: var(--slate-deep); background: var(--slate-soft); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-bottom: 0; }
.section--slate .section-head h2, .section--dark .section-head h2 { color: #fff; }
.section--slate .section-head .lead, .section--dark .section-head .lead { color: #b9c5e0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-gold); color: #2a1f02; box-shadow: 0 10px 24px rgba(224, 169, 21, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(224, 169, 21, 0.38); }
.btn-secondary { background: transparent; color: var(--slate-deep); border-color: var(--slate); }
.btn-secondary:hover { background: var(--slate-soft); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--slate-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; border-color: var(--white-14); }
.btn-ghost:hover { background: var(--white-08); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo-image { height: 34px; width: auto; }
.nav-center { flex: 1; display: flex; justify-content: center; }
nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
nav ul li a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.98rem;
  color: var(--ink-soft); padding: 9px 16px; border-radius: 100px;
  transition: background 0.18s ease, color 0.18s ease;
}
nav ul li a:hover { background: var(--slate-tint); color: var(--slate-deep); }
nav ul li a.active { background: var(--slate-deep); color: #fff; }

/* language dropdown */
.dropdown-language-toggle { position: relative; }
.current-language {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  background: var(--slate-tint); color: var(--slate-deep); border: 1px solid var(--line);
  padding: 9px 14px; border-radius: 100px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.current-language .arrow { font-size: 0.7rem; transition: transform 0.2s ease; }
.dropdown-language-toggle.open .arrow { transform: rotate(180deg); }
.dropdown-content {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 8px; display: none; flex-direction: column; gap: 2px;
}
.dropdown-language-toggle.open .dropdown-content { display: flex; }
.dropdown-content button {
  text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  background: none; border: none; padding: 10px 12px; border-radius: 9px; cursor: pointer; color: var(--ink-soft);
}
.dropdown-content button:hover { background: var(--slate-tint); }
.dropdown-content button.active { color: var(--slate-deep); font-weight: 700; }
.dropdown-content button.active::after { content: "✓"; float: right; color: var(--gold-deep); }

.mobile-controls { display: none; align-items: center; gap: 10px; }
.mobile-toggle { display: none; cursor: pointer; color: var(--ink); padding: 6px; }
.mobile-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
  padding: clamp(72px, 11vw, 150px) 0 clamp(80px, 12vw, 150px);
}
.hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-bright); }
.hero .lead { color: #c9d4ec; font-size: clamp(1.08rem, 1.7vw, 1.3rem); max-width: 540px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #d7e0f3;
  background: var(--white-08); border: 1px solid var(--white-14); padding: 7px 14px; border-radius: 100px;
}
.hero-badge b { color: var(--gold-bright); font-family: var(--font-display); }

/* hero card: AI agent visual */
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--white-14); background: rgba(255,255,255,0.04);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-card .glass {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(10px);
  border: 1px solid var(--white-14); border-radius: 16px; padding: 16px 18px;
}
.hero-card .glass h4 { color: #fff; margin: 0 0 6px; font-size: 1rem; }
.hero-card .glass p { color: #c2cde6; margin: 0; font-size: 0.86rem; }

/* marquee of languages */
.lang-marquee {
  position: relative; z-index: 2; margin-top: 64px;
  border-top: 1px solid var(--white-14); border-bottom: 1px solid var(--white-14);
  padding: 18px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lang-marquee .track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; }
.lang-marquee span { font-family: var(--font-display); font-weight: 600; color: #aeb9d6; font-size: 0.98rem; }
.lang-marquee span b { color: var(--gold-bright); margin-right: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--slate-deep); line-height: 1; }
.stat .num .u { color: var(--gold); }
.stat .lbl { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.section--slate .stat .num, .section--dark .stat .num { color: #fff; }
.section--slate .stat .lbl, .section--dark .stat .lbl { color: #aeb9d6; }

/* ---------- Feature rows (alternating) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(48px, 7vw, 96px); }
.feature-row.reverse .feature-media { order: 2; }
.feature-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s ease; }
.feature-media:hover img { transform: scale(1.04); }
.feature-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(8px); border: 1px solid var(--white-14);
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
  padding: 8px 14px; border-radius: 100px;
}
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.feature-list li svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--gold-deep); margin-top: 2px; }
.feature-list li b { color: var(--slate-deep); }

/* ---------- Capability cards ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cap-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; position: relative; overflow: hidden;
}
.cap-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-gold); opacity: 0; transition: opacity 0.2s ease; }
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--slate-soft); }
.cap-card:hover::before { opacity: 1; }
.cap-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--slate-tint); color: var(--slate-deep); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
}
.cap-icon svg { width: 26px; height: 26px; }
.cap-card h3 { font-size: 1.15rem; }
.cap-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Multilingual showcase ---------- */
.multi-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.multi-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.multi-visual img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.lang-pills { display: flex; gap: 10px; margin: 0 0 24px; flex-wrap: wrap; }
.lang-pill {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px;
  background: var(--mist); border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer; transition: all 0.18s ease;
}
.lang-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--slate); }
.lang-pill.active { background: var(--slate-deep); color: #fff; border-color: var(--slate-deep); }
.lang-pill.active .dot { background: var(--gold-bright); }
.multi-demo {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.multi-demo .bar { background: var(--mist); padding: 12px 16px; display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.multi-demo .bar i { width: 11px; height: 11px; border-radius: 50%; background: #cfd8ea; display: inline-block; }
.multi-demo .body { padding: 22px; min-height: 150px; }
.multi-demo .body h4 { margin-top: 0; }
.multi-demo .body p { margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Service page cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card .media { overflow: hidden; }
.svc-card .media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .media img { transform: scale(1.05); }
.svc-card .pad { padding: 26px 24px 30px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: 0.96rem; margin-bottom: 18px; }
.svc-card .more { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--slate-deep); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 7px; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: var(--mist); border: 1px solid var(--line); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--gold); }
.step h4 { margin: 8px 0 8px; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Case studies ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card .media { position: relative; }
.case-card .media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.case-card .pad { padding: 26px 26px 30px; }
.case-card .tag { position: absolute; top: 16px; left: 16px; background: var(--grad-gold); color: #2a1f02; font-family: var(--font-display); font-weight: 700; font-size: 0.76rem; padding: 7px 13px; border-radius: 100px; }
.case-metrics { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.case-metrics div span { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--slate-deep); }
.case-metrics div small { color: var(--muted); font-size: 0.82rem; }

/* ---------- Testimonial ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--slate-tint); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--slate-deep); }
.quote .who b { display: block; font-family: var(--font-display); color: var(--ink); }
.quote .who small { color: var(--muted); }

/* ---------- CTA ---------- */
.cta-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-wrap .overlay { position: relative; z-index: 2; padding: clamp(40px, 6vw, 80px); background: linear-gradient(100deg, rgba(15,23,42,0.92) 0%, rgba(28,42,74,0.78) 55%, rgba(15,23,42,0.4) 100%); color: #fff; }
.cta-wrap h2 { color: #fff; max-width: 620px; }
.cta-wrap p { color: #c9d4ec; max-width: 560px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .info-item .ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: var(--slate-tint); color: var(--slate-deep); display: grid; place-items: center; }
.contact-info .info-item .ic svg { width: 22px; height: 22px; }
.contact-info .info-item b { display: block; font-family: var(--font-display); color: var(--ink); }
.contact-info .info-item span, .contact-info .info-item a { color: var(--muted); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 0.98rem; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--mist); color: var(--ink); transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 4px rgba(96,112,160,0.15); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #aeb9d6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-logo-image { height: 34px; margin-bottom: 16px; filter: none; }
footer p { color: #aeb9d6; font-size: 0.95rem; }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a, .footer-links li { color: #aeb9d6; font-size: 0.94rem; transition: color 0.18s ease; }
.footer-links a:hover { color: var(--gold-bright); }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a { width: 38px; height: 38px; border-radius: 10px; background: var(--white-08); display: grid; place-items: center; color: #cdd6ec; transition: background 0.18s ease, color 0.18s ease; }
.social-links a:hover { background: var(--gold); color: #2a1f02; }
.social-links svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--white-08); margin-top: 40px; padding-top: 22px; font-size: 0.86rem; color: #7e8aa6; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lang-marquee .track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Future of Work page ---------- */
.article-wrap { max-width: 860px; margin: 0 auto; }
.article-wrap p { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.article-wrap .lead { font-size: 1.2rem; }

.callout {
  margin: 28px 0 8px;
  padding: 22px 26px;
  background: var(--slate-soft);
  border-left: 4px solid var(--gold-bright);
  border-radius: var(--radius-sm);
}
.callout p { margin: 0; font-size: 1.12rem; color: var(--ink); }

.comparison-table { margin-top: 8px; overflow-x: auto; }
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 640px;
}
.comparison-table th, .comparison-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.comparison-table thead th {
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--mist); }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.comparison-table td { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }

.impact {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.impact--high { background: #fdecec; color: #c0392b; }
.impact--aug { background: #fff3da; color: #b9860c; }
.impact--res { background: #e6f6ec; color: #1e7a45; }

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--slate-soft); }
.path-media img { width: 100%; height: 100%; object-fit: cover; }
.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
  margin: 22px 24px 10px;
}
.path-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 24px 26px;
}

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

@media (max-width: 980px) {
  .hero-grid, .feature-row, .feature-row.reverse, .multi-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
  .cap-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .case-grid, .quote-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-center { display: none; }
  .mobile-controls { display: flex; }
  .desktop-language-toggle { display: none; }
  .mobile-toggle { display: inline-flex; }
  nav.open { display: block; }
  nav { display: none; position: absolute; top: 74px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px; box-shadow: var(--shadow-md); }
  nav ul { flex-direction: column; gap: 2px; }
  nav ul li a { display: block; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cap-grid, .steps, .stats, .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons .btn, .cta-buttons .btn { flex: 1; justify-content: center; }
  .container { padding: 0 18px; }
}
