:root{
    --dark-1:#111827;
    --dark-2:#1F2937;
    --card:#ffffff;
    --ink:#111827;
    --muted:#6B7280;
    --soft:#E5E7EB;
    --border:#D1D5DB;
    --radius:16px;
  }
  
  .container{ max-width:1180px; margin:0 auto; padding:0 20px; }
  
  /* Hero */
  .ab-hero{
    position:relative;
    background:linear-gradient(180deg, var(--dark-1), var(--dark-2));
    color:#F9FAFB;
    text-align:center;
    padding:64px 0 72px;
    overflow:hidden;
  }
  .ab-hero h1{ font-size:clamp(28px,4vw,36px); margin-bottom:6px; }
  .ab-hero p{ color:#D1D5DB; font-size:clamp(15px,2.2vw,18px); }
  .ab-wave{
    position:absolute; inset:auto 0 -40px 0;
    height:120px;
    background:
      radial-gradient(60% 80px at 50% 0, rgba(255,255,255,.12), transparent 70%),
      radial-gradient(40% 80px at 30% 0, rgba(255,255,255,.08), transparent 70%),
      radial-gradient(40% 80px at 70% 0, rgba(255,255,255,.08), transparent 70%);
  }
  
  /* Intro */
  .ab-intro{ background:#fff; }
  .ab-intro .grid{
    display:grid; grid-template-columns:1.1fr 1fr; gap:24px; align-items:center;
    padding:28px 0 36px;
  }
  .story h2{ font-size:clamp(22px,3.2vw,28px); margin-bottom:8px; color:var(--ink); }
  .story p{ color:#374151; margin-bottom:10px; }
  .bullets{ color:#111827; padding-left:18px; }
  .bullets li{ margin:6px 0; line-height:1.6; }
  
  .intro-media .image-wrap{
    position:relative; border-radius:14px; overflow:hidden;
    box-shadow:0 16px 36px rgba(0,0,0,.22);
  }
  .intro-media img{ display:block; width:100%; height:auto; }
  
  /* MVV */
  .ab-mvv{ background:#F9FAFB; padding:28px 0 8px; }
  .mvv-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .mvv-card{
    background:#fff; border:1px solid var(--border);
    border-radius:14px; padding:18px;
    box-shadow:0 10px 24px rgba(0,0,0,.10);
    position:relative; overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .mvv-card:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(0,0,0,.16); }
  .mvv-card h3{ margin:6px 0 6px; color:var(--ink); font-size:18px; }
  .mvv-card p{ color:#4B5563; font-size:14px; line-height:1.6; }
  .mvv-icon{
    width:48px; height:48px; border-radius:12px;
    background:#F3F4F6; display:grid; place-items:center;
  }
  .mvv-icon svg{ width:26px; height:26px; }
  
  /* Stats */
  .ab-stats{ background:#fff; padding:28px 0 28px; }
  .stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; text-align:center; }
  .stat{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:16px; box-shadow:0 10px 22px rgba(0,0,0,.08); }
  .stat .value{ font-weight:800; font-size:clamp(22px,4vw,32px); color:#111827; }
  .stat .label{ color:#6B7280; font-size:14px; }
  
  /* Why choose us */
  .ab-why{ background:linear-gradient(180deg, var(--dark-1), var(--dark-2)); color:#F9FAFB; padding:40px 0; }
  .ab-why h2{ text-align:center; margin-bottom:16px; font-size:clamp(22px,3.2vw,28px); }
  .why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
  .why-card{ background:#2F3643; border-radius:14px; padding:18px; box-shadow:0 12px 28px rgba(0,0,0,.25); position:relative; overflow:hidden; }
  .why-card::after{ content:""; position:absolute; inset:0; background:radial-gradient(400px 220px at 20% 0%, rgba(255,255,255,.06), transparent 60%); opacity:0; transition:opacity .25s ease; }
  .why-card:hover::after{ opacity:1; }
  .why-card h3{ margin-bottom:6px; color:#F9FAFB; font-size:16px; }
  .why-card p{ color:#D1D5DB; font-size:14px; line-height:1.55; }
  
  /* Team */
  .ab-team{ background:#fff; padding:36px 0; }
  .ab-team h2{ text-align:center; margin-bottom:16px; color:#111827; font-size:clamp(22px,3.2vw,28px); }
  .team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  .team-card{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:16px; box-shadow:0 10px 24px rgba(0,0,0,.10); text-align:center; transition:transform .25s ease, box-shadow .25s ease; transform-style:preserve-3d; }
  .team-card:hover{ transform:translateY(-3px) rotateX(1deg) rotateY(1deg); box-shadow:0 18px 40px rgba(0,0,0,.16); }
  .team-card h3{ margin:8px 0 6px; color:#111827; }
  .team-card p{ color:#6B7280; font-size:14px; line-height:1.55; }
  .avatar{ border-radius:12px; overflow:hidden; aspect-ratio:4/3; box-shadow:0 10px 24px rgba(0,0,0,.2); }
  .avatar img{ width:100%; height:100%; object-fit:cover; filter:grayscale(25%); transition:filter .25s ease, transform .25s ease; }
  .team-card:hover .avatar img{ filter:none; transform:scale(1.02); }
  
  /* CTA */
  .ab-cta{ background:#F9FAFB; padding:36px 0 56px; text-align:center; }
  .ab-cta h2{ margin-bottom:12px; color:#111827; font-size:clamp(22px,3.2vw,28px); }
  .btn-pill{ display:inline-block; background:#111827; color:#F9FAFB; padding:12px 20px; border-radius:9999px; font-weight:700; text-decoration:none; box-shadow:0 10px 24px rgba(0,0,0,.22); transition:transform .2s ease, background .2s ease; }
  .btn-pill:hover{ transform:translateY(-2px); background:#1F2937; }
  
  /* Testimonials (carousel) */
  .t-carousel{ overflow:hidden; position:relative; }
  .t-track{ display:flex; width:100%; height:100%; transition: transform 550ms cubic-bezier(.22,1,.36,1); }
  .t-track.dragging{ transition:none; }
  .t-card{ flex:0 0 100%; background:#ffffff; border:1px solid var(--border); border-radius:14px; padding:18px; margin:0 6px; box-shadow:0 10px 22px rgba(0,0,0,.08); }
  .t-stars{ color:#10B981; font-size:16px; font-weight:800; letter-spacing:1px; margin-bottom:8px; }
  .t-quote{ color:#374151; font-size:14px; line-height:1.6; margin-bottom:10px; }
  .t-meta{ display:flex; gap:10px; color:#6B7280; font-size:13px; margin-bottom:8px; }
  .t-btn{ display:inline-block; background:transparent; color:#111827; border:1.6px solid #111827; border-radius:9999px; padding:8px 14px; font-size:13px; text-decoration:none; transition:transform .15s ease, background .2s ease, color .2s ease; }
  .t-btn:hover{ transform:translateY(-1px); background:#111827; color:#fff; }
  .t-nav{ position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; display:grid; place-items:center; border-radius:9999px; border:none; cursor:pointer; background:#111827; color:#fff; opacity:.9; box-shadow:0 8px 18px rgba(0,0,0,.22); }
  .t-nav.prev{ left:-6px; } .t-nav.next{ right:-6px; }
  .t-nav:disabled{ opacity:.4; cursor:default; }
  .t-dots{ display:flex; gap:6px; justify-content:center; margin-top:12px; }
  .t-dot{ width:8px; height:8px; border-radius:9999px; background:#D1D5DB; border:none; cursor:pointer; transition:transform .15s ease, background .2s ease; }
  .t-dot.active{ background:#111827; transform:scale(1.1); }
  
  /* Footer wedge */
  .ab-footer{ background:#fff; padding-bottom:14px; }
  .wedge{ position:relative; background:#1F2937; height:120px; color:#F9FAFB; clip-path: polygon(0 60%, 50% 0, 100% 60%, 100% 100%, 0 100%); display:flex; align-items:flex-start; justify-content:center; }
  .badge{ position:absolute; top:-18px; left:50%; transform:translateX(-50%); width:40px; height:40px; border-radius:50%; background:#D1D5DB; box-shadow:0 3px 10px rgba(0,0,0,.3); }
  .brand{ margin-top:40px; text-align:center; }
  .brand .name{ font-weight:800; margin-bottom:6px; }
  .brand .sm a{ color:#E5E7EB; text-decoration:none; margin:0 6px; font-size:14px; }
  .brand .sm a:hover{ text-decoration:underline; }
  
  /* Reveal on load */
  .reveal{ opacity:0; transform:translateY(14px); animation:fadeUp .7s ease forwards; }
  .delay-1{ animation-delay:.12s; } .delay-2{ animation-delay:.24s; }
  .delay-3{ animation-delay:.36s; } .delay-4{ animation-delay:.48s; } .delay-5{ animation-delay:.60s; }
  @keyframes fadeUp{ to{ opacity:1; transform:none; } }
  
  /* Sticky header (target the same class as Home; no generic header overrides) */
  .site-header{ position:sticky; top:0; z-index:9999; }
  html{ scroll-padding-top:56px; }
  
  /* Responsive */
  @media (max-width:1024px){
    .mvv-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:repeat(2,1fr); }
    .why-grid{ grid-template-columns:1fr 1fr; }
    .team-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:640px){
    .ab-intro .grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:1fr 1fr; }
    .why-grid{ grid-template-columns:1fr; }
    .team-grid{ grid-template-columns:1fr; }
    .t-nav.prev{ left:2px; } .t-nav.next{ right:2px; }
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{ animation:none; opacity:1; transform:none; }
    .t-track{ transition:none; }
  }