/* ============================================================
   Ayant Software Pvt Ltd — Website Stylesheet
   Modern & Bold design system
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --ink: #0a0e27;
  --ink-2: #1e293b;
  --muted: #475569;
  --muted-2: #94a3b8;
  --border: #e2e8f0;
  --brand: #4f46e5;           /* indigo */
  --brand-2: #06b6d4;          /* cyan */
  --brand-3: #f59e0b;          /* amber accent */
  --success: #10b981;
  --danger: #ef4444;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(6,182,212,0.08) 100%);
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow: 0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.06);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,.1), 0 8px 10px -6px rgba(15,23,42,.08);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,.25);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-2); }
h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--muted); }

/* ---------- Utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--ink); color: #e2e8f0; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #cbd5e1; }
.section--surface { background: var(--surface); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--gradient-soft);
  border-radius: 999px;
}
.section--dark .eyebrow { color: #67e8f9; background: rgba(6,182,212,.12); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { font-size: 1.125rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(79,70,229,.5);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(79,70,229,.55);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.2); }
.section--dark .btn--ghost:hover { border-color: #fff; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 14px -4px rgba(79,70,229,.5);
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer .logo-img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Text-based footer wordmark (used instead of logo image in footer) */
.logo.logo--text {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}
.logo--text .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
}
.logo--text .brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Image icons (replacing inline SVGs) ---------- */
.icon-img {
  object-fit: contain;
  display: block;
  transition: filter .3s ease;
}
.hero-card .icon img.icon-img { width: 22px; height: 22px; }
.card .ico img.icon-img { width: 30px; height: 30px; }
.feature .ico img.icon-img { width: 24px; height: 24px; }
.value-card .ico img.icon-img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.info-item .ico img.icon-img { width: 24px; height: 24px; }
.service-detail .ico-lg img.icon-img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.service-detail__media .big-ico img.icon-img { width: 72px; height: 72px; }
.card:hover .ico img.icon-img { filter: brightness(0) invert(1); }

/* ---------- Photo imagery (large decorative slots) ---------- */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79,70,229,.08) 0%, rgba(6,182,212,.18) 100%);
  pointer-events: none;
}
.hero-photo .badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-photo .badge strong { color: var(--ink); font-size: .95rem; }
.hero-photo .badge small { color: var(--muted); font-size: .8rem; display: block; }
.hero-photo .badge .badge-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  display: grid; place-items: center;
}
.hero-photo .badge .badge-ico svg { width: 20px; height: 20px; }

/* Photo inside service-detail__media */
.service-detail__media.photo-media {
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.service-detail__media.photo-media::before { display: none; }
.service-detail__media.photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

/* About story photo (square-ish) */
.story-photo {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Google Maps embed container */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 7;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Google Maps consent placeholder (shown until user loads the map) */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  padding: 32px;
  text-align: center;
}
.map-placeholder__ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.map-placeholder__ico svg { width: 26px; height: 26px; }
.map-placeholder h3 { margin: 0 0 8px; font-size: 1.15rem; }
.map-placeholder p { margin: 0 0 20px; color: var(--muted); font-size: .95rem; max-width: 420px; }

/* ---------- Previously inline styles (moved here for maintainability) ---------- */
/* Skip-to-main link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #0a0e27;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 16px; }

/* Legal pages layout (privacy / terms / cookies) */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-page h1 { margin-bottom: 12px; }
.legal-page .meta {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.4rem; }
.legal-page h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1.1rem; }
.legal-page p, .legal-page ul { color: var(--ink-2); line-height: 1.7; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page ul li { margin-bottom: 8px; color: var(--ink-2); }
.legal-page a { color: var(--brand); }
.legal-page .note {
  background: var(--gradient-soft);
  border-left: 3px solid var(--brand);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
  color: var(--ink-2);
}

/* 404 page */
.err-wrap {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(79,70,229,.08), transparent 60%), #fff;
}
.err-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.err-wrap h1 { margin-bottom: 16px; }
.err-wrap p { max-width: 520px; margin: 0 auto 32px; color: var(--muted); font-size: 1.1rem; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  z-index: 100;
  animation: cookieIn .4s cubic-bezier(.22,1,.36,1);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie-banner strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: .95rem; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.cookie-banner a { color: var(--brand); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 18px; font-size: .9rem; }
@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-banner__content { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: flex-end; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  position: relative;
}
.nav-links a:hover { color: var(--brand); background: var(--gradient-soft); }
.nav-links a.active { color: var(--brand); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 1px;
  transition: transform .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(79,70,229,.08), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(6,182,212,.08), transparent 50%),
              #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
}
.hero h1 { margin-bottom: 24px; }
.hero .sub { font-size: 1.2rem; margin-bottom: 32px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: .9rem;
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  background: var(--gradient);
  margin-left: -8px;
}
.hero-trust .avatars span:first-child { margin-left: 0; background: linear-gradient(135deg,#f59e0b,#ef4444); }
.hero-trust .avatars span:nth-child(2) { background: linear-gradient(135deg,#10b981,#06b6d4); }
.hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg,#8b5cf6,#ec4899); }

/* Legacy hero-visual / hero-card styles left for back-compat */
.hero-visual { position: relative; max-width: 480px; margin-left: auto; }
.hero-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 20px; border: 1px solid var(--border); }
.hero-card h4 { margin: 0 0 6px; font-size: 1rem; }
.hero-card p { margin: 0; font-size: .85rem; }
.hero-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gradient-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 10px; }
.hero-card .icon svg { width: 20px; height: 20px; }

/* ---------- Hero right-side panel (new, clean layout) ---------- */
.hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 480px;
  margin-left: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--gradient);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero-panel__head { margin-bottom: 18px; }
.hero-panel__head h3 { margin: 6px 0 0; font-size: 1.15rem; font-weight: 700; }

.hero-stack { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.hero-stack__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius);
  transition: background .25s ease;
}
.hero-stack__item:hover { background: var(--gradient-soft); }
.hero-stack__item .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gradient-soft);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-stack__item .icon svg { width: 22px; height: 22px; }
.hero-stack__item h4 { margin: 0 0 2px; font-size: .95rem; line-height: 1.3; }
.hero-stack__item p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.4; }

