/* ============================================================
   MANI GROUPS — Global Stylesheet
   Theme: Navy / Purple (SharePoint & Microsoft 365 solutions)
   ============================================================ */

:root {
  --navy-900: #040a26;
  --navy-800: #071033;
  --navy-700: #0b1745;
  --navy-600: #122057;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --cyan-400: #22d3ee;
  --ink: #0f172a;
  --muted: #5b6478;
  --line: #e6e9f2;
  --soft: #f5f7fc;
  --white: #ffffff;
  --grad: linear-gradient(90deg, #7c3aed, #3b82f6);
  --grad-soft: linear-gradient(135deg, #7c3aed22, #3b82f622);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 17, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 17, 51, 0.16);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--purple-600);
  color: #fff; padding: 10px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ Top utility bar ============ */
.topbar {
  background: var(--navy-900);
  color: #c7cbe3;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contacts a, .topbar-contacts span {
  display: inline-flex; align-items: center; gap: 7px; color: #c7cbe3;
}
.topbar-contacts svg { width: 14px; height: 14px; fill: var(--purple-400); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social span { opacity: 0.8; }
.topbar-social a svg { width: 15px; height: 15px; fill: #c7cbe3; transition: fill 0.2s; }
.topbar-social a:hover svg { fill: var(--purple-400); }

/* ============ Header / Navigation ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { width: min(1360px, 96%); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 46px; height: 46px;
  object-fit: contain;
  flex: none;
}
.logo-text { line-height: 1.15; white-space: nowrap; }
.logo-text strong {
  display: block; font-size: 1.22rem; font-weight: 900; color: var(--navy-800);
  letter-spacing: 0.02em;
}
.logo-text small { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.02em; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 12px; font-size: 0.91rem; font-weight: 600; color: #33405c;
  border-radius: 8px; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a[aria-current="page"] { color: var(--purple-600); }
.nav-links > li > a[aria-current="page"] {
  position: relative;
}
.nav-links > li > a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2.5px; background: var(--grad); border-radius: 2px;
}
.caret { width: 9px; height: 9px; fill: currentColor; opacity: 0.6; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s ease;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 9px 13px; font-size: 0.88rem; font-weight: 500;
  color: #33405c; border-radius: 8px;
}
.dropdown a:hover { background: var(--soft); color: var(--purple-600); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 700; font-size: 0.93rem; cursor: pointer;
  border: none; transition: all 0.22s ease; font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(124, 58, 237, 0.45); }
.btn-outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-outline-dark {
  background: transparent; color: var(--purple-600); border: 1.5px solid var(--purple-500);
}
.btn-outline-dark:hover { background: var(--purple-600); color: #fff; }
.btn-white {
  background: #fff; color: var(--navy-800);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1.5px solid var(--line);
  border-radius: 9px; background: #fff; cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(700px 420px at 10% 90%, rgba(59, 130, 246, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, #1a1060);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(closest-side at 60% 50%, black, transparent);
}
.hero-inner {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
  padding: 76px 0 84px;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 900; margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  color: #b9bfdd; font-size: 1.06rem; max-width: 32rem; margin-bottom: 26px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 30px;
  border-block: 1px solid rgba(255,255,255,0.12);
}
.hero-badges .badge {
  display: flex; align-items: center; gap: 8px; padding: 12px 13px 12px 0;
  margin-right: 13px; font-size: 0.8rem; white-space: nowrap;
}
.hero-badges .badge + .badge { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 13px; }
.badge-ms {
  width: 20px; height: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  flex: none;
}
.badge-ms i { display: block; }
.badge-ms i:nth-child(1) { background: #f25022; }
.badge-ms i:nth-child(2) { background: #7fba00; }
.badge-ms i:nth-child(3) { background: #00a4ef; }
.badge-ms i:nth-child(4) { background: #ffb900; }
.badge b { display: block; font-size: 0.82rem; }
.badge small { color: #9aa2c7; font-size: 0.7rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — dashboard mockup + orbit icons */
.hero-visual { position: relative; min-height: 430px; }
.orbit-icon {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 0.68rem; color: #c7cbe3; font-weight: 600;
}
.orbit-icon .oi {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
.orbit-icon .oi svg { width: 24px; height: 24px; fill: #a78bfa; }
.orbit-icon.oi-main .oi {
  width: 72px; height: 72px; background: #fff;
}
.orbit-icon.oi-main .oi svg { width: 38px; height: 38px; fill: #036c70; }

.oi-1 { top: 2%; left: 6%; }
.oi-main { top: -4%; left: 42%; }
.oi-2 { top: 4%; right: 2%; }
.oi-3 { top: 38%; left: -3%; }
.oi-4 { top: 36%; right: -4%; }
.oi-5 { bottom: 4%; left: 6%; }
.oi-6 { bottom: 2%; right: 4%; }

.dash {
  position: absolute; top: 14%; left: 9%; right: 9%; bottom: 8%;
  background: linear-gradient(180deg, #10193f, #0c1334);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden; z-index: 2;
}
.dash-top {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #d7dbf2; font-size: 0.78rem; font-weight: 600;
}
.dash-top .sp-dot {
  width: 22px; height: 22px; border-radius: 6px; background: #036c70;
  display: grid; place-items: center; color: #fff; font-size: 0.62rem; font-weight: 800;
}
.dash-top .dash-icons { margin-left: auto; display: flex; gap: 8px; }
.dash-top .dash-icons i {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.35);
}
.dash-search {
  margin: 12px 14px; padding: 8px 13px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: #8f97bf; font-size: 0.72rem;
}
.dash-body { padding: 4px 14px 14px; display: grid; gap: 10px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.dash-card {
  border-radius: 10px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); padding: 10px; min-height: 64px;
}
.dash-card .bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.16); margin-bottom: 6px; }
.dash-card .bar.w60 { width: 60%; }
.dash-card .bar.w80 { width: 80%; }
.dash-card .bar.accent { background: linear-gradient(90deg, #7c3aed, #3b82f6); }
.dash-card .avatar-row { display: flex; gap: 5px; margin-top: 8px; }
.dash-card .avatar-row i {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  border: 1.5px solid #0c1334;
}
.dash-card .donut {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(#7c3aed 0 40%, #3b82f6 40% 75%, rgba(255,255,255,0.15) 75%);
  margin: 4px auto;
  -webkit-mask: radial-gradient(circle at center, transparent 40%, black 42%);
          mask: radial-gradient(circle at center, transparent 40%, black 42%);
}

/* ============ Section scaffolding ============ */
.section { padding: 84px 0; }
.section.soft { background: var(--soft); }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto 50px; }
.kicker {
  display: inline-block; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-600);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin-bottom: 14px; }
.section-head h2 .underline { position: relative; }
.section-head h2 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px; width: 64px; margin: 0 auto; background: var(--grad); border-radius: 3px;
}
.section-head p { color: var(--muted); }

/* ============ Service cards grid ============ */
.card-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.svc-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: #d8ccf7;
}
.svc-icon {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
}
.svc-icon svg { width: 28px; height: 28px; }
.ic-blue    { background: #e3edff; } .ic-blue svg    { fill: #2563eb; }
.ic-purple  { background: #ece5fd; } .ic-purple svg  { fill: #7c3aed; }
.ic-green   { background: #e1f7ea; } .ic-green svg   { fill: #16a34a; }
.ic-orange  { background: #fdeee0; } .ic-orange svg  { fill: #ea770b; }
.ic-red     { background: #fde7e7; } .ic-red svg     { fill: #dc2626; }
.ic-cyan    { background: #dcf6fb; } .ic-cyan svg    { fill: #0891b2; }
.ic-indigo  { background: #e5e9fd; } .ic-indigo svg  { fill: #4f46e5; }
.ic-violet  { background: #f0e5fd; } .ic-violet svg  { fill: #8b5cf6; }

.svc-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.86rem; color: var(--muted); margin-bottom: 16px; }
.card-link {
  font-size: 0.86rem; font-weight: 700; color: var(--purple-600);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { gap: 10px; }
.card-link { transition: gap 0.2s; }

/* ============ AI band ============ */
.ai-band {
  background:
    radial-gradient(700px 300px at 90% 20%, rgba(139, 92, 246, 0.3), transparent 60%),
    linear-gradient(120deg, var(--navy-900), #150b46 70%, #2a0f66);
  color: #fff; padding: 62px 0;
}
.ai-band-grid {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 44px; align-items: center;
}
.ai-band .kicker { color: var(--purple-400); }
.ai-band h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 14px; }
.ai-band p { color: #b9bfdd; font-size: 0.94rem; margin-bottom: 24px; }
.ai-tools-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.ai-tool {
  text-align: center; padding: 10px 16px;
}
.ai-tool + .ai-tool { border-left: 1px solid rgba(255,255,255,0.12); }
.ai-tool .ai-ic {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
}
.ai-tool .ai-ic svg { width: 28px; height: 28px; }
.ai-tool b { display: block; font-size: 0.86rem; margin-bottom: 6px; }
.ai-tool small { color: #9aa2c7; font-size: 0.72rem; line-height: 1.45; display: block; }

/* ============ Why choose / stats ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 34px; align-items: stretch; }
.why-card {
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px;
}
.why-card h3 { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; color: var(--navy-800); }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; font-size: 0.93rem; font-weight: 600; color: #33405c;
}
.checklist .check {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center; margin-top: 2px;
}
.checklist .check svg { width: 11px; height: 11px; fill: #fff; }

.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 14px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-card .st-ic {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 12px;
  background: #ece5fd; display: grid; place-items: center;
}
.stat-card .st-ic svg { width: 24px; height: 24px; fill: var(--purple-600); }
.stat-card b { display: block; font-size: 1.7rem; font-weight: 900; color: var(--navy-800); }
.stat-card small { color: var(--muted); font-size: 0.78rem; }

/* ============ Logos strip ============ */
.logos-head {
  text-align: center; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}
.logo-strip {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
}
.client-logo {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  min-height: 62px; display: grid; place-items: center;
  font-weight: 800; color: #64708c; font-size: 0.92rem; letter-spacing: 0.03em;
  filter: grayscale(1); opacity: 0.85; transition: all 0.25s;
}
.client-logo:hover { filter: none; opacity: 1; border-color: #d8ccf7; }

/* ============ CTA band ============ */
.cta-band {
  background:
    radial-gradient(600px 260px at 15% 20%, rgba(139, 92, 246, 0.35), transparent 60%),
    linear-gradient(110deg, #1a1060, var(--navy-800));
  border-radius: 20px; color: #fff; padding: 46px 50px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: center;
}
.cta-band h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-bottom: 12px; }
.cta-band p { color: #b9bfdd; font-size: 0.95rem; margin-bottom: 24px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-points li {
  display: flex; align-items: center; gap: 12px; padding: 9px 0;
  font-weight: 700; font-size: 0.93rem;
}
.cta-points .cp-ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
}
.cta-points .cp-ic svg { width: 19px; height: 19px; fill: var(--purple-400); }

/* ============ Page hero (inner pages) ============ */
.page-hero {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(124, 58, 237, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 66px 0; text-align: center;
}
.breadcrumbs { font-size: 0.82rem; color: #9aa2c7; margin-bottom: 14px; }
.breadcrumbs a { color: var(--purple-400); }
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.page-hero h1 .accent {
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { color: #b9bfdd; max-width: 42rem; margin: 0 auto; }

/* ============ Split layout ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 16px; }
.split p { color: var(--muted); margin-bottom: 14px; font-size: 0.96rem; }
.split-media {
  border-radius: 18px; min-height: 320px;
  background:
    radial-gradient(300px 200px at 70% 30%, rgba(124, 58, 237, 0.35), transparent 70%),
    linear-gradient(140deg, var(--navy-800), var(--navy-600));
  border: 1px solid var(--line);
  display: grid; place-items: center; color: #9aa2c7; text-align: center;
  font-size: 0.85rem; padding: 24px;
}
.split-media svg { width: 74px; height: 74px; fill: var(--purple-400); margin-bottom: 12px; }

/* ============ Feature list rows ============ */
.feature-rows { display: grid; gap: 18px; }
.feature-row {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.feature-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-row .fr-ic {
  flex: none; width: 52px; height: 52px; border-radius: 13px;
  background: #ece5fd; display: grid; place-items: center;
}
.feature-row .fr-ic svg { width: 25px; height: 25px; fill: var(--purple-600); }
.feature-row h3 { font-size: 1.05rem; margin-bottom: 7px; }
.feature-row p { font-size: 0.9rem; color: var(--muted); }

/* ============ Pricing-ish / plan cards ============ */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.plan-card > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }
.plan-card .checklist { margin-bottom: 22px; }
.plan-card .checklist li { font-size: 0.88rem; padding: 6px 0; }

/* ============ Forms ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 34px; align-items: start; }
.info-card {
  background:
    radial-gradient(400px 240px at 80% 10%, rgba(139, 92, 246, 0.3), transparent 65%),
    linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: var(--radius); padding: 36px;
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 22px; }
.info-card ul li {
  display: flex; gap: 14px; padding: 13px 0; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1); align-items: flex-start;
}
.info-card ul li:last-child { border-bottom: none; }
.info-card svg { width: 19px; height: 19px; fill: var(--purple-400); flex: none; margin-top: 3px; }
.info-card a { color: #c9cff0; }
.info-card b { display: block; margin-bottom: 3px; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.35rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; color: #33405c;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 0.92rem; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 9px; background: #fbfcff;
  transition: border-color 0.2s, box-shadow 0.2s; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900); color: #aab1d4; padding: 66px 0 0; font-size: 0.88rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.3fr; gap: 36px;
  padding-bottom: 44px;
}
.footer-brand p { margin: 16px 0 20px; font-size: 0.85rem; line-height: 1.7; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text small { color: #8f97bf; }
.footer-ms {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 9px;
  padding: 8px 13px; font-size: 0.76rem; color: #d7dbf2;
}
.site-footer h4 {
  color: #fff; font-size: 0.92rem; margin-bottom: 18px; font-weight: 800;
}
.site-footer nav ul li, .footer-contact li { padding: 5px 0; }
.site-footer nav a { color: #aab1d4; transition: color 0.2s; }
.site-footer nav a:hover { color: var(--purple-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--purple-400); flex: none; margin-top: 4px; }
.footer-contact a { color: #aab1d4; }
.footer-meet {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad); color: #fff; padding: 11px 18px; border-radius: 9px;
  font-weight: 700; font-size: 0.85rem;
}
.footer-meet svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; color: #8f97bf;
}
.footer-bottom a { color: #aab1d4; margin-left: 18px; }
.footer-bottom a:hover { color: var(--purple-400); }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-band-grid { grid-template-columns: 1fr; }
  .ai-tools-row { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .ai-tool + .ai-tool { border-left: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
/* Nav collapses to hamburger before links can crowd or wrap */
@media (max-width: 1150px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 24px 24px;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 90; max-height: 72vh; overflow-y: auto;
    border-radius: 0 0 16px 16px;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > li > a { display: flex; justify-content: space-between; padding: 14px 8px; font-size: 1rem; white-space: normal; }
  .nav-links > li > a[aria-current="page"]::after { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: inherit; transform: none;
    box-shadow: none; border: none; padding: 0 0 6px 16px; display: none;
    min-width: 0;
  }
  .nav-links li.open-sub .dropdown { display: block; }
  .nav-toggle { display: block; z-index: 95; }
  .nav-toggle.active span { background: transparent; }
  .nav-toggle.active span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
  .nav-toggle.active span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 50px 0 60px; gap: 36px; }
  .hero-visual { min-height: 380px; }
  .split, .contact-grid, .cta-band { grid-template-columns: 1fr; }
  .split.reverse, .split[style] { direction: ltr !important; }
  .plan-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; row-gap: 4px; }
  .info-card, .form-card { padding: 28px 22px; }
}
@media (max-width: 600px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 15px; }
  .topbar { font-size: 0.76rem; }
  .topbar-contacts { gap: 14px; }
  .nav-wrap { padding: 11px 0; }
  .logo-mark { width: 40px; height: 40px; font-size: 1.05rem; }
  .logo-text strong { font-size: 1.05rem; }
  .logo-text small { font-size: 0.58rem; }
  .nav-cta .btn { display: none; }

  .hero h1 { font-size: 1.75rem; }
  .hero p.lede { font-size: 0.96rem; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; border: none; gap: 2px; }
  .hero-badges .badge { padding: 8px 0; margin-right: 0; border: none !important; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 330px; }
  .orbit-icon .oi { width: 44px; height: 44px; }
  .orbit-icon .oi svg { width: 20px; height: 20px; }
  .orbit-icon.oi-main .oi { width: 56px; height: 56px; }
  .orbit-icon.oi-main .oi svg { width: 28px; height: 28px; }
  .orbit-icon { font-size: 0.6rem; }
  .dash { top: 12%; left: 4%; right: 4%; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 34px; }
  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 26px 20px; }
  .ai-tools-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ai-band { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card b { font-size: 1.45rem; }
  .why-card { padding: 24px 20px; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom a { margin: 0 9px; }
  .cta-band { padding: 32px 24px; gap: 24px; }
  .cta-actions .btn { width: 100%; }
  .page-hero { padding: 48px 0; }
  .feature-row { flex-direction: column; padding: 22px 20px; }
  .split-media { min-height: 240px; }
  .split { gap: 30px; }
}
