/* ============================================================
   Glowwin Technology Limited — Global Stylesheet
   Style: minimalist, premium, light theme
   ============================================================ */

:root {
  --navy-950: #060D1E;
  --navy-900: #0A1730;
  --navy-800: #0E2147;
  --navy-700: #16305F;
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --cyan-400: #38BDF8;
  --cyan-300: #7DD3FC;
  --ink-900: #0F1B2D;
  --ink-700: #2C3A50;
  --ink-600: #47566B;
  --ink-400: #7C8BA1;
  --ink-300: #A6B3C6;
  --bg-soft: #F5F8FC;
  --bg-white: #FFFFFF;
  --line: #E7EDF5;
  --grad-main: linear-gradient(120deg, #2563EB 0%, #38BDF8 100%);
  --grad-soft: linear-gradient(120deg, rgba(37,99,235,.08), rgba(56,189,248,.10));
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-xs: 0 1px 3px rgba(10,23,48,.06);
  --shadow-sm: 0 4px 14px rgba(10,23,48,.07);
  --shadow-md: 0 14px 34px rgba(10,23,48,.10);
  --shadow-lg: 0 30px 70px rgba(10,23,48,.16);
  --font-head: "Sora", "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.section-sub {
  font-size: 16.5px;
  color: var(--ink-600);
  max-width: 620px;
  margin-top: 14px;
}
.center .section-sub { margin-inline: auto; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37,99,235,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,99,235,.42); }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 10px 30px rgba(6,13,30,.25);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(6,13,30,.32); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 22px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(10,23,48,.06);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity .3s ease;
}
/* Two logo variants: white version over dark hero, dark version when scrolled */
.nav-logo-img.is-light  { display: block; }
.nav-logo-img.is-dark   { display: none; }
.nav.scrolled .nav-logo-img.is-light { display: none; }
.nav.scrolled .nav-logo-img.is-dark  { display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav.scrolled .nav-links a { color: var(--ink-700); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-main);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #93C5FD; }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--blue-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .25s ease;
}
.nav.scrolled .nav-burger span { background: var(--navy-900); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% -10%, rgba(56,189,248,.22), transparent 62%),
    radial-gradient(760px 520px at 8% 30%, rgba(37,99,235,.28), transparent 60%),
    radial-gradient(600px 420px at 55% 115%, rgba(37,99,235,.16), transparent 60%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--cyan-300);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.2);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.35); }
  50% { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6.2vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-title .grad-text {
  background: linear-gradient(110deg, #60A5FA, #38BDF8 55%, #7DD3FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(226,234,247,.82);
  max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(226,234,247,.55);
  display: flex; align-items: center; gap: 8px;
}
.hero-note svg { flex: none; }

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(125,211,252,.4); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.stat-num .suffix { color: var(--cyan-300); }
.stat-label { margin-top: 8px; font-size: 13.5px; color: rgba(226,234,247,.66); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: 185px 0 90px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 420px at 85% -20%, rgba(56,189,248,.20), transparent 60%),
    radial-gradient(700px 460px at 5% 40%, rgba(37,99,235,.24), transparent 60%);
}
.page-hero::after {
  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: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.page-hero .crumbs {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px;
  color: rgba(226,234,247,.6);
  margin-bottom: 18px;
}
.page-hero .crumbs a { color: var(--cyan-300); }
.page-hero .crumbs svg { width: 14px; height: 14px; }
.page-hero p.lead {
  margin-top: 18px;
  font-size: 17.5px;
  color: rgba(226,234,247,.8);
  max-width: 660px;
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto 60px; }

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

.card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.25); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  background: var(--grad-soft);
  border: 1px solid rgba(37,99,235,.14);
  display: grid; place-items: center;
  color: var(--blue-600);
  margin-bottom: 22px;
}
.card-icon svg { width: 27px; height: 27px; }
.card-title { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--navy-900); letter-spacing: -0.01em; }
.card-text { margin-top: 10px; font-size: 14.8px; color: var(--ink-600); }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-size: 14px; font-weight: 600;
  color: var(--blue-600);
}
.card-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(37,99,235,.15);
  margin-bottom: 18px;
}
.step h3 { font-family: var(--font-head); font-size: 17.5px; font-weight: 600; color: var(--navy-900); }
.step p { margin-top: 8px; font-size: 14.5px; color: var(--ink-600); }
.step::after {
  content: "";
  position: absolute;
  top: 28px; left: 52px; right: -34px;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

/* ---------- Feature list (why choose) ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 44px; }
.feature { display: flex; gap: 18px; }
.feature-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid rgba(37,99,235,.14);
  display: grid; place-items: center;
  color: var(--blue-600);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--navy-900); }
.feature p { margin-top: 6px; font-size: 14.5px; color: var(--ink-600); }

/* ---------- Partners ---------- */
.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}
.partner-item {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: .02em;
  transition: all .3s ease;
  text-align: center;
}
.partner-item:hover { color: var(--blue-600); border-color: rgba(37,99,235,.3); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.partner-item span { font-size: 11px; font-weight: 500; color: var(--ink-300); letter-spacing: .12em; text-transform: uppercase; display: block; margin-top: 2px; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 54px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -30px; right: 30px;
  font-family: Georgia, serif;
  font-size: 220px;
  color: rgba(255,255,255,.07);
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  max-width: 860px;
  letter-spacing: -0.01em;
}
.testimonial footer { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-main);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex: none;
}
.testimonial cite { font-style: normal; }
.testimonial cite strong { display: block; font-size: 15px; font-weight: 600; }
.testimonial cite span { font-size: 13px; color: rgba(226,234,247,.6); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--grad-main);
  color: #fff;
  padding: 66px 60px;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 90% -20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(460px 260px at 8% 120%, rgba(255,255,255,.16), transparent 60%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.cta-band p { margin: 14px auto 32px; max-width: 560px; color: rgba(255,255,255,.88); font-size: 16px; }
.cta-band .btn-light { margin-right: 12px; }

/* ---------- Split (alternating) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media {
  border-radius: var(--radius-xl);
  background: var(--grad-soft);
  border: 1px solid var(--line);
  min-height: 380px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.split .media svg.hero-art { width: 78%; height: auto; }
.split h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.02em; color: var(--navy-900); line-height: 1.22; }
.split .lead { margin-top: 16px; font-size: 16px; color: var(--ink-600); }
.check-list { margin-top: 24px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-700); }
.check-list svg { width: 20px; height: 20px; color: var(--blue-600); flex: none; margin-top: 3px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-600), var(--cyan-400));
  border-radius: 2px;
}
.timeline-item { position: relative; padding: 0 0 44px 26px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue-600);
  box-shadow: 0 0 0 5px rgba(37,99,235,.15);
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: .06em;
}
.timeline-item h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--navy-900); margin-top: 6px; }
.timeline-item p { margin-top: 8px; font-size: 15px; color: var(--ink-600); max-width: 640px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(37,99,235,.18);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-600);
}
.team-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--navy-900); }
.team-card .role { font-size: 13.5px; color: var(--blue-600); font-weight: 500; margin-top: 4px; }
.team-card .bio { font-size: 13.5px; color: var(--ink-600); margin-top: 12px; }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-main);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(37,99,235,.3);
}
.value-card .icon svg { width: 24px; height: 24px; }
.value-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--navy-900); }
.value-card p { margin-top: 10px; font-size: 14.5px; color: var(--ink-600); }

/* ---------- Service tabs / offerings ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.offer-item {
  display: flex; gap: 18px;
  padding: 26px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.offer-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(37,99,235,.28); }
.offer-item .oi { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft); border: 1px solid rgba(37,99,235,.14); display: grid; place-items: center; color: var(--blue-600); }
.offer-item .oi svg { width: 22px; height: 22px; }
.offer-item h4 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy-900); }
.offer-item p { margin-top: 6px; font-size: 14px; color: var(--ink-600); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.info-card {
  display: flex; gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  margin-bottom: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(37,99,235,.28); }
.info-card .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(37,99,235,.14); display: grid; place-items: center; color: var(--blue-600); }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--font-head); font-size: 16.5px; font-weight: 600; color: var(--navy-900); }
.info-card p { margin-top: 5px; font-size: 14.5px; color: var(--ink-600); line-height: 1.65; }
.info-card a { color: var(--blue-600); font-weight: 500; }

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy-900); letter-spacing: -0.015em; }
.form-card > p { margin-top: 8px; font-size: 14.5px; color: var(--ink-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field label span { color: var(--blue-600); }
.input, .select, .textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--bg-soft);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  outline: none;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2347566B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.textarea { min-height: 130px; resize: vertical; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 12.5px; color: var(--ink-400); margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: rgba(37,99,235,.35); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
}
.faq-q .chev { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; color: var(--blue-600); transition: transform .3s ease; }
.faq-q .chev svg { width: 14px; height: 14px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14.8px; color: var(--ink-600); }

/* ---------- Offices ---------- */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.office-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.office-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.office-card .flag {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-main);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 18px;
}
.office-card .flag svg { width: 22px; height: 22px; }
.office-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--navy-900); }
.office-card .tag { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); background: var(--grad-soft); padding: 3px 10px; border-radius: 999px; }
.office-card p { margin-top: 12px; font-size: 14px; color: var(--ink-600); line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(226,234,247,.72); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 90% -10%, rgba(37,99,235,.18), transparent 60%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; position: relative; }
.footer-brand p { margin-top: 18px; font-size: 14px; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  color: rgba(226,234,247,.75);
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--grad-main); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover { color: var(--cyan-300); padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; font-size: 14px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--cyan-300); flex: none; margin-top: 4px; }
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(226,234,247,.5);
  position: relative;
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a:hover { color: var(--cyan-300); }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 34px;
  transform: translate(-50%, 24px);
  z-index: 300;
  background: var(--navy-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  max-width: min(420px, calc(100vw - 40px));
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { flex: none; width: 18px; height: 18px; color: #34D399; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step::after { display: none; }
  .partners-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split .media { min-height: 300px; }
  .value-grid, .office-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 4%; right: 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    border: 1px solid var(--line);
  }
  .nav-links.open a { padding: 12px 14px; border-radius: 10px; font-size: 15.5px; color: var(--navy-900); }
  .nav-links.open a:hover, .nav-links.open a.active { color: var(--blue-600); background: var(--bg-soft); }
  .nav-links.open a::after { display: none; }
  .grid-2, .grid-3, .features, .offer-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .hero { padding: 160px 0 90px; }
  .page-hero { padding: 160px 0 70px; }
  .testimonial { padding: 40px 28px; }
  .cta-band { padding: 48px 28px; }
  .cta-band .btn-light { margin: 0 0 12px 0; }
}

@media (max-width: 560px) {
  .grid-4, .team-grid, .hero-stats, .steps, .value-grid, .office-grid, .partners-row, .footer-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 20px; }
  .form-card { padding: 28px 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { gap: 12px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
