/* =========================================================
   SEO Strategy Experts — Design System
   Fonts: Space Grotesk (display) + Inter (body)
   ========================================================= */

:root {
  /* Palette */
  --ink:        #0a0f1e;
  --ink-2:      #0f1730;
  --surface:    #ffffff;
  --bg:         #f6f8fc;
  --bg-2:       #eef2fa;
  --line:       #e4e9f2;
  --line-dark:  rgba(255,255,255,.10);

  --text:       #0a0f1e;
  --muted:      #5b6780;
  --muted-dark: #9aa6c2;

  --accent:     #14c98b;   /* emerald */
  --accent-2:   #b6f24a;   /* lime */
  --accent-3:   #34d9ff;   /* cyan glow */
  --accent-ink: #0a3d2c;

  --grad: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  --grad-soft: linear-gradient(120deg, rgba(20,201,139,.16), rgba(182,242,74,.16));

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:28px;

  --shadow:    0 18px 50px -24px rgba(10,15,30,.30);
  --shadow-lg: 0 40px 90px -40px rgba(10,15,30,.45);

  --maxw: 1180px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  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; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }

em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 15px 28px; border-radius: 50px; cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--grad); color: var(--accent-ink); box-shadow: 0 14px 30px -12px rgba(20,201,139,.55); }
.btn--primary:hover { box-shadow: 0 20px 40px -12px rgba(20,201,139,.7); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--accent); background: var(--grad-soft); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 40px;
}
.nav__logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; display: flex; align-items: center; gap: 9px; color: #fff; transition: color .3s ease; }
.nav__logo .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad);
  display: grid; place-items: center; color: var(--accent-ink); font-size: 17px; font-weight: 700;
  box-shadow: 0 8px 18px -8px rgba(20,201,139,.7);
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: 34px; }
.nav__links a { font-size: 15.5px; font-weight: 500; color: #fff; opacity: .85; transition: opacity .2s, color .2s; }
.nav__links a:hover, .nav__links a.active { opacity: 1; color: var(--accent-2); }
.nav__cta { display: inline-flex; }
.nav__right { display: flex; align-items: center; gap: 22px; }

/* When scrolled the nav gets a light background — switch text back to dark */
.nav.scrolled .nav__logo { color: var(--text); }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a:hover, .nav.scrolled .nav__links a.active { color: var(--accent); }
.nav.scrolled .nav__hamburger span { background: var(--text); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 30px; color: #fff; font-weight: 600; }
.mobile-menu a:hover { color: var(--accent-2); }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--ink); color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; pointer-events: none;
}
.hero__orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(20,201,139,.7), transparent 70%); top: -120px; right: -80px; }
.hero__orb--2 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(52,217,255,.45), transparent 70%); bottom: -160px; left: -120px; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2);
  border: 1px solid var(--line-dark); padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
  background: rgba(255,255,255,.03);
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(20,201,139,.25); }
.hero__headline { font-size: clamp(2.6rem, 6.5vw, 5.1rem); margin-bottom: 26px; }
.hero__headline em { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted-dark); max-width: 620px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 46px; color: var(--muted-dark); font-size: 14.5px; }
.hero__stars { color: var(--accent-2); letter-spacing: 2px; }

/* ---------- Marquee ---------- */
.marquee { background: var(--grad); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; animation: scroll 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--accent-ink); padding: 0 26px; opacity: .85; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Logos / trust bar ---------- */
.logos { background: var(--surface); border-bottom: 1px solid var(--line); padding: 38px 0; }
.logos__label { text-align: center; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-weight: 600; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 46px; }
.logos__row span { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--muted); opacity: .55; letter-spacing: -.02em; transition: opacity .2s; }
.logos__row span:hover { opacity: 1; }

/* ---------- Stats ---------- */
.stats { background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stats__item { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); }
.stats__number { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1; }
.stats__number span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats__label { color: var(--muted); font-size: 14.5px; margin-top: 12px; font-weight: 500; }

