/* ============================================================
   WorkWise US — Enterprise Design System
   Palette: Deep Navy / Cobalt / Electric Blue
   Type: Manrope (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy: #0A2540;
  --navy-700: #0c2c4d;
  --cobalt: #0F4C81;
  --blue: #3B82F6;
  --blue-soft: #93C5FD;
  --bg: #F8FAFC;
  --white: #FFFFFF;

  /* Neutrals */
  --ink: #0A2540;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --line: rgba(10, 37, 64, 0.08);
  --line-strong: rgba(10, 37, 64, 0.14);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 37, 64, 0.05), 0 10px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 18px 48px rgba(10, 37, 64, 0.14);
  --shadow-blue: 0 14px 40px rgba(59, 130, 246, 0.28);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --grad-deep: linear-gradient(135deg, #0A2540 0%, #0F4C81 100%);
  --grad-blue: linear-gradient(135deg, #0F4C81 0%, #3B82F6 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; }
.center { text-align: center; }
.max-720 { max-width: 720px; }
.max-640 { max-width: 640px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cobalt);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(15, 76, 129, 0.07);
  border: 1px solid rgba(15, 76, 129, 0.12);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.eyebrow-light { color: var(--blue-soft); background: rgba(147, 197, 253, 0.12); border-color: rgba(147, 197, 253, 0.25); }

h1, .h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); }
h2, .h2 { font-size: clamp(2rem, 3.8vw, 3.05rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--slate-600); line-height: 1.6; }
.section-head { margin-bottom: 60px; }
.section-head h2 { margin: 18px 0 18px; }
.text-blue { color: var(--blue); }
.text-white { color: #fff; }
.text-muted { color: var(--slate-500); }

/* gradient text accent */
.grad-text {
  background: linear-gradient(120deg, #0F4C81, #3B82F6 60%, #60a5fa);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
  padding: 15px 28px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(59,130,246,0.4); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--slate-200); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--blue); transition: gap 0.3s var(--ease); }
.link-arrow:hover { gap: 12px; }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s var(--ease);
  padding: 16px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(10,37,64,0.07); border-radius: 16px;
  padding: 12px 14px 12px 22px; box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.nav.scrolled .nav-inner { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.9); }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: -0.02em; }
.brand-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--grad-blue); display: grid; place-items: center; box-shadow: var(--shadow-blue); position: relative; flex: none; }
.brand-mark svg { width: 20px; height: 20px; }
.brand small { display:block; font-size: 10px; letter-spacing: 0.22em; color: var(--slate-400); font-weight: 700; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--slate-700);
  padding: 9px 14px; border-radius: 9px; transition: all 0.25s ease;
}
.nav-links a:hover { color: var(--navy); background: var(--slate-100); }
.nav-links a.active { color: var(--cobalt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--navy);
  display: flex; flex-direction: column; padding: 100px 28px 40px;
  transform: translateX(100%); transition: transform 0.5s var(--ease); gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.5rem; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 180px 0 110px; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 20% 10%, rgba(59,130,246,0.34) 0%, transparent 60%),
    radial-gradient(50% 60% at 85% 25%, rgba(15,76,129,0.55) 0%, transparent 60%),
    radial-gradient(70% 80% at 70% 100%, rgba(147,197,253,0.14) 0%, transparent 60%);
  animation: meshFloat 18s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(147,197,253,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(147,197,253,0.06) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}
@keyframes meshFloat { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-3%, 2%, 0) scale(1.08); } }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,0.78); max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 26px; color: rgba(255,255,255,0.55); font-size: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-note .pill-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note .ck { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 16px; height: 16px; color: var(--blue-soft); }