.hero-panel__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius);
}
.hero-panel__badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-panel__badge strong { display: block; font-size: .95rem; }
.hero-panel__badge span { font-size: .78rem; opacity: .9; }

/* ---------- Logo strip / trust ---------- */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-strip .label {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust-strip .logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.trust-strip .logos span {
  text-align: center;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  opacity: .85;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 24px; }
.stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .lbl { color: var(--muted); margin-top: 6px; font-size: .95rem; }

/* ---------- Service cards ---------- */
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: all .3s ease;
}
.card .ico svg { width: 28px; height: 28px; }
.card:hover .ico { background: var(--gradient); color: #fff; transform: scale(1.05); }
.card h3 { margin-bottom: 12px; }
.card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.card ul li {
  padding: 6px 0;
  color: var(--muted);
  font-size: .95rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.card ul li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}
.card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Process / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step { text-align: left; }
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -10px rgba(79,70,229,.6);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: .95rem; margin: 0; }

/* ---------- Features ---------- */
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.feature:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.feature .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gradient-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 8px; }
.feature p { margin: 0; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.quote .stars { color: var(--brand-3); margin-bottom: 10px; letter-spacing: 2px; }
.quote blockquote { margin: 0 0 20px; color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .95rem;
}
.quote .name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.quote .role { font-size: .85rem; color: var(--muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient);
  color: #fff;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.15), transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.88); margin-bottom: 32px; font-size: 1.1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn--primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,.3);
}
.cta-banner .btn--primary:hover { color: var(--brand); }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cbd5e1;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: #94a3b8; margin: 16px 0 24px; font-size: .95rem; }
.footer-col h5 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 6px 0; }
.footer-col a { color: #cbd5e1; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  display: grid; place-items: center;
  color: #cbd5e1;
}
.socials a:hover { background: var(--brand); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: #94a3b8;
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 80px 0 64px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(79,70,229,.08), transparent 60%),
              #ffffff;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: 1.2rem; max-width: 680px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Service detail (services.html) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) .service-detail__media { order: -1; }
.service-detail h2 { margin-bottom: 20px; }
.service-detail .ico-lg {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--gradient);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-detail .ico-lg svg { width: 32px; height: 32px; }
.service-detail ul { padding: 0; list-style: none; margin: 24px 0; }
.service-detail ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  display: flex; gap: 12px;
  color: var(--ink-2);
}
.service-detail ul li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}
.service-detail__media {
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-detail__media::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.service-detail__media .illo {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid; place-items: center;
}
.big-ico {
  width: 140px; height: 140px;
  border-radius: 32px;
  background: #fff;
  color: var(--brand);
  display: grid; place-items: center;
  box-shadow: var(--shadow-xl);
}
.big-ico svg { width: 64px; height: 64px; }

/* ---------- About page ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .ico {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center; margin-bottom: 16px;
}
.value-card .ico svg { width: 24px; height: 24px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 16px;
  color: #fff;
  display: grid; place-items: center;
  font-size: 2rem;
  font-weight: 700;
}
.team-card h4 { margin-bottom: 4px; }
.team-card .title { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }

/* ---------- Careers page ---------- */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.perk {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: all .25s ease;
}
.perk:hover { border-color: var(--brand); transform: translateY(-3px); }
.perk .emoji { font-size: 1.75rem; margin-bottom: 10px; }

.jobs { display: grid; gap: 16px; }
.job {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s ease;
}
.job:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.job h4 { margin: 0 0 4px; }
.job .meta { color: var(--muted); font-size: .9rem; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: .8rem;
  background: var(--gradient-soft);
  color: var(--brand);
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form {
  display: grid;
  gap: 16px;
}
.form label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  display: block;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: all .2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}
.form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form button { justify-self: start; }

.contact-info { }
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.info-item .ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--brand);
  display: grid; place-items: center;
}
.info-item .ico svg { width: 22px; height: 22px; }
.info-item h4 { margin: 0 0 4px; font-size: 1rem; }
.info-item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; margin: 0; color: var(--muted); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .hero-inner, .about-hero, .contact-grid, .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
  .service-cards, .testimonials, .feature-list, .steps, .values, .perk-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip .logos { grid-template-columns: repeat(3, 1fr); }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-links.open a { width: 100%; padding: 12px 16px; }
  .job { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .service-cards, .testimonials, .feature-list, .steps, .values, .perk-grid, .team-grid, .footer-grid, .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip .logos { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 48px 24px; }
  .hero { padding: 48px 0 72px; }
  /* Stack hero cards vertically on narrow screens — more readable than overlapping floats */
  .hero-visual {
    aspect-ratio: auto;
    display: grid;
    gap: 12px;
    max-width: 100%;
  }
  .hero-card {
    position: static;
    width: 100%;
    animation: none;
  }
}
