/* ============================================================
   Alashawn Services LLC — Global Stylesheet
   ============================================================ */

:root {
  --navy-900: #07111f;
  --navy-800: #0a1628;
  --navy-700: #0d1f33;
  --navy-600: #122a44;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --gold-500: #f0b429;
  --gold-400: #fbbf24;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(7,17,31,.08);
  --shadow-md: 0 8px 24px rgba(7,17,31,.10);
  --shadow-lg: 0 24px 60px rgba(7,17,31,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,1,.36,1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--display); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; color: var(--navy-900); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy-800); color: var(--gray-200); }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: var(--white); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 60px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; box-shadow: 0 10px 28px rgba(13,148,136,.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(13,148,136,.45); }
.btn--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); box-shadow: 0 10px 28px rgba(240,180,41,.35); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(240,180,41,.45); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-600); }
.btn--outline:hover { background: var(--teal-600); color: #fff; transform: translateY(-3px); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all .4s var(--ease);
}
.header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -.02em; transition: color .4s; }
.brand__tag { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-400); font-weight: 600; }
.header.scrolled .brand__name { color: var(--navy-900); }
.menu { display: flex; align-items: center; gap: 32px; }
.menu a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.86); transition: color .25s; position: relative; }
.menu a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--teal-400); transition: width .3s var(--ease); }
.menu a:hover::after, .menu a.active::after { width: 100%; }
.menu a:hover, .menu a.active { color: #fff; }
.header.scrolled .menu a { color: var(--gray-700); }
.header.scrolled .menu a:hover, .header.scrolled .menu a.active { color: var(--teal-700); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display:flex; align-items:center; gap:8px; font-weight:600; font-size:14px; color:#fff; }
.header.scrolled .nav__phone { color: var(--navy-800); }
.nav__phone svg { width:16px;height:16px; color: var(--teal-400); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: all .3s; }
.header.scrolled .burger span { background: var(--navy-800); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(7,17,31,.94) 0%, rgba(10,22,40,.82) 45%, rgba(13,148,136,.35) 100%); }
.hero__content { max-width: 720px; padding: 140px 0 80px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: rgba(45,212,191,.12); border: 1px solid rgba(45,212,191,.3); border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-400); margin-bottom: 26px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 4px rgba(45,212,191,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.6} }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); color: #fff; margin-bottom: 24px; }
.hero h1 .accent { background: linear-gradient(120deg, var(--teal-400), var(--gold-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,.85); max-width: 600px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }
.hero__stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: #fff; }
.hero__stat .num .accent { color: var(--teal-400); }
.hero__stat .lbl { font-size: 13px; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; display:flex; flex-direction:column; align-items:center; gap:10px; }
.scroll-cue .line { width:1px; height:40px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drop 2s infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- section heading ---------- */
.head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.head .eyebrow { background: rgba(13,148,136,.1); border-color: rgba(13,148,136,.25); color: var(--teal-700); }
.head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.head p { font-size: 1.08rem; color: var(--gray-500); }
.head--left { text-align: left; margin-left: 0; }

/* ---------- trust bar ---------- */
.trust { padding: 40px 0; border-bottom: 1px solid var(--gray-200); }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust__label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); font-weight: 600; }
.trust__badges { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust__badge { display:flex; align-items:center; gap:10px; font-weight:700; color: var(--gray-600); font-family: var(--display); font-size: 1.05rem; }
.trust__badge svg { width: 26px; height: 26px; color: var(--teal-600); }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 38px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; overflow: hidden; }
.svc-card::before { content:""; position:absolute; top:0; left:0; width:100%; height:4px; background: linear-gradient(90deg, var(--teal-500), var(--gold-400)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { width: 62px; height: 62px; border-radius: 16px; background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(13,148,136,.08)); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.svc-card__icon svg { width: 30px; height: 30px; color: var(--teal-700); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.svc-card p { color: var(--gray-500); font-size: .98rem; margin-bottom: 18px; }
.svc-card ul { display: flex; flex-direction: column; gap: 8px; }
.svc-card li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--gray-600); }
.svc-card li svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; }
.svc-card__link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); font-weight: 600; font-size: .95rem; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .3s; }
.svc-card:hover .svc-card__link svg { transform: translateX(5px); }