/* floating glass dashboard */
.hero-visual { margin-top: 70px; position: relative; z-index: 2; }
.glass-panel {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.dash-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; }
.dash-card h4 { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.dash-metric { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; }
.dash-metric .up { font-size: 0.9rem; color: #4ade80; margin-left: 8px; font-weight: 700; }
.bar-row { display: flex; align-items: flex-end; gap: 8px; height: 110px; margin-top: 14px; }
.bar { flex: 1; background: linear-gradient(180deg, var(--blue), var(--cobalt)); border-radius: 6px 6px 0 0; opacity: 0.85; animation: barGrow 1.2s var(--ease) backwards; }
@keyframes barGrow { from { height: 0 !important; opacity: 0; } }
.dash-list { display: flex; flex-direction: column; gap: 13px; }
.dash-list-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.dash-list-item .ic { width: 32px; height: 32px; border-radius: 8px; background: rgba(59,130,246,0.2); display: grid; place-items: center; flex: none; }
.dash-list-item .ic svg { width: 16px; height: 16px; color: var(--blue-soft); }

/* ---------- Marquee / logos ---------- */
.logo-strip { padding: 44px 0; border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip p { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 28px; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.logo-row span { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--slate-300); letter-spacing: -0.02em; transition: color 0.3s ease; }
.logo-row span:hover { color: var(--slate-500); }

/* ---------- Stats ---------- */
.stats-band { background: var(--grad-deep); position: relative; overflow: hidden; }
.stats-band::after { content:''; position:absolute; inset:0; background: radial-gradient(50% 80% at 80% 0%, rgba(59,130,246,0.25), transparent 60%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; z-index: 2; }
.stat { text-align: center; padding: 14px; }
.stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.stat-num .sym { color: var(--blue-soft); }
.stat-label { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 12px; font-weight: 500; }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; transition: all 0.45s var(--ease); position: relative; overflow: hidden;
}
.card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(15,76,129,0.1), rgba(59,130,246,0.12)); display: grid; place-items: center; margin-bottom: 22px; transition: all 0.4s var(--ease); }
.card-icon svg { width: 26px; height: 26px; color: var(--cobalt); }
.card:hover .card-icon { background: var(--grad-blue); }
.card:hover .card-icon svg { color: #fff; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--slate-600); font-size: 15.5px; }
.card .link-arrow { margin-top: 18px; font-size: 15px; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .check { width: 24px; height: 24px; border-radius: 7px; background: rgba(59,130,246,0.12); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature-list .check svg { width: 14px; height: 14px; color: var(--blue); }
.feature-list strong { color: var(--ink); font-family: 'Manrope', sans-serif; display: block; margin-bottom: 2px; }
.feature-list span { color: var(--slate-600); font-size: 15px; }

/* ---------- Split / Industry ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse > :first-child { order: 2; }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.industry-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); padding: 44px; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: all 0.5s var(--ease); border: 1px solid rgba(255,255,255,0.06);
}
.industry-card::before { content:''; position:absolute; inset:0; background: radial-gradient(80% 60% at 80% 0%, rgba(59,130,246,0.4), transparent 60%); opacity: 0.7; transition: opacity 0.5s ease; }
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card:hover::before { opacity: 1; }
.industry-card > * { position: relative; z-index: 2; }
.industry-card .ic-badge { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; margin-bottom: auto; }
.industry-card .ic-badge svg { width: 30px; height: 30px; color: var(--blue-soft); }
.industry-card h3 { color: #fff; font-size: 1.7rem; margin: 28px 0 12px; }
.industry-card p { color: rgba(255,255,255,0.74); font-size: 16px; margin-bottom: 22px; }
.industry-card .link-arrow { color: var(--blue-soft); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; }
.step-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--blue); width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,0.1); display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--slate-600); }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); position: relative; }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-mark { font-family: 'Manrope', sans-serif; font-size: 4rem; line-height: 0.6; color: var(--blue-soft); margin-bottom: 8px; height: 30px; }
.quote-card p { font-size: 1.12rem; color: var(--slate-700); line-height: 1.6; font-weight: 500; }
.quote-author { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-blue); display: grid; place-items: center; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; flex: none; }
.quote-author .meta strong { font-family: 'Manrope', sans-serif; color: var(--ink); display: block; font-size: 15px; }
.quote-author .meta span { font-size: 13px; color: var(--slate-500); }

/* ---------- Case studies ---------- */
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.45s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-top { background: var(--grad-deep); padding: 30px; position: relative; overflow: hidden; }
.case-top::after { content:''; position:absolute; inset:0; background: radial-gradient(60% 80% at 90% 10%, rgba(59,130,246,0.3), transparent); }
.case-tag { position: relative; z-index:2; display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: 12px; }
.case-top h3 { position: relative; z-index:2; color: #fff; font-size: 1.35rem; }
.case-body { padding: 30px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.case-metric .n { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--cobalt); line-height: 1; }
.case-metric .l { font-size: 12px; color: var(--slate-500); margin-top: 6px; }

/* ---------- Calculator ---------- */
.calc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; }
.calc-inputs { padding: 44px; }
.calc-result { padding: 44px; background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.calc-result::after { content:''; position:absolute; inset:0; background: radial-gradient(60% 80% at 80% 10%, rgba(59,130,246,0.3), transparent 60%); }
.calc-result > * { position: relative; z-index: 2; }
.calc-field { margin-bottom: 26px; }
.calc-field label { display: flex; justify-content: space-between; font-family: 'Manrope', sans-serif; font-weight: 600; color: var(--ink); font-size: 15px; margin-bottom: 12px; }
.calc-field label .val { color: var(--cobalt); font-weight: 800; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--slate-200); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; box-shadow: 0 0 0 4px rgba(59,130,246,0.18); transition: transform 0.2s ease; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--blue); cursor: pointer; box-shadow: 0 0 0 4px rgba(59,130,246,0.18); }
.calc-result .big { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; margin: 8px 0 4px; }
.calc-result .sub { color: rgba(255,255,255,0.7); font-size: 15px; }
.calc-breakdown { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-direction: column; gap: 16px; }
.calc-line { display: flex; justify-content: space-between; align-items: center; }
.calc-line span { color: rgba(255,255,255,0.7); font-size: 15px; }
.calc-line strong { font-family: 'Manrope', sans-serif; font-size: 1.15rem; color: #fff; }
.calc-disclaimer { font-size: 12px; color: var(--slate-400); margin-top: 22px; line-height: 1.5; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: all 0.45s var(--ease); position: relative; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: var(--grad-deep); border-color: transparent; box-shadow: var(--shadow-lg); }
.price-card.featured h3, .price-card.featured .price, .price-card.featured .price-desc { color: #fff; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.7); }
.price-card.featured .feature-list span { color: rgba(255,255,255,0.85); }
.price-card.featured .feature-list strong { color: #fff; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 100px; font-family: 'Manrope', sans-serif; letter-spacing: 0.04em; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.price-desc { font-size: 14px; color: var(--slate-500); min-height: 42px; }
.price { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--ink); margin: 20px 0 4px; }
.price .per { font-size: 0.95rem; color: var(--slate-500); font-weight: 500; }
.price-card .feature-list { margin: 24px 0; flex: 1; }
.price-card .feature-list li { gap: 10px; }
.price-card .feature-list span { font-size: 14px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; text-align: left; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq-q .icon { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--slate-100); display: grid; place-items: center; transition: all 0.35s var(--ease); position: relative; }
.faq-q .icon::before, .faq-q .icon::after { content:''; position:absolute; background: var(--cobalt); border-radius: 2px; }
.faq-q .icon::before { width: 13px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 13px; transition: transform 0.35s var(--ease); }
.faq-item.open .faq-q .icon { background: var(--blue); }
.faq-item.open .faq-q .icon::before, .faq-item.open .faq-q .icon::after { background: #fff; }
.faq-item.open .faq-q .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--slate-600); font-size: 16px; line-height: 1.65; max-width: 90%; }
.faq-cat-title { font-size: 1.1rem; color: var(--cobalt); margin: 44px 0 6px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); border-radius: 32px; padding: 76px 56px; position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content:''; position:absolute; inset:0; background: radial-gradient(50% 80% at 20% 0%, rgba(59,130,246,0.32), transparent 55%), radial-gradient(50% 80% at 85% 100%, rgba(15,76,129,0.5), transparent 55%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.cta-band .lead { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto 34px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--slate-200); border-radius: 11px;
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink); background: #fff;
  transition: all 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(59,130,246,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.step-indicator { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; }
.step-dot { flex: 1; height: 4px; border-radius: 4px; background: var(--slate-200); transition: background 0.4s ease; }
.step-dot.active { background: var(--blue); }
.form-step { display: none; animation: fadeIn 0.4s var(--ease); }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  border: 1px solid var(--slate-200); border-radius: 12px; padding: 18px; cursor: pointer;
  transition: all 0.25s ease; display: flex; gap: 12px; align-items: center;
}
.choice:hover { border-color: var(--blue); }
.choice.selected { border-color: var(--blue); background: rgba(59,130,246,0.05); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.choice .ic { width: 38px; height: 38px; border-radius: 9px; background: var(--slate-100); display: grid; place-items: center; flex: none; }
.choice.selected .ic { background: var(--blue); }
.choice .ic svg { width: 20px; height: 20px; color: var(--cobalt); }
.choice.selected .ic svg { color: #fff; }
.choice strong { font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink); display: block; }
.choice small { color: var(--slate-500); font-size: 13px; }

/* ---------- Trust / badges ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-badge { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-sm); }
.trust-badge .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(59,130,246,0.1); display: grid; place-items: center; flex: none; }
.trust-badge .ic svg { width: 20px; height: 20px; color: var(--blue); }
.trust-badge strong { font-family: 'Manrope', sans-serif; color: var(--ink); display: block; font-size: 14px; }
.trust-badge span { font-size: 13px; color: var(--slate-500); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 170px 0 80px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero .hero-bg::before { animation: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 58ch; margin-top: 22px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 24px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 36ch; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; font-family: 'Manrope', sans-serif; }
.footer-col a { display: block; color: rgba(255,255,255,0.62); font-size: 15px; padding: 7px 0; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--blue-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

.float-anim { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Utilities ---------- */
.mt-12 { margin-top: 12px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: #fff; }
.divider { height: 1px; background: var(--line); border: none; }
.note-flag { background: #FEF3C7; border: 1px solid #FCD34D; border-radius: 12px; padding: 16px 20px; font-size: 14px; color: #92400E; margin: 0 auto 40px; max-width: 820px; }
.note-flag strong { color: #78350F; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 76px 0; }
  .grid-2, .grid-3, .split, .calc-grid, .industry-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { padding: 140px 0 80px; }
  .cta-band { padding: 56px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-4, .price-grid, .stats-grid, .footer-grid, .steps, .case-metrics, .choice-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .nav { padding: 12px 0; }
  .card, .quote-card, .calc-inputs, .calc-result, .price-card { padding: 26px; }
  .cta-band { padding: 44px 22px; }
}

/* ---- Lead form success state & layout helpers ---- */
.form-success { display: none; text-align: center; padding: 20px 4px; animation: fadeIn 0.5s var(--ease); }
.form-success.active { display: block; }
.form-success .tick { width: 72px; height: 72px; border-radius: 50%; background: var(--grad-blue); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--shadow-blue); }
.form-success .tick svg { width: 34px; height: 34px; color: #fff; }
.form-actions { display: flex; gap: 12px; margin-top: 26px; }
.form-actions .btn { flex: 1; }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: start; }
.contact-aside .info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-aside .info-row:last-child { border-bottom: none; }
.contact-aside .info-row .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--slate-100); display: grid; place-items: center; flex: none; }
.contact-aside .info-row .ic svg { width: 20px; height: 20px; color: var(--cobalt); }
.contact-aside .info-row h4 { font-size: 15px; margin-bottom: 3px; }
.contact-aside .info-row p { font-size: 14px; color: var(--slate-600); }
.cal-placeholder { border: 2px dashed var(--line); border-radius: var(--radius-lg); padding: 30px; text-align: center; background: var(--bg); margin-top: 18px; }
.cal-placeholder .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--grad-deep); display: grid; place-items: center; margin: 0 auto 14px; }
.cal-placeholder .ic svg { width: 24px; height: 24px; color: #fff; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
