/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   Dark rounded hero  →  dark "What We Do" grid  →  light "Why
   Choose Us" split. Inherits the brand system (Manrope, #43AF43,
   pill buttons, --content-ease, the reveal + counter scripts) and
   keeps the shared navbar + footer.
════════════════════════════════════════════════════════════ */

/* ── Nav link reset (Home + logo are anchors here) ── */
a.nav-item { text-decoration: none; }
.logo a { display: inline-flex; line-height: 0; text-decoration: none; }

/* ── Shared primitives ── */
.ab-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #43AF43;
}
.ab-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: #43AF43; border-radius: 2px;
}
.ab-rule { display: block; width: 62px; height: 3px; border-radius: 3px; background: #43AF43; }
.ab-dot { color: #43AF43; }

/* Reveal (js/about.js) — gated on html.js for a no-JS fallback */
html.js [data-au-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--content-ease), transform 0.7s var(--content-ease);
}
html.js [data-au-reveal].is-revealed { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════════════
   SECTION 01 — HERO
   A single static banner that reuses the homepage hero styling
   (.hero-slider / .slide / .slide-content / .slide-eyebrow /
   .slide-headline / .slide-desc / .cta-primary / .cta-secondary)
   from style.css — identical design, just without the slider
   chrome. No page-specific hero CSS needed.
════════════════════════════════════════════════════════════ */


/* ── Intro (light, below the hero) — text left, image right ── */
.ab-intro {
  background:
    radial-gradient(90% 62% at 100% 0%, rgba(67,175,67,0.18) 0%, transparent 55%),
    radial-gradient(60% 50% at 0% 100%, rgba(67,175,67,0.10) 0%, transparent 58%),
    linear-gradient(135deg, #F3FBF3 0%, #E6F5E8 45%, #D7EDDA 100%);
  padding: clamp(72px, 10vh, 130px) 24px;
}
.ab-intro-inner {
  width: min(1440px, calc(100% - 64px)); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px); align-items: center;
}

/* Text column */
.ab-intro-text { max-width: 620px; }
.ab-intro-text .ab-eyebrow { margin-bottom: 20px; }
.ab-intro-text p {
  margin: 0 0 20px;
  font-size: 16px; line-height: 1.7; color: #4B5563;
}
/* .ab-intro-text p.ab-lead {
  font-size: clamp(17px, 1.7vw, 20px); line-height: 1.55; font-weight: 500; color: rgba(255,255,255,0.9);
} */
.ab-intro-text p:last-child { margin-bottom: 0; }
.ab-hl { color: #43AF43; font-weight: 700; }

/* Image column */
.ab-intro-media { position: relative; margin: 0; }
.ab-intro-glow {
  position: absolute; z-index: 0; inset: 12% -6% -8% 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(67,175,67,0.28), transparent 68%);
  filter: blur(54px); pointer-events: none;
}
.ab-intro-img {
  position: relative; z-index: 1;
  display: block; width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(17,24,39,0.16);
}

@media (max-width: 860px) {
  .ab-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .ab-intro-text { max-width: none; }
  .ab-intro-img { aspect-ratio: 16 / 10; }
}


/* ═══════════════════════════════════════════════════════════
   SECTION 02 — WHAT WE DO (dark grid)
════════════════════════════════════════════════════════════ */
.ab-do { background: #0A0C0A; padding: clamp(72px, 10vh, 130px) 24px; }
.ab-do-inner { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }

.ab-head { text-align: center; max-width: 680px; margin: 0 auto clamp(44px, 6vh, 68px); }
.ab-head .ab-eyebrow { margin-bottom: 18px; }
.ab-head-title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: #ffffff;
}
.ab-head .ab-rule { margin: 22px auto 0; }
/* Light variant of the header (used in Section 03) */
.ab-head--light .ab-head-title { color: #1B1E1B; }

.ab-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.ab-card {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 40px 24px;
  background: linear-gradient(180deg, #141814 0%, #0F120F 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: transform 0.42s var(--content-ease),
              border-color 0.35s ease,
              box-shadow 0.45s var(--content-ease);
}
.ab-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67,175,67,0.50);
  box-shadow: 0 26px 52px -26px rgba(0,0,0,0.85), 0 0 42px -14px rgba(67,175,67,0.34);
}
.ab-card-ic { color: #43AF43; line-height: 0; }
.ab-card-ic svg { width: 40px; height: 40px; transition: transform 0.42s var(--content-ease); }
.ab-card:hover .ab-card-ic svg { transform: translateY(-3px) scale(1.06); }
.ab-card-cap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ab-card-title { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.35; color: #ffffff; }
.ab-card-dash { width: 26px; height: 2px; border-radius: 2px; background: #43AF43; opacity: 0.9; }


/* ═══════════════════════════════════════════════════════════
   SECTION 03 — WHY INTUITEVOLUTION (light reasons grid)
════════════════════════════════════════════════════════════ */
.ab-why {
  background:
    radial-gradient(62% 46% at 50% 0%, rgba(67,175,67,0.07) 0%, transparent 60%),
    #F3F6F4;
  padding: clamp(72px, 11vh, 140px) 24px;
}
.ab-why-inner { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }

.ab-why-head { text-align: center; max-width: 660px; margin: 0 auto clamp(46px, 6vh, 74px); }
.ab-why-title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: #1B1E1B;
}
.ab-why-head .ab-rule { margin: 22px auto 0; }

/* Reasons — premium 2×2 cards */
.ab-reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ab-reason {
  position: relative; overflow: hidden;
  padding: 30px 20px 30px;
  background: #ffffff;
  border: 1px solid rgba(67,175,67,0.12);
  border-radius: 16px;
  box-shadow: 0 18px 44px -28px rgba(16,44,28,0.24), 0 2px 6px rgba(16,44,28,0.04);
  transition: transform 0.45s var(--content-ease),
              box-shadow 0.5s var(--content-ease),
              border-color 0.35s ease;
}
/* Gradient accent bar that grows across the top on hover */
.ab-reason::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, #43AF43, #6BD46B);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--content-ease);
}
.ab-reason:hover {
  transform: translateY(-8px);
  border-color: rgba(67,175,67,0.42);
  box-shadow: 0 34px 64px -28px rgba(16,44,28,0.30), 0 0 46px -16px rgba(67,175,67,0.24);
}
.ab-reason:hover::before { transform: scaleX(1); }

.ab-reason-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.ab-reason-ic {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  color: #ffffff; background: #43AF43;
  transition: transform 0.4s var(--content-ease), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.ab-reason-ic svg { width: 23px; height: 23px; transition: transform 0.45s var(--content-ease); }
.ab-reason:hover .ab-reason-ic {
  /* background: #43AF43; color: #ffffff; */
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px -8px rgba(67,175,67,0.48);
}
.ab-reason:hover .ab-reason-ic svg { transform: rotate(-6deg) scale(1.06); }
.ab-reason-title {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 19px); font-weight: 700; line-height: 1.25;
  letter-spacing: -0.01em; color: #43af43;
}
.ab-reason-text { margin: 0; font-size: 15px; line-height: 1.6; color: #4B5563; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ab-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-reasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .ab-reasons { grid-template-columns: 1fr; gap: 16px; }
  .ab-reason { padding: 28px 26px; }
}
@media (max-width: 640px) {
  .ab-grid { gap: 16px; }
  .ab-card { padding: 32px 20px; gap: 20px; }
}
@media (max-width: 460px) {
  .ab-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html.js [data-au-reveal] { opacity: 1; transform: none; transition: none; }
}