/* ---------- feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.split__media--frame::after { content:""; position:absolute; inset: 22px -22px -22px 22px; border: 2px solid var(--teal-500); border-radius: var(--radius); z-index:-1; }
.split__badge { position: absolute; bottom: -26px; right: -10px; background: #fff; border-radius: var(--radius-sm); padding: 22px 26px; box-shadow: var(--shadow-lg); display:flex; align-items:center; gap:16px; }
.split__badge .big { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: var(--teal-700); line-height:1; }
.split__badge .small { font-size: 13px; color: var(--gray-500); max-width: 120px; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 18px; }
.feature-item__icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; background: linear-gradient(135deg, rgba(20,184,166,.14), rgba(240,180,41,.1)); display:flex; align-items:center; justify-content:center; }
.feature-item__icon svg { width: 24px; height: 24px; color: var(--teal-700); }
.feature-item h4 { font-size: 1.12rem; margin-bottom: 5px; }
.feature-item p { color: var(--gray-500); font-size: .96rem; }

/* ---------- stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat-block .num { font-family: var(--display); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 800; background: linear-gradient(120deg, var(--teal-400), var(--gold-400)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; }
.stat-block .lbl { font-size: 1rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step { position: relative; padding: 36px 26px; background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--display); font-size: 3rem; font-weight: 800; color: var(--gray-100); position: absolute; top: 14px; right: 22px; line-height:1; }
.step__icon { width: 56px; height:56px; border-radius:14px; background: var(--navy-800); display:flex; align-items:center; justify-content:center; margin-bottom: 20px; position:relative; z-index:1; }
.step__icon svg { width: 26px; height:26px; color: var(--teal-400); }
.step h4 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { color: var(--gray-500); font-size: .95rem; }

/* ---------- projects / case studies ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.proj-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 360px; box-shadow: var(--shadow-md); cursor: pointer; }
.proj-card img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj-card:hover img { transform: scale(1.08); }
.proj-card__overlay { position:absolute; inset:0; background: linear-gradient(to top, rgba(7,17,31,.92) 8%, rgba(7,17,31,.25) 55%, transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding: 30px; }
.proj-card__cat { font-size: 12px; letter-spacing:.12em; text-transform:uppercase; color: var(--teal-400); font-weight:600; margin-bottom: 8px; }
.proj-card h3 { color:#fff; font-size: 1.4rem; margin-bottom: 8px; }
.proj-card p { color: rgba(255,255,255,.78); font-size: .94rem; transform: translateY(8px); opacity: 0; transition: all .4s var(--ease); }
.proj-card:hover p { transform: translateY(0); opacity: 1; }

/* ---------- testimonials ---------- */
.tst-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.tst-card { background:#fff; border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tst-card__stars { display:flex; gap:3px; margin-bottom:18px; }
.tst-card__stars svg { width:18px;height:18px; color: var(--gold-500); }
.tst-card__quote { font-size: 1.04rem; color: var(--gray-700); margin-bottom: 24px; font-style: italic; }
.tst-card__author { display:flex; align-items:center; gap:14px; }
.tst-card__author img { width: 50px; height:50px; border-radius:50%; object-fit:cover; }
.tst-card__author .name { font-weight:700; color: var(--navy-800); font-size: .98rem; }
.tst-card__author .role { font-size: .85rem; color: var(--gray-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow:hidden; border-radius: 28px; padding: 70px 60px; background: linear-gradient(120deg, var(--navy-800), var(--teal-700)); color:#fff; text-align:center; }
.cta-band::before { content:""; position:absolute; top:-60%; right:-10%; width: 480px; height:480px; background: radial-gradient(circle, rgba(240,180,41,.25), transparent 70%); }
.cta-band h2 { color:#fff; font-size: clamp(2rem,3.6vw,2.8rem); margin-bottom: 16px; position:relative; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 560px; margin: 0 auto 32px; position:relative; }
.cta-band .hero__actions { justify-content:center; margin-bottom:0; position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: var(--gray-400); padding: 76px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand__name { color:#fff; }
.footer__about p { margin: 22px 0; font-size: .95rem; max-width: 320px; }
.footer__social { display:flex; gap:12px; }
.footer__social a { width: 40px; height:40px; border-radius:10px; background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition: all .3s; }
.footer__social a:hover { background: var(--teal-600); transform: translateY(-3px); }
.footer__social svg { width:18px;height:18px; color:#fff; }
.footer h5 { color:#fff; font-family: var(--display); font-size: 1.05rem; margin-bottom: 22px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: .95rem; transition: color .25s, padding .25s; }
.footer__links a:hover { color: var(--teal-400); padding-left: 5px; }
.footer__contact li { display:flex; gap:12px; margin-bottom:16px; font-size:.95rem; align-items:flex-start; }
.footer__contact svg { width:18px;height:18px; color: var(--teal-400); flex-shrink:0; margin-top:3px; }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; padding: 26px 0; flex-wrap:wrap; gap:14px; font-size: .88rem; }
.footer__bottom a:hover { color: var(--teal-400); }

/* ---------- page hero (subpages) ---------- */
.page-hero { position: relative; padding: 170px 0 90px; color:#fff; overflow:hidden; }
.page-hero__bg { position:absolute; inset:0; z-index:-2; }
.page-hero__bg img { width:100%;height:100%;object-fit:cover; }
.page-hero__overlay { position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg, rgba(7,17,31,.93), rgba(13,148,136,.55)); }
.page-hero h1 { color:#fff; font-size: clamp(2.4rem,4.6vw,3.6rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 620px; }
.crumbs { display:flex; gap:10px; align-items:center; font-size:.9rem; color: rgba(255,255,255,.7); margin-bottom:22px; }
.crumbs a:hover { color: var(--teal-400); }
.crumbs span { color: var(--teal-400); }

/* ---------- about values ---------- */
.values-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value { padding: 34px 30px; border-radius: var(--radius); background:#fff; border:1px solid var(--gray-200); transition: all .4s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__icon { width:58px;height:58px;border-radius:14px;background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(240,180,41,.1)); display:flex;align-items:center;justify-content:center;margin-bottom:20px; }
.value__icon svg { width:28px;height:28px;color: var(--teal-700); }
.value h4 { font-size:1.2rem; margin-bottom:10px; }
.value p { color: var(--gray-500); font-size:.96rem; }

/* ---------- team ---------- */
.team-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.team-card { text-align:center; }
.team-card__photo { position:relative; border-radius: var(--radius); overflow:hidden; margin-bottom: 18px; height: 300px; }
.team-card__photo img { width:100%;height:100%;object-fit:cover; transition: transform .6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card h4 { font-size:1.15rem; margin-bottom:4px; }
.team-card .role { color: var(--teal-700); font-weight:600; font-size:.92rem; }

/* ---------- contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap: 26px; }
.contact-info__item { display:flex; gap:18px; align-items:flex-start; }
.contact-info__item .ic { width:54px;height:54px;flex-shrink:0;border-radius:14px;background: linear-gradient(135deg,var(--teal-500),var(--teal-700)); display:flex;align-items:center;justify-content:center; }
.contact-info__item .ic svg { width:24px;height:24px;color:#fff; }
.contact-info__item h4 { font-size:1.1rem; margin-bottom:4px; }
.contact-info__item p, .contact-info__item a { color: var(--gray-500); font-size:.98rem; }
.contact-info__item a:hover { color: var(--teal-700); }
.form { background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:8px; color: var(--navy-800); }
.field input, .field select, .field textarea { width:100%; padding: 14px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: inherit; font-size: .98rem; transition: border-color .25s, box-shadow .25s; background: var(--gray-50); }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(20,184,166,.12); background:#fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size:.85rem; color: var(--gray-400); margin-top: 14px; text-align:center; }
.form-success { display:none; background: rgba(20,184,166,.1); border:1px solid var(--teal-500); color: var(--teal-700); padding: 16px; border-radius:10px; margin-bottom: 20px; font-weight:600; }
.form-success.show { display:block; }

/* ---------- legal pages ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--navy-900); }
.legal h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--gray-600); margin-bottom: 14px; font-size: 1rem; }
.legal ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }
.legal .updated { color: var(--gray-400); font-style: italic; margin-bottom: 30px; }
.legal strong { color: var(--navy-800); }

/* ---------- accordion (FAQ) ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 24px 0; font-family: var(--display); font-weight:600; font-size: 1.12rem; color: var(--navy-800); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap: 20px; }
.faq-q svg { width:22px;height:22px;color: var(--teal-600); transition: transform .3s; flex-shrink:0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--gray-500); padding-bottom: 24px; }

/* ---------- reveal animations ---------- */
.reveal { opacity:0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform: none; }
.reveal[data-d="1"]{transition-delay:.1s}.reveal[data-d="2"]{transition-delay:.2s}.reveal[data-d="3"]{transition-delay:.3s}.reveal[data-d="4"]{transition-delay:.4s}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .svc-grid, .proj-grid, .tst-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .steps, .team-grid, .stats-band { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split__media--frame::after { display:none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu, .nav__phone { display: none; }
  .burger { display: flex; }
  .menu.open { display: flex; position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 340px; background: var(--navy-800); flex-direction: column; padding: 100px 36px; gap: 26px; box-shadow: -20px 0 60px rgba(0,0,0,.4); z-index: 999; }
  .menu.open a { color: #fff; font-size: 1.2rem; }
  .section { padding: 70px 0; }
  .cta-band { padding: 50px 28px; }
  .hero__stats { gap: 28px; }
  .svc-grid, .proj-grid, .tst-grid, .values-grid, .steps, .team-grid, .stats-band, .form-row, .footer__top { grid-template-columns: 1fr; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(7,17,31,.5); z-index: 998; display:none; }
  .nav-overlay.show { display: block; }
}
