/* =========================================================
   Call Ahmed — AI Visibility™ for Local Businesses
   styles.css
   ========================================================= */

:root {
  /* Dark surfaces */
  --bg-dark: #070B16;
  --bg-dark-2: #0A1020;
  --navy-card: #111A2E;
  --navy-card-2: #0D1426;
  --navy-line: rgba(255, 255, 255, 0.08);

  /* Blues */
  --blue: #3B82F6;
  --blue-bright: #6AA8FF;
  --blue-deep: #2563EB;
  --grad-blue: linear-gradient(120deg, #7CB0FF 0%, #3B82F6 55%, #2563EB 100%);
  --grad-btn: linear-gradient(120deg, #4D8DFF 0%, #2F6BE6 100%);

  /* Light surfaces */
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F4F7FC;
  --ink: #0C1424;
  --ink-2: #1E293B;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --border-light: #E6ECF4;

  /* Effects */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.07);
  --shadow-card: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.45);

  --maxw: 1180px;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

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

.grad {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 10px 26px rgba(45, 105, 230, 0.40);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(45, 105, 230, 0.52); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); transform: translateY(-2px); }

/* On light sections the ghost button flips */
.section-light .btn-ghost,
.why-ai .btn-ghost { color: var(--ink); border-color: var(--border-light); background: #fff; }

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 2px; border-radius: 6px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #2a3550, #0e1730);
  border: 1px solid rgba(255,255,255,0.12);
}
.logo-text { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.04em; font-size: 1.05rem; }
.logo-light { color: #cdd7ea; font-weight: 600; }
.logo-bold { color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.main-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 26px; }
.main-nav a { color: #c4cfe2; font-size: 0.92rem; font-weight: 500; transition: color .15s ease; }
.main-nav a:hover { color: #fff; }
.header-cta { font-size: 0.9rem; padding: 11px 18px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 6px;
  background: var(--bg-dark-2); border-bottom: 1px solid var(--navy-line);
  padding: 14px 24px 22px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #c4cfe2; padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--navy-line); }
.mobile-nav a.btn { justify-content: center; border-bottom: 0; margin-top: 8px; color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 0 76px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 62% 8%, rgba(59, 130, 246, 0.30), transparent 60%),
    radial-gradient(700px 500px at 100% 30%, rgba(37, 99, 235, 0.22), transparent 55%),
    linear-gradient(180deg, #0a1224 0%, #070B16 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}
.hero-copy { align-self: center; max-width: 560px; }
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.1rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-lead { color: #c9d4e8; font-size: 1.02rem; margin-bottom: 14px; max-width: 430px; }
.hero-sub { color: #aebbd2; font-size: 1.02rem; margin-bottom: 30px; max-width: 430px; }
.hero-sub .hl { color: var(--blue-bright); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.trust-row { border-top: 1px solid var(--navy-line); padding-top: 22px; }
.trust-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; color: #7e8caa; margin-bottom: 14px; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 22px 28px; align-items: center; }
.trust-logos li { color: #cdd7ea; font-family: var(--font-display); font-weight: 700; font-size: 1rem; opacity: 0.82; }

/* Hero photo placeholder */
.hero-photo { align-self: stretch; min-height: 420px; }
.photo-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(59,130,246,0.18), transparent 55%),
    linear-gradient(160deg, #16203a 0%, #0b1428 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: #4a5f8c;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--shadow-dark);
}
.photo-tag {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6c7da3; font-weight: 600;
}

/* AI question card */
.ai-card {
  align-self: stretch;
  background: linear-gradient(180deg, rgba(20,29,51,0.94), rgba(12,19,38,0.94));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-dark);
  display: flex; flex-direction: column; gap: 12px;
}
.ai-card-title { color: #aebbd2; font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.ai-q {
  display: flex; gap: 12px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 13px 14px;
}
.ai-q p { color: #e4ebf7; font-size: 0.92rem; line-height: 1.4; }
.ai-ico { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; }
.ico-green { background: linear-gradient(135deg, #12a37e, #0c7d63); }
.ico-blue { background: linear-gradient(135deg, #4d8dff, #2f6be6); }
.ico-orange { background: linear-gradient(135deg, #ff8a3d, #f2631f); }
.ai-card-note { color: #93a2c0; font-size: 0.85rem; margin-top: 4px; }
.ai-card-cta {
  margin-top: auto;
  background: var(--grad-btn);
  border-radius: 14px; padding: 16px;
  text-align: center; font-family: var(--font-display);
  font-weight: 700; color: #fff; font-size: 1.02rem;
  box-shadow: 0 12px 26px rgba(45,105,230,0.4);
}

/* =========================================================
   SECTION SHELL (light)
   ========================================================= */
.section-light { background: var(--white); padding: 76px 0; }
.center-title { text-align: center; font-size: clamp(1.7rem, 3.2vw, 2.2rem); color: var(--ink); margin-bottom: 46px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; color: var(--blue-deep); }

/* =========================================================
   WHY AI CHANGES EVERYTHING
   ========================================================= */
.why-grid { display: grid; grid-template-columns: 0.85fr 2.15fr; gap: 44px; align-items: center; }
.why-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.why-intro p { color: var(--muted); font-size: 1.02rem; }

.flow { display: flex; align-items: center; gap: 10px; }
.flow-card {
  flex: 1; background: var(--surface);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 20px 16px; text-align: center;
  box-shadow: var(--shadow-soft);
}
.flow-top, .flow-bot { display: flex; flex-direction: column; gap: 2px; }
.flow-card strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.flow-card span { color: var(--muted); font-size: 0.86rem; }
.flow-down { display: block; color: var(--blue); font-size: 1.1rem; margin: 8px 0; font-weight: 700; }
.flow-bot strong { color: var(--blue-deep); }
.flow-arrow { color: var(--muted-2); font-size: 1.4rem; font-weight: 700; flex: 0 0 auto; }

/* =========================================================
   QUESTION BANNER
   ========================================================= */
.banner-wrap { padding: 0 0 76px; }
.question-banner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 30px;
  background:
    radial-gradient(600px 300px at 8% 50%, rgba(59,130,246,0.28), transparent 60%),
    linear-gradient(120deg, #0c1730 0%, #0a1124 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: #fff;
}
.q-circle {
  flex: 0 0 auto; width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: #fff;
  background: radial-gradient(circle at 35% 30%, #3b82f6, #163a8a);
  box-shadow: 0 0 0 10px rgba(59,130,246,0.12), 0 16px 40px rgba(59,130,246,0.4);
}
.q-eyebrow { color: #9fb0d0; font-size: 0.92rem; margin-bottom: 8px; }
.q-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.85rem); line-height: 1.3; }

/* =========================================================
   WHAT IS AI VISIBILITY
   ========================================================= */
.visibility { background: var(--surface-alt); }
.vis-grid { display: grid; grid-template-columns: 0.95fr 1.5fr 0.95fr; gap: 30px; align-items: center; }
.vis-intro h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 18px; }
.vis-intro p { color: var(--muted); margin-bottom: 14px; }
.vis-bold { color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }

/* Diagram */
.vis-diagram {
  position: relative; aspect-ratio: 1 / 1; min-height: 420px;
  display: grid; place-items: center;
}
.vis-diagram::before {
  content: ""; position: absolute; width: 62%; height: 62%; border-radius: 50%;
  border: 1.5px dashed #c5d3ea; top: 19%; left: 19%;
}
.vis-core {
  position: relative; z-index: 2;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.vis-core span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); }
.vis-core span:last-child { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--blue-deep); }

.pillar {
  position: absolute; width: 150px;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 12px 13px;
  box-shadow: var(--shadow-soft);
}
.pillar-ico {
  width: 30px; height: 30px; border-radius: 8px; color: var(--blue-deep);
  background: #eaf1ff; display: grid; place-items: center; margin-bottom: 7px;
}
.pillar h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 4px; }
.pillar p { font-size: 0.76rem; color: var(--muted); line-height: 1.35; }

.pillar.p1 { top: 28%; left: -6%; }
.pillar.p2 { top: 1%;  left: 33%; }
.pillar.p3 { top: 22%; right: -6%; }
.pillar.p4 { bottom: 22%; right: -6%; }
.pillar.p5 { bottom: -2%; left: 33%; }
.pillar.p6 { bottom: 22%; left: -6%; }

/* Result card */
.result-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.result-card h3 { font-size: 1.4rem; color: var(--blue-deep); margin-bottom: 14px; }
.result-trophy { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #eaf1ff; color: var(--blue-deep); margin-bottom: 16px; }
.result-lead { color: var(--ink-2); font-weight: 600; margin-bottom: 18px; }

/* Check lists */
.check-list { display: flex; flex-direction: column; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-2); font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.check-list.light li { color: #d7e0f1; }

/* =========================================================
   HOW BUSINESSES BECOME RECOMMENDED
   ========================================================= */
.feature-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px;
}
.feature-row li { text-align: center; }
.feat-ico {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  border-radius: 12px; background: #eef3fb; color: var(--blue-deep); margin-bottom: 12px;
}
.feature-row h3 { font-size: 0.98rem; color: var(--ink); margin-bottom: 6px; }
.feature-row p { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries { background: var(--surface-alt); }
.industries-band {
  background:
    radial-gradient(700px 300px at 50% -10%, rgba(59,130,246,0.22), transparent 60%),
    linear-gradient(160deg, #0c1428 0%, #070b16 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px 40px;
  color: #fff;
}
.band-title { text-align: center; font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin-bottom: 30px; }
.industry-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; }
.industry-grid li {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500; color: #d3ddef; text-align: center;
}
.ind-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--blue-bright);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card {
  background: var(--surface-alt);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.service-copy h3 { font-size: 1.45rem; color: var(--ink); margin-bottom: 12px; line-height: 1.15; }
.service-copy > p { color: var(--muted); margin-bottom: 20px; }
.service-copy .check-list li { font-size: 0.92rem; }

/* Website mockup */
.mock-browser { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.mock-bar { display: flex; gap: 6px; padding: 10px 12px; background: #f1f5fb; border-bottom: 1px solid var(--border-light); }
.mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e6; }
.mock-body { position: relative; padding: 16px; background: linear-gradient(160deg, #0c1730, #0a1124); }
.mock-hero { max-width: 70%; }
.mock-h { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 0.96rem; line-height: 1.2; margin-bottom: 8px; }
.mock-sub { color: #9fb0d0; font-size: 0.7rem; line-height: 1.4; margin-bottom: 12px; }
.mock-btn { display: inline-block; background: var(--grad-btn); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 7px 12px; border-radius: 8px; }
.mock-btn.small { font-size: 0.6rem; padding: 5px 9px; }
.mock-phone {
  position: absolute; right: 14px; bottom: -8px; width: 92px;
  background: #fff; border-radius: 12px; padding: 10px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
}
.mock-badge { font-size: 0.6rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }

/* Automation flow */
.automation-flow { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.node {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--border-light); border-radius: 12px;
  padding: 9px 13px; font-size: 0.8rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.node-ico { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: #eef3fb; color: var(--muted); }
.node-ico.orange { color: #f2631f; background: #fff1e8; }
.node-ico.blue { color: var(--blue-deep); background: #eaf1ff; }
.node-row { display: flex; gap: 12px; }
.flow-lines { width: 2px; height: 20px; background: linear-gradient(var(--border-light), var(--blue)); }

/* =========================================================
   RESULTS
   ========================================================= */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.result-tile {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.rt-body { padding: 22px; }
.rt-label { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.result-tile blockquote { margin: 0 0 16px; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.rt-stat { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--blue-deep); }
.rt-time { color: var(--muted-2); font-size: 0.85rem; }
.rt-img { height: 130px; }
.rt-roof { background: linear-gradient(135deg, #3a4a66, #1f2c44); }
.rt-hvac { background: linear-gradient(135deg, #475a78, #28384f); }
.rt-law  { background: linear-gradient(135deg, #4a5572, #2b3450); }
.results-more { text-align: center; margin-top: 30px; }
.results-more a { color: var(--blue-deep); font-weight: 600; }
.results-more a:hover { text-decoration: underline; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--surface-alt); }
.faq-inner { max-width: 820px; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin: 10px 0 12px; }
.faq-sub { color: var(--muted); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-soft);
}
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 16px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 { font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.faq-plus { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--blue-deep); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-list details[open] .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-list details p { color: var(--muted); padding: 0 0 18px; line-height: 1.6; }

/* =========================================================
   ABOUT AHMED / FINAL CTA
   ========================================================= */
.about-dark { position: relative; overflow: hidden; background: var(--bg-dark); color: #fff; padding: 76px 0 0; }
.about-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 0% 30%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(700px 500px at 100% 80%, rgba(37,99,235,0.18), transparent 60%);
}
.about-dark .container { position: relative; z-index: 1; }
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.2fr 1fr; gap: 34px;
  align-items: center; padding-bottom: 60px;
}
.about-photo .photo-placeholder { min-height: 300px; border-radius: var(--radius-lg); }
.about-list h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 22px; }

.testimonial {
  background: linear-gradient(180deg, rgba(20,29,51,0.9), rgba(12,19,38,0.9));
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-dark);
}
.quote-mark { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.4; color: var(--blue-bright); }
.testimonial blockquote { margin: 14px 0 16px; color: #e4ebf7; font-size: 1.02rem; line-height: 1.5; }
.t-author { color: #9fb0d0; font-weight: 600; margin-bottom: 18px; }
.t-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  border: 2px solid #0d1426;
  background: linear-gradient(135deg, #4d8dff, #1f2c44);
}
.avatars span:first-child { margin-left: 0; }
.t-rating { font-size: 0.85rem; color: #aebbd2; }
.stars { color: #ffc24d; letter-spacing: 1px; }

/* Final CTA */
.final-cta {
  text-align: center; border-top: 1px solid var(--navy-line);
  padding: 56px 0 60px;
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(59,130,246,0.18), transparent 60%);
}
.final-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 16px; line-height: 1.18; }
.final-sub { color: #aebbd2; max-width: 560px; margin: 0 auto 28px; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.about-dark .final-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--bg-dark-2); color: #fff; padding: 26px 0; border-top: 1px solid var(--navy-line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.copyright { color: #7e8caa; font-size: 0.84rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { grid-column: 1 / -1; }
  .hero-photo { min-height: 340px; }
  .photo-placeholder { min-height: 340px; }
  .vis-grid { grid-template-columns: 1fr; gap: 50px; }
  .vis-diagram { max-width: 460px; margin: 0 auto; }
  .feature-row { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
  .industry-grid { grid-template-columns: repeat(5, 1fr); row-gap: 22px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-photo { grid-column: 1 / -1; max-width: 360px; }
}

@media (max-width: 880px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .question-banner { flex-direction: column; text-align: center; padding: 32px 26px; }
}

@media (max-width: 620px) {
  .section-light { padding: 56px 0; }
  .hero { padding: 44px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { padding: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 100%; }
  .vis-diagram { min-height: 380px; }
  .pillar { width: 130px; }
  .trust-logos { gap: 16px 20px; }
  .hero-actions .btn, .final-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar p { display: none; }
  .pillar { width: 108px; }
}