/* ---------- Section header ---------- */
.section-header { max-width: 660px; margin: 0 auto 64px; text-align: center; }
.section-header--left { text-align: left; margin-left: 0; }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.section-header h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 18px; }
.section-header p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--grad-soft);
  display: grid; place-items: center; font-size: 24px; margin-bottom: 22px; color: var(--accent);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.service-card__link { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--accent); display: inline-flex; gap: 6px; transition: gap .2s; }
.service-card__link:hover { gap: 11px; }

/* ---------- Feature / Why split ---------- */
.feature { background: var(--surface); }
.feature__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.feature__left h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.feature__left p { color: var(--muted); margin-bottom: 28px; font-size: 1.05rem; }
.feature__list { display: grid; gap: 18px; }
.feature-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card__icon { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: var(--accent-ink); font-size: 19px; font-weight: 700; }
.feature-card h4 { font-size: 1.08rem; margin-bottom: 5px; }
.feature-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Process ---------- */
.process { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.process .section-tag { color: var(--accent-2); }
.process .section-header h2 { color: #fff; }
.process .section-header p { color: var(--muted-dark); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step {
  padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.025); position: relative; transition: transform .3s, background .3s;
}
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,.05); }
.process-step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.process-step h4 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.process-step p { color: var(--muted-dark); font-size: 14.5px; }

/* ---------- AI / LLM section ---------- */
.ai { background: var(--bg); }
.ai__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.ai__panel {
  background: var(--ink); border-radius: var(--radius-lg); padding: 40px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ai__panel::after { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(20,201,139,.5), transparent 70%); filter: blur(60px); top: -80px; right: -60px; }
.ai__chat { position: relative; z-index: 2; display: grid; gap: 14px; }
.ai__bubble { background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: 14px; padding: 16px 18px; font-size: 14.5px; color: var(--muted-dark); }
.ai__bubble strong { color: #fff; }
.ai__bubble--me { background: var(--grad); color: var(--accent-ink); border: none; justify-self: end; max-width: 75%; font-weight: 500; }
.ai__bubble .cite { color: var(--accent-2); font-weight: 600; }
.ai__left h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 18px; }
.ai__left p { color: var(--muted); margin-bottom: 24px; font-size: 1.05rem; }
.ai__checks { display: grid; gap: 13px; margin-bottom: 30px; }
.ai__checks li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.ai__checks .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: var(--accent-ink); display: grid; place-items: center; font-size: 13px; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--surface); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; }
.testimonial-card__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 1.02rem; line-height: 1.65; margin-bottom: 24px; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 13px; }
.testimonial-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--accent-ink); }
.testimonial-card__author strong { display: block; font-size: 15px; }
.testimonial-card__author span { font-size: 13.5px; color: var(--muted); }

