/* Beyond Bookkeeping — Main Stylesheet */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0f0989;
  --navy-dark:  #0a066b;
  --navy-light: #1810a8;
  --gold:       #C9A234;
  --gold-light: #e8be50;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --light-gray: #eef0f7;
  --text:       #1a1a2e;
  --text-muted: #555577;
  --font-serif: 'Poppins', 'Inter', Arial, sans-serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(27,40,130,0.10);
  --shadow-lg:  0 8px 40px rgba(27,40,130,0.16);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { color: var(--text-muted); }

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: linear-gradient(135deg, rgba(10,6,107,0.94) 0%, rgba(15,9,137,0.91) 60%, rgba(24,16,168,0.94) 100%), url('../images/premium_photo-1661758908295-72b9780d15c1.avif') center/cover no-repeat; }
.text-center { text-align: center; }
.gold { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,52,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27,40,130,0.10);
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 16px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.9rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(10,6,107,0.93) 0%, rgba(15,9,137,0.90) 60%, rgba(24,16,168,0.93) 100%), url('../images/premium_photo-1661758908295-72b9780d15c1.avif') center/cover no-repeat;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,162,52,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Pain Points ────────────────────────────────────────────── */
.pain-intro {
  max-width: 620px;
  margin: 0 auto 56px;
}
.pain-intro p { font-size: 1.08rem; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.pain-card {
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-radius: 10px;
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.pain-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-icon svg {
  width: 26px; height: 26px;
  stroke: var(--white);
}
.pain-card h3 { margin-bottom: 10px; }
.pain-card p { font-size: 0.95rem; }

/* ─── Why BB ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.1); }
.why-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.why-item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.why-item p  { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.why-heading { color: var(--white); }
.why-label { color: var(--gold); }

/* ─── About Snippet ──────────────────────────────────────────── */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-snippet-text h2 { margin-bottom: 20px; }
.about-snippet-text p  { margin-bottom: 16px; font-size: 1rem; }
.about-snippet-text .btn { margin-top: 8px; }
.about-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.about-card-role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.about-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 20px;
}
.testimonial-author strong { color: var(--navy); font-weight: 700; }
.testimonial-author span  { color: var(--text-muted); font-size: 0.85rem; display: block; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid #e0e4f5;
  border-bottom: 1px solid #e0e4f5;
  padding: 32px 0;
}
.trust-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e4f5;
}
.trust-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-badge-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--navy);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: #d0d5e8;
}
.trust-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* ─── Closing CTA ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-note {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
}

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── Services Preview (homepage) ───────────────────────────── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}
.service-preview-card {
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}
.service-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--navy);
}
.service-preview-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.service-preview-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  min-height: auto;
}
.service-preview-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── About Page ─────────────────────────────────────────────── */
.about-story { max-width: 700px; margin: 0 auto; }
.about-story p {
  margin-bottom: 32px;
  font-size: 1.02rem;
  line-height: 1.85;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.about-story p:last-child { margin-bottom: 0; }
.about-story h2 { margin: 48px 0 20px; }
.differentiator-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}
.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 32px;
  border-bottom: 1px solid #e0e4f5;
}
.differentiator-item:nth-child(odd) {
  border-right: 1px solid #e0e4f5;
}
.differentiator-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.diff-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.diff-content h3 { margin-bottom: 8px; font-size: 1.05rem; }
.diff-content p  { font-size: 0.93rem; color: var(--text-light); }
@media (max-width: 700px) {
  .differentiator-list { grid-template-columns: 1fr; }
  .differentiator-item { border-right: none !important; border-bottom: 1px solid #e0e4f5 !important; padding: 28px 0; }
  .differentiator-item:last-child { border-bottom: none !important; }
}
.bas-callout {
  background: var(--off-white);
  border: 1px solid #e0e4f5;
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 56px;
}
.bas-callout h3 { margin-bottom: 12px; }
.bas-callout p  { margin-bottom: 16px; }
.bas-callout a.tpb-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.credentials-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: center;
}
.credential-badge {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── Services Page ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  transition: all 0.2s ease;
}
.service-card .section-label { margin-bottom: 10px; flex-grow: 0; }
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  flex-grow: 1;
}
.service-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-top: 16px;
  align-self: flex-start;
}

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p  { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--white);
}
.contact-detail-text strong { display: block; color: var(--navy); font-weight: 700; }
.contact-detail-text span   { color: var(--text-muted); font-size: 0.95rem; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0d5e8;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; }
.footer-logo-text {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.3;
}
.footer-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-credit {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  padding-top: 16px;
  margin-top: 4px;
}

/* ─── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 52px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 56px;
  flex: 1;
  min-width: 160px;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── Testimonial Carousel ───────────────────────────────────── */
.testimonial-carousel {
  max-width: 760px;
  width: 100%;
  margin: 48px auto 0;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid #e0e4f5;
  border-radius: 10px;
  padding: 40px 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: left;
  box-sizing: border-box;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d5e8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: var(--navy);
  transform: scale(1.3);
}

/* ─── AI & Efficiency Section ────────────────────────────────── */
.ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-text h2 { margin-bottom: 20px; }
.ai-text > p { margin-bottom: 16px; font-size: 1rem; }
.ai-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ai-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ai-point-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-point-icon svg {
  width: 18px; height: 18px;
  stroke: var(--white);
}
.ai-point strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.ai-point p { font-size: 0.93rem; margin: 0; }
.ai-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ai-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 16px;
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 8px 24px rgba(27,40,130,0.10);
  }
  .nav-links.open .nav-cta { display: block; margin-left: 0; }
  .hero { padding: 64px 0 56px; }
  .hero-trust { gap: 16px; }
  .about-snippet { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .ai-content { grid-template-columns: 1fr; gap: 36px; }
  .ai-image img { height: 260px; }
  .stat-divider { display: none; }
  .stat-item { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .about-card-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
