/* ════════════════════════════════════════
   Zyneticai — about.css
   About Us landing page
   Extends tokens from style.css (fonts, colors, radii, ease)
   Load AFTER style.css
   ════════════════════════════════════════ */

/* ── SHARED EYEBROW / TAG (matches .seedance-badge pattern) ── */
.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-family: var(--font-m);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(162,114,255,0.1);
    border: 1px solid rgba(162,114,255,0.25);
    margin-bottom: 14px;
  }
  .ab-eyebrow i { font-size: 9px; }
  .ab-eyebrow--gold  { color: var(--gold);  background: rgba(223,194,106,0.12); border-color: rgba(223,194,106,0.25); }
  .ab-eyebrow--teal  { color: var(--teal);  background: rgba(0,184,169,0.1);   border-color: rgba(0,184,169,0.25); }
  .ab-eyebrow--rose  { color: var(--rose);  background: rgba(232,56,90,0.1);   border-color: rgba(232,56,90,0.25); }
  
  /* ── BREADCRUMB (SEO + UX wayfinding) ── */
  .ab-breadcrumb {
    position: relative; z-index: 3;
    display: flex; align-items: center; gap: 8px;
    padding: 16px 24px 0;
    font-size: 12px; color: var(--tx3); font-family: var(--font-m);
  }
  .ab-breadcrumb a { color: var(--tx2); transition: color 0.2s; }
  .ab-breadcrumb a:hover { color: var(--violet); }
  .ab-breadcrumb i { font-size: 9px; opacity: 0.6; }
  .ab-breadcrumb span[aria-current] { color: var(--tx1); }
  
  /* ── COLORFUL SECTION DIVIDER ── */
  .ab-divider {
    height: 3px; width: 90px; margin: 0 auto 40px; border-radius: 3px;
    background: linear-gradient(90deg, var(--violet) 0%, var(--teal) 33%, var(--gold) 66%, var(--rose) 100%);
  }
  
  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .ab-hero {
    position: relative;
    padding: 56px 24px 0;
    overflow: hidden;
  }
  .ab-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  /* extra colorful orbs, scoped to hero only */
  .ab-hero-bg .orb-4 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(232,56,90,0.16) 0%, transparent 70%); top: 10%; right: 8%; animation: orb3 13s ease-in-out infinite; }
  .ab-hero-bg .orb-5 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(223,194,106,0.18) 0%, transparent 70%); bottom: 6%; left: 10%; animation: orb2 16s ease-in-out infinite; }
  body.theme-dark .ab-hero-bg .orb-4 { background: radial-gradient(circle, rgba(255,107,138,0.22) 0%, transparent 70%); }
  body.theme-dark .ab-hero-bg .orb-5 { background: radial-gradient(circle, rgba(255,180,100,0.2) 0%, transparent 70%); }
  
  .ab-hero-top { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; max-width: 1180px; margin: 0 auto; }
  .ab-hero-content { text-align: left; }
  .ab-hero-title {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: var(--tx1);
    margin-bottom: 18px;
  }
  .ab-hero-title .grad {
    background: linear-gradient(135deg, var(--violet) 0%, var(--teal) 45%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .ab-hero-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    color: var(--tx2);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 30px;
  }
  .ab-hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  
  /* Hero illustration */
  .ab-hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
  .ab-hero-illo { width: 100%; max-width: 420px; height: auto; }
  .ab-hero-illo .ring { fill: none; stroke-width: 1.5; opacity: 0.4; }
  .ab-hero-illo .blob-a { fill: var(--violet); opacity: 0.85; }
  .ab-hero-illo .blob-b { fill: var(--teal); opacity: 0.85; }
  .ab-hero-illo .blob-c { fill: var(--gold); opacity: 0.9; }
  .ab-hero-illo .blob-d { fill: var(--rose); opacity: 0.9; }
  .ab-hero-illo .chip { fill: var(--surface); stroke: var(--border); stroke-width: 1; }
  .ab-hero-illo .chip-icon { fill: var(--tx1); }
  .ab-hero-illo .spark { animation: abSpin 22s linear infinite; transform-origin: center; }
  @keyframes abSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .ab-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 30px;
    font-size: 13.5px; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet2) 100%);
    box-shadow: 0 8px 28px rgba(124,79,255,0.35);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .ab-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124,79,255,0.45); }
  .ab-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: 30px;
    font-size: 13.5px; font-weight: 600; color: var(--tx1);
    background: var(--surface); border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
  }
  .ab-btn-ghost:hover { border-color: var(--border-hi); transform: translateY(-2px); }
  
  /* ══════════════════════════════
     STATS STRIP
  ══════════════════════════════ */
  .ab-stats {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1080px;
    margin: 44px auto 0;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .ab-stat { background: var(--surface); padding: 22px 14px; text-align: center; border-bottom: 3px solid transparent; }
  .ab-stat:nth-child(1) { border-bottom-color: var(--violet); }
  .ab-stat:nth-child(2) { border-bottom-color: var(--teal); }
  .ab-stat:nth-child(3) { border-bottom-color: var(--gold); }
  .ab-stat:nth-child(4) { border-bottom-color: var(--rose); }
  .ab-stat-num {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--tx1);
    line-height: 1;
    margin-bottom: 6px;
  }
  .ab-stat:nth-child(1) .ab-stat-num span { color: var(--violet); }
  .ab-stat:nth-child(2) .ab-stat-num span { color: var(--teal); }
  .ab-stat:nth-child(3) .ab-stat-num span { color: var(--gold); }
  .ab-stat:nth-child(4) .ab-stat-num span { color: var(--rose); }
  .ab-stat-label { font-size: 11px; color: var(--tx2); font-family: var(--font-m); letter-spacing: 0.03em; }
  .ab-stats-wrap { padding: 0 24px 56px; }
  
  /* ══════════════════════════════
     SHARED SECTION WRAP
  ══════════════════════════════ */
  .ab-section { padding: 64px 24px; position: relative; }
  .ab-section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
  .ab-section-head.left { text-align: left; margin: 0 0 36px; }
  .ab-sec-title {
    font-family: var(--font-d);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--tx1);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .ab-sec-sub { font-size: 14px; color: var(--tx2); line-height: 1.7; }
  .ab-alt-bg { background: var(--bg2); }
  
  /* ══════════════════════════════
     WHAT WE CREATE (colorful gallery tiles)
  ══════════════════════════════ */
  .ab-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
  .ab-gallery-tile {
    position: relative; overflow: hidden;
    border-radius: var(--r-lg); padding: 26px 20px; min-height: 168px;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .ab-gallery-tile:hover { transform: translateY(-5px); }
  .ab-gallery-tile::before { content: ''; position: absolute; inset: 0; opacity: 0.9; z-index: 0; }
  .ab-gallery-tile--video  ::before, .ab-gallery-tile--video  { background: linear-gradient(150deg, #7c4fff 0%, #4b2f9e 100%); }
  .ab-gallery-tile--image  { background: linear-gradient(150deg, #dfc26a 0%, #b8940a 100%); }
  .ab-gallery-tile--music  { background: linear-gradient(150deg, #00b8a9 0%, #026e64 100%); }
  .ab-gallery-tile--text   { background: linear-gradient(150deg, #ff6b8a 0%, #b8253f 100%); }
  .ab-gallery-tile:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.22); }
  .ab-gallery-icon { position: relative; z-index: 1; font-size: 22px; margin-bottom: 34px; opacity: 0.95; }
  .ab-gallery-tile h3 { position: relative; z-index: 1; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .ab-gallery-tile p { position: relative; z-index: 1; font-size: 11.5px; opacity: 0.9; line-height: 1.5; }
  .ab-gallery-tile .ab-gallery-blob { position: absolute; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.14); top: -50px; right: -40px; z-index: 0; }
  
  /* ══════════════════════════════
     IMAGE SLOTS (real <img> with alt, colorful gradient fallback)
     Swap the src="" on .ab-img-slot img with your own licensed photo —
     the colorful gradient behind it is shown automatically until then.
  ══════════════════════════════ */
  .ab-img-slot {
    position: relative; overflow: hidden; border-radius: var(--r-xl);
    border: 1px solid var(--border-hi);
    display: flex; align-items: center; justify-content: center;
  }
  .ab-img-slot img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
  .ab-img-slot-fallback {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .ab-img-slot-fallback i { font-size: 34px; color: rgba(255,255,255,0.85); }
  .ab-img-slot--story .ab-img-slot-fallback { background: linear-gradient(135deg, var(--violet) 0%, var(--teal) 100%); }
  .ab-img-slot--why   .ab-img-slot-fallback { background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%); }
  
  /* ══════════════════════════════
     STORY / TIMELINE
  ══════════════════════════════ */
  .ab-story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
  }
  .ab-story-visual { aspect-ratio: 4/5; margin-bottom: 22px; }
  .ab-story-copy p { font-size: 14px; color: var(--tx2); line-height: 1.85; margin-bottom: 16px; }
  .ab-story-copy strong { color: var(--tx1); font-weight: 600; }
  
  .ab-timeline { position: relative; padding-left: 28px; }
  .ab-timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--violet), var(--teal)); border-radius: 2px; opacity: 0.35; }
  .ab-tl-item { position: relative; padding-bottom: 30px; }
  .ab-tl-item:last-child { padding-bottom: 0; }
  .ab-tl-item::before {
    content: ''; position: absolute; left: -28px; top: 3px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--surface); border: 2px solid var(--violet);
    box-shadow: 0 0 0 4px var(--bg);
  }
  .ab-tl-year { font-family: var(--font-m); font-size: 11px; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 4px; }
  .ab-tl-title { font-size: 15px; font-weight: 700; color: var(--tx1); margin-bottom: 5px; }
  .ab-tl-desc { font-size: 12.5px; color: var(--tx2); line-height: 1.7; }
  
  /* ══════════════════════════════
     MISSION / VISION
  ══════════════════════════════ */
  .ab-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
  .ab-mv-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
    padding: 32px 28px; transition: transform 0.3s var(--ease), border-color 0.3s;
  }
  .ab-mv-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
  .ab-mv-icon {
    width: 46px; height: 46px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; margin-bottom: 18px;
  }
  .ab-mv-card--mission .ab-mv-icon { background: rgba(162,114,255,0.12); color: var(--violet); }
  .ab-mv-card--vision  .ab-mv-icon { background: rgba(0,184,169,0.12); color: var(--teal); }
  .ab-mv-card h3 { font-family: var(--font-d); font-size: 22px; font-weight: 600; color: var(--tx1); margin-bottom: 10px; }
  .ab-mv-card p { font-size: 13.5px; color: var(--tx2); line-height: 1.8; }
  
  /* ══════════════════════════════
     CORE VALUES
  ══════════════════════════════ */
  .ab-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto; }
  .ab-value-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 24px 20px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  }
  .ab-value-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: 0 12px 32px rgba(124,79,255,0.1); }
  .ab-value-num { font-family: var(--font-m); font-size: 11px; color: var(--tx3); letter-spacing: 0.05em; margin-bottom: 14px; }
  .ab-value-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 16px; }
  .ab-value-card:nth-child(1) .ab-value-icon { background: rgba(162,114,255,0.12); color: var(--violet); }
  .ab-value-card:nth-child(2) .ab-value-icon { background: rgba(223,194,106,0.14); color: var(--gold); }
  .ab-value-card:nth-child(3) .ab-value-icon { background: rgba(0,184,169,0.12); color: var(--teal); }
  .ab-value-card:nth-child(4) .ab-value-icon { background: rgba(255,107,138,0.12); color: var(--rose); }
  .ab-value-card h3 { font-size: 14.5px; font-weight: 700; color: var(--tx1); margin-bottom: 7px; }
  .ab-value-card p { font-size: 12.5px; color: var(--tx2); line-height: 1.7; }
  
  /* ══════════════════════════════
     WHY CHOOSE US (feature list + visual)
  ══════════════════════════════ */
  .ab-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1080px; margin: 0 auto; align-items: center; }
  .ab-why-visual { aspect-ratio: 4/3.6; }
  .ab-why-visual-badge {
    position: absolute; z-index: 2; left: 20px; bottom: 20px;
    display: flex; align-items: center; gap: 10px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 14px 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  }
  .ab-why-visual-badge i { font-size: 20px; color: var(--gold); }
  .ab-why-visual-badge span { font-family: var(--font-d); font-size: 14px; color: var(--tx1); font-weight: 600; }
  
  .ab-why-list { display: flex; flex-direction: column; gap: 20px; }
  .ab-why-item { display: flex; gap: 16px; align-items: flex-start; }
  .ab-why-check {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
    background: rgba(0,184,169,0.12); color: var(--teal);
    display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 2px;
  }
  .ab-why-item h4 { font-size: 14.5px; font-weight: 700; color: var(--tx1); margin-bottom: 4px; }
  .ab-why-item p { font-size: 12.5px; color: var(--tx2); line-height: 1.7; }
  
  /* ══════════════════════════════
     TEAM
  ══════════════════════════════ */
  .ab-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
  .ab-team-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 26px 18px; text-align: center; transition: transform 0.3s var(--ease), border-color 0.3s;
  }
  .ab-team-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
  .ab-team-avatar {
    position: relative; overflow: hidden;
    width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-d); font-size: 22px; font-weight: 600; color: #fff;
    background: linear-gradient(135deg, var(--violet) 0%, var(--teal) 100%);
  }
  .ab-team-card:nth-child(2) .ab-team-avatar { background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%); }
  .ab-team-card:nth-child(3) .ab-team-avatar { background: linear-gradient(135deg, var(--teal) 0%, var(--violet2) 100%); }
  .ab-team-card:nth-child(4) .ab-team-avatar { background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%); }
  .ab-team-avatar span { position: relative; z-index: 1; }
  .ab-team-avatar img {
    position: absolute; inset: 0; z-index: 2;
    width: 100%; height: 100%; object-fit: cover;
  }
  
  /* ══════════════════════════════
     FAQ ACCORDION
  ══════════════════════════════ */
  .ab-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .ab-faq-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
    overflow: hidden; transition: border-color 0.25s;
  }
  .ab-faq-item[open] { border-color: var(--border-hi); }
  .ab-faq-q {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 20px; font-size: 14px; font-weight: 700; color: var(--tx1);
  }
  .ab-faq-q::-webkit-details-marker { display: none; }
  .ab-faq-q-icon {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--surface2); color: var(--violet);
    display: flex; align-items: center; justify-content: center; font-size: 11px;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
  }
  .ab-faq-item[open] .ab-faq-q-icon { transform: rotate(45deg); background: var(--violet); color: #fff; }
  .ab-faq-a { padding: 0 20px 20px; font-size: 13px; color: var(--tx2); line-height: 1.75; }
  .ab-faq-item:nth-child(1) .ab-faq-q-icon { color: var(--violet); }
  .ab-faq-item:nth-child(2) .ab-faq-q-icon { color: var(--teal); }
  .ab-faq-item:nth-child(3) .ab-faq-q-icon { color: var(--gold); }
  .ab-faq-item:nth-child(4) .ab-faq-q-icon { color: var(--rose); }
  .ab-faq-item:nth-child(5) .ab-faq-q-icon { color: var(--violet); }
  .ab-faq-item:nth-child(6) .ab-faq-q-icon { color: var(--teal); }
  .ab-faq-item[open]:nth-child(1) .ab-faq-q-icon,
  .ab-faq-item[open]:nth-child(5) .ab-faq-q-icon { background: var(--violet); color: #fff; }
  .ab-faq-item[open]:nth-child(2) .ab-faq-q-icon,
  .ab-faq-item[open]:nth-child(6) .ab-faq-q-icon { background: var(--teal); color: #fff; }
  .ab-faq-item[open]:nth-child(3) .ab-faq-q-icon { background: var(--gold); color: #0a0800; }
  .ab-faq-item[open]:nth-child(4) .ab-faq-q-icon { background: var(--rose); color: #fff; }
  .ab-team-name { font-size: 14.5px; font-weight: 700; color: var(--tx1); margin-bottom: 3px; }
  .ab-team-role { font-size: 11.5px; color: var(--violet); font-family: var(--font-m); margin-bottom: 12px; }
  .ab-team-socials { display: flex; align-items: center; justify-content: center; gap: 10px; }
  .ab-team-socials a { width: 26px; height: 26px; border-radius: 50%; background: var(--surface2); color: var(--tx2); display: flex; align-items: center; justify-content: center; font-size: 11px; transition: background 0.2s, color 0.2s; }
  .ab-team-socials a:hover { background: var(--violet); color: #fff; }
  
  /* ══════════════════════════════
     LOGO / TRUST STRIP
  ══════════════════════════════ */
  .ab-trust { text-align: center; }
  .ab-trust-label { font-size: 11px; color: var(--tx3); font-family: var(--font-m); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
  .ab-trust-row { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; opacity: 0.65; }
  .ab-trust-row i { font-size: 26px; color: var(--tx2); }
  
  /* ══════════════════════════════
     CTA BANNER
  ══════════════════════════════ */
  .ab-cta {
    position: relative; overflow: hidden;
    max-width: 1080px; margin: 0 auto; padding: 56px 40px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(124,79,255,0.16) 0%, rgba(0,184,169,0.1) 100%);
    border: 1px solid var(--border-hi);
    text-align: center;
  }
  .ab-cta::before, .ab-cta::after { content: ''; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; }
  .ab-cta::before { width: 260px; height: 260px; background: rgba(162,114,255,0.3); top: -90px; left: -60px; }
  .ab-cta::after { width: 220px; height: 220px; background: rgba(0,184,169,0.25); bottom: -80px; right: -40px; }
  .ab-cta-inner { position: relative; z-index: 2; }
  .ab-cta h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--tx1); margin-bottom: 12px; }
  .ab-cta p { font-size: 14px; color: var(--tx2); max-width: 480px; margin: 0 auto 26px; line-height: 1.7; }
  
  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 980px) {
    .ab-hero-top { grid-template-columns: 1fr; text-align: center; }
    .ab-hero-content { text-align: center; }
    .ab-hero-sub { margin: 0 auto 30px; }
    .ab-hero-cta { justify-content: center; }
    .ab-hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
    .ab-stats { grid-template-columns: repeat(2, 1fr); }
    .ab-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-story-grid, .ab-mv-grid, .ab-why-grid { grid-template-columns: 1fr; gap: 32px; }
    .ab-values-grid, .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-why-visual { order: -1; }
  }
  @media (max-width: 560px) {
    .ab-values-grid, .ab-team-grid, .ab-gallery-grid { grid-template-columns: 1fr; }
    .ab-hero { padding: 40px 18px 0; }
    .ab-stats-wrap { padding: 0 18px 44px; }
    .ab-section { padding: 44px 18px; }
    .ab-cta { padding: 40px 22px; }
    .ab-breadcrumb { padding: 14px 18px 0; }
  }