/* ---------- Pricing / packages ---------- */
.packages { background: var(--bg); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package--featured { background: var(--ink); color: #fff; border-color: transparent; position: relative; }
.package--featured .package__price, .package--featured h3 { color: #fff; }
.package__badge { position: absolute; top: 20px; right: 20px; background: var(--grad); color: var(--accent-ink); font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: 50px; font-family: var(--font-display); }
.package h3 { font-size: 1.3rem; margin-bottom: 6px; }
.package__tagline { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.package--featured .package__tagline { color: var(--muted-dark); }
.package__price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.package__price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.package--featured .package__price span { color: var(--muted-dark); }
.package__period { font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.package ul { display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.package li { display: flex; gap: 11px; font-size: 14.5px; align-items: flex-start; }
.package li .tick { flex: none; color: var(--accent); font-weight: 700; }
.package--featured li .tick { color: var(--accent-2); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 0 0 110px; }
.cta-banner__inner {
  background: var(--ink); border-radius: var(--radius-lg); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-banner__inner::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 75%); }
.cta-banner__orb { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(20,201,139,.5), transparent 70%); filter: blur(70px); top:-120px; left: 50%; transform: translateX(-50%); }
.cta-banner__inner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p { color: var(--muted-dark); font-size: 1.1rem; max-width: 520px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--muted-dark); padding: 76px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer__brand .nav__logo { color: #fff; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; max-width: 280px; margin-bottom: 16px; }
.footer__email a { color: var(--accent-2); font-weight: 500; }
.footer__links h5 { color: #fff; font-family: var(--font-display); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 14.5px; transition: color .2s; }
.footer__links a:hover { color: var(--accent-2); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; }

/* ---------- Sub-page hero ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 170px 0 90px; position: relative; overflow: hidden; text-align: center; }
.page-hero__orb { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(20,201,139,.45), transparent 70%); filter: blur(80px); top: -120px; right: -60px; }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 18px; }
.page-hero p { color: var(--muted-dark); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 8px; font-size: 13.5px; color: var(--muted-dark); margin-bottom: 22px; letter-spacing: .03em; }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span { color: var(--accent-2); }

/* ---------- Services detail rows ---------- */
.svc-detail { background: var(--surface); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: none; }
.svc-row--rev .svc-row__media { order: 2; }
.svc-row__num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: .1em; margin-bottom: 14px; }
.svc-row h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.svc-row > div > p { color: var(--muted); margin-bottom: 20px; }
.svc-row__list { display: grid; gap: 11px; }
.svc-row__list li { display: flex; gap: 11px; font-size: 15px; }
.svc-row__list .tick { flex: none; color: var(--accent); font-weight: 700; }
.svc-row__media {
  background: var(--ink); border-radius: var(--radius-lg); min-height: 280px; padding: 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.svc-row__media::after { content:''; position:absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(20,201,139,.45), transparent 70%); filter: blur(60px); bottom: -80px; right: -60px; }
.svc-mini { position: relative; z-index: 2; display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 12px; padding: 14px 16px; }
.svc-mini__bar { flex: 1; height: 8px; border-radius: 50px; background: rgba(255,255,255,.1); overflow: hidden; }
.svc-mini__bar i { display: block; height: 100%; background: var(--grad); border-radius: 50px; }
.svc-mini span { color: #fff; font-size: 13.5px; font-family: var(--font-display); font-weight: 600; white-space: nowrap; }

/* ---------- About ---------- */
.about-story { background: var(--surface); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story__media { background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; }
.about-story__media .stats__grid { grid-template-columns: 1fr 1fr; }
.about-story p { color: var(--muted); margin-bottom: 18px; }
.values { background: var(--bg); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.value-card__icon { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); color: var(--accent); display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; }
.value-card h4 { font-size: 1.18rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 15px; }
.team { background: var(--surface); }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card__avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius); background: var(--grad); display: grid; place-items: center; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--accent-ink); margin-bottom: 16px; }
.team-card h4 { font-size: 1.12rem; }
.team-card span { color: var(--accent); font-size: 14px; font-weight: 500; }

/* ---------- Contact ---------- */
.contact { background: var(--surface); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.contact__info > p { color: var(--muted); margin-bottom: 32px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact__item .icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--accent); display: grid; place-items: center; font-size: 20px; }
.contact__item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact__item a, .contact__item p { color: var(--muted); font-size: 15px; }
.contact__item a:hover { color: var(--accent); }
.form {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { margin-bottom: 20px; }
.form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; font-family: var(--font-display); }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15.5px; background: var(--surface); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,201,139,.15); }
.form textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form__success { display: none; text-align: center; padding: 30px; background: var(--grad-soft); border-radius: var(--radius-sm); margin-top: 18px; font-weight: 500; }
.form__success.show { display: block; }

/* FAQ */
.faq { background: var(--bg); }
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text); }
.faq-item__q .plus { flex: none; color: var(--accent); font-size: 1.4rem; transition: transform .3s; }
.faq-item.open .faq-item__q .plus { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav, .nav.scrolled { padding: 14px 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .feature__grid, .ai__grid, .about-story__grid, .contact__grid, .svc-row, .svc-row--rev .svc-row__media { grid-template-columns: 1fr; gap: 36px; }
  .svc-row--rev .svc-row__media { order: 0; }
  .stats__grid, .process__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .testimonials__grid, .values__grid, .packages__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .cta-banner__inner { padding: 48px 26px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
