/* ========================================================================
   ANVOW LLC — Business Consulting
   Global stylesheet
   ======================================================================== */

:root {
  --navy-900: #081530;
  --navy-800: #0b1e3f;
  --navy-700: #112a55;
  --navy-600: #1b3a6b;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --gold-400: #e3b261;
  --gold-500: #cf9a45;
  --ink: #0f1b2d;
  --slate-700: #33425b;
  --slate-500: #5b6b85;
  --slate-400: #8190a8;
  --line: #e4e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --bg-mist: #eef3fb;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(11, 30, 63, 0.06);
  --shadow-md: 0 18px 45px rgba(11, 30, 63, 0.10);
  --shadow-lg: 0 40px 90px rgba(8, 21, 48, 0.18);
  --grad-brand: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  --grad-gold: linear-gradient(120deg, #e3b261 0%, #cf9a45 100%);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", "Georgia", "Times New Roman", 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(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: var(--navy-800); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.32rem; }

p { color: var(--slate-700); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.section { padding: 110px 0; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: var(--bg-mist); }
.section--dark {
  background: radial-gradient(1100px 600px at 80% -10%, #14305f 0%, transparent 60%),
              radial-gradient(900px 500px at 0% 110%, #0e3a55 0%, transparent 55%),
              var(--navy-900);
  color: #d6e0f0;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #aebbd2; }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-500); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.section--dark .eyebrow { color: var(--cyan-400); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 50px; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 1.5px solid transparent; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.42); }
.btn--gold { background: var(--grad-gold); color: #2a1c00; box-shadow: 0 14px 30px rgba(207, 154, 69, 0.32); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(207, 154, 69, 0.42); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--navy-800); }
.btn--ghost:hover { border-color: var(--blue-400); color: var(--blue-500); transform: translateY(-3px); }
.btn--light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(11,30,63,0.06), 0 10px 30px rgba(11,30,63,0.06);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .logo-mark { width: 42px; height: 42px; flex: none; }
.brand .logo-text { display: flex; flex-direction: column; line-height: 1; }
.brand .logo-text b { font-size: 1.32rem; font-weight: 800; letter-spacing: 0.04em; color: var(--navy-800); }
.brand .logo-text span { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--slate-400); margin-top: 4px; font-weight: 600; }

/* header over dark hero (top, not scrolled) */
.site-header:not(.scrolled) .logo-text b { color: #fff; }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.86); }
.site-header:not(.scrolled) .nav-links a:hover { color: #fff; }
.site-header:not(.scrolled) .menu-toggle span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--slate-700); position: relative; transition: color 0.25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--grad-brand); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue-500); }
.site-header:not(.scrolled) .nav-links a.active { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--navy-800); border-radius: 3px; transition: all 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 188px 0 130px; overflow: hidden;
  background: radial-gradient(1200px 700px at 78% -5%, #16315f 0%, transparent 58%),
              radial-gradient(1000px 600px at -5% 100%, #0c3a57 0%, transparent 55%),
              var(--navy-900);
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { background: linear-gradient(120deg,#7dd3fc,#22d3ee 55%,#a5b4fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: 1.18rem; color: #b9c6dd; margin: 26px 0 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 50px; background: rgba(255,255,255,0.05);
  font-size: 0.82rem; color: #cfe0f5; margin-bottom: 26px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,0.18); }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat b { font-size: 2rem; font-weight: 800; color: #fff; display: block; font-family: var(--serif); }
.hero-stats .stat span { font-size: 0.85rem; color: #93a3c0; }

.hero-art { position: relative; }
.hero-art .art-card {
  position: absolute; background: rgba(255,255,255,0.96); border-radius: 16px; padding: 16px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-art .art-card small { color: var(--slate-500); font-size: 0.72rem; display: block; }
.hero-art .art-card b { color: var(--navy-800); font-size: 1.05rem; }
.hero-art .ac-1 { top: 8%; left: -6%; animation: float 6s ease-in-out infinite; }
.hero-art .ac-2 { bottom: 10%; right: -4%; animation: float 7s ease-in-out infinite 0.8s; }
.icon-badge { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.icon-badge svg { width: 22px; height: 22px; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* marquee logos */
.trustbar { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 78px; padding-top: 34px; }
.trustbar p { text-align: center; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #7f90af; margin-bottom: 22px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 46px; align-items: center; opacity: 0.85; }
.trust-logos span { font-weight: 700; font-size: 1.15rem; color: #b8c6df; letter-spacing: 0.02em; }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.statband .stat { text-align: center; }
.statband .stat b { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; font-family: var(--serif); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.statband .stat span { color: var(--slate-500); font-size: 0.95rem; font-weight: 500; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, #e8f0ff, #e4f7fb); margin-bottom: 22px;
}
.card .ic svg { width: 28px; height: 28px; stroke: var(--blue-500); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.98rem; }
.card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; color: var(--blue-500); font-size: 0.92rem; }
.card .more svg { width: 16px; height: 16px; transition: transform 0.3s; }
.card:hover .more svg { transform: translateX(5px); }

/* feature media split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split ul { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.split ul li { display: flex; gap: 14px; align-items: flex-start; }
.split ul li .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; flex: none; margin-top: 2px; }
.split ul li .tick svg { width: 14px; height: 14px; stroke: #fff; }
.split ul li b { color: var(--navy-800); display: block; }
.split ul li span { font-size: 0.95rem; color: var(--slate-500); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); }
.step .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 800; background: linear-gradient(120deg,#7dd3fc,#22d3ee); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.step h3 { color: #fff; margin: 14px 0 10px; font-size: 1.15rem; }
.step p { font-size: 0.92rem; }

/* ---------- Case studies ---------- */
.case {
  border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line);
  transition: all 0.35s var(--ease); display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.case .case-top { height: 184px; position: relative; overflow: hidden; }
.case .case-top svg { width: 100%; height: 100%; }
.case .tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.92); color: var(--blue-500); font-size: 0.74rem; font-weight: 700; padding: 6px 13px; border-radius: 50px; letter-spacing: 0.04em; }
.case .case-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.case h3 { font-size: 1.18rem; margin-bottom: 10px; }
.case p { font-size: 0.95rem; flex: 1; }
.case .result { display: flex; gap: 22px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.case .result div b { font-size: 1.5rem; font-weight: 800; color: var(--navy-800); font-family: var(--serif); }
.case .result div span { font-size: 0.78rem; color: var(--slate-500); display: block; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px;
  position: relative; transition: all 0.35s var(--ease);
}
.quote-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.quote-card .stars { color: var(--gold-400); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.quote-card blockquote { font-size: 1.04rem; color: var(--slate-700); line-height: 1.7; }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.quote-card .avatar { width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.05rem; }
.quote-card .who b { display: block; color: var(--navy-800); font-size: 0.98rem; }
.quote-card .who span { font-size: 0.84rem; color: var(--slate-500); }

/* ---------- Pricing ---------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 32px;
  transition: all 0.35s var(--ease); position: relative;
}
.price-card.featured { border-color: transparent; box-shadow: var(--shadow-lg); transform: scale(1.03); background: linear-gradient(180deg,#fff,#f7faff); }
.price-card.featured .ribbon { position: absolute; top: 22px; right: -2px; background: var(--grad-brand); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 6px 16px 6px 14px; border-radius: 50px 0 0 50px; letter-spacing: 0.05em; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card h3 { font-size: 1.25rem; }
.price-card .price { font-family: var(--serif); font-size: 2.8rem; font-weight: 800; color: var(--navy-800); margin: 18px 0 4px; }
.price-card .price span { font-size: 0.95rem; font-weight: 500; color: var(--slate-500); font-family: var(--font); }
.price-card .tier-desc { font-size: 0.92rem; color: var(--slate-500); min-height: 42px; }
.price-card ul { list-style: none; margin: 26px 0; display: grid; gap: 13px; }
.price-card ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--slate-700); }
.price-card ul li svg { width: 18px; height: 18px; stroke: var(--cyan-500); flex: none; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 28px; padding: 70px 60px; position: relative; overflow: hidden;
  background: radial-gradient(800px 400px at 85% -20%, #1e4fa0 0%, transparent 60%), var(--navy-800);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c6dd; max-width: 560px; margin: 16px auto 32px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb0cc; padding: 80px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.site-footer .brand .logo-text b { color: #fff; }
.site-footer p { color: #8294b4; font-size: 0.95rem; margin-top: 20px; max-width: 320px; }
.footer-contact { margin-top: 22px; display: grid; gap: 12px; }
.footer-contact a, .footer-contact span { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: #aebcd6; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--cyan-400); flex: none; margin-top: 2px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 20px; text-transform: uppercase; }
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer ul a { font-size: 0.93rem; color: #9fb0cc; transition: color 0.2s, padding 0.2s; }
.site-footer ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.86rem; color: #7286a6; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.12); display: grid; place-items: center; transition: all 0.25s; }
.footer-bottom .socials a:hover { background: var(--blue-500); border-color: var(--blue-500); }
.footer-bottom .socials svg { width: 17px; height: 17px; stroke: #cdd9ee; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  padding: 168px 0 84px; position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(900px 500px at 80% -30%, #16315f 0%, transparent 60%), var(--navy-900);
  color: #fff;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #b9c6dd; max-width: 620px; margin: 18px auto 0; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 9px; justify-content: center; font-size: 0.85rem; color: #8ba0c4; margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--cyan-400); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ic { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg,#e8f0ff,#e4f7fb); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 22px; height: 22px; stroke: var(--blue-500); }
.contact-info .info-item b { display: block; color: var(--navy-800); margin-bottom: 3px; }
.contact-info .info-item span, .contact-info .info-item a { color: var(--slate-500); font-size: 0.96rem; }
.contact-info .info-item a:hover { color: var(--blue-500); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.97rem; color: var(--ink); background: var(--bg-soft); transition: all 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.10); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.84rem; color: var(--slate-400); margin-top: 6px; }
.form-success { display: none; background: #ecfdf5; border: 1.5px solid #a7f3d0; color: #047857; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: 0.95rem; }
.form-success.show { display: flex; gap: 10px; align-items: center; }
.form-success svg { width: 20px; height: 20px; stroke: #047857; flex: none; }

/* ---------- FAQ / Accordion ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; transition: box-shadow 0.3s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-size: 1.05rem; font-weight: 600; color: var(--navy-800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform 0.3s; stroke: var(--blue-500); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 24px; font-size: 0.97rem; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; font-size: 1rem; }
.prose ul { margin: 0 0 18px 22px; }
.prose ul li { margin-bottom: 9px; color: var(--slate-700); }
.prose .updated { display: inline-block; background: var(--bg-mist); color: var(--slate-500); padding: 7px 16px; border-radius: 50px; font-size: 0.85rem; margin-bottom: 28px; }
.prose a { color: var(--blue-500); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.team-card .photo svg { width: 100%; height: 100%; }
.team-card h3 { font-size: 1.1rem; }
.team-card .role { color: var(--blue-500); font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 0.9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Value / icon list rows ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 18px; }
.value .ic svg { width: 24px; height: 24px; stroke: #fff; }
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { font-size: 0.94rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .statband { grid-template-columns: repeat(2,1fr); gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80%, 320px); background: #fff; flex-direction: column; align-items: flex-start; padding: 100px 32px 40px; gap: 22px; transform: translateX(100%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow-lg); }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--navy-800) !important; font-size: 1.1rem; }
  .menu-toggle { display: flex; z-index: 1001; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }
  .site-header:not(.scrolled) { background: rgba(8,21,48,0.7); backdrop-filter: blur(10px); }
  .section { padding: 76px 0; }
  .grid-3, .grid-4, .grid-2, .footer-grid, .values, .price-card.featured { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-band { padding: 50px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 150px 0 90px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
