:root {
  --navy: #0f2540;
  --navy-2: #16345a;
  --blue: #2b6cb0;
  --blue-bright: #3182ce;
  --accent: #f6ad3c;
  --ink: #1a2433;
  --muted: #5a6b81;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --ok: #2f855a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15,37,64,.08);
  --shadow-lg: 0 24px 60px rgba(15,37,64,.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; color: var(--navy); }
.brand .logo { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--blue-bright), var(--navy)); display: grid; place-items: center; color: #fff; font-size: 15px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.btn {
  display: inline-block; background: var(--blue-bright); color: #fff; font-weight: 700;
  padding: 12px 22px; border-radius: 10px; font-size: .96rem; border: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 6px 16px rgba(49,130,206,.28);
}
.btn:hover { transform: translateY(-1px); background: var(--blue); box-shadow: 0 10px 22px rgba(49,130,206,.34); }
.btn.alt { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: none; }
.btn.alt:hover { border-color: var(--blue-bright); color: var(--blue-bright); background: #fff; }
.btn.big { padding: 15px 30px; font-size: 1.05rem; }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 70% -10%, #eaf3fb 0%, rgba(234,243,251,0) 60%), var(--bg); padding: 74px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #eaf3fb; color: var(--blue); font-weight: 700; font-size: .82rem; padding: 6px 13px; border-radius: 100px; letter-spacing: .02em; }
.hero h1 { font-size: 3rem; margin: 18px 0 16px; }
.hero h1 .grad, .grad { background: linear-gradient(90deg, var(--blue-bright), var(--navy)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.2rem; color: var(--muted); max-width: 42ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { margin-top: 22px; color: var(--muted); font-size: .9rem; }

/* Hero card */
.hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px; transform: rotate(.5deg); }
.hero-card .row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.hero-card .row:last-child { border-bottom: none; }
.hero-card .dot { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; background: #e6f6ec; }
.hero-card .txt b { display: block; color: var(--navy); font-size: .95rem; }
.hero-card .txt span { color: var(--muted); font-size: .84rem; }
.hero-card .badge { margin-left: auto; color: var(--ok); font-weight: 700; font-size: .8rem; white-space: nowrap; }

/* Section shell */
section { padding: 68px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: 2.1rem; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.soft { background: var(--bg-soft); }

/* Problem strip */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prob { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.prob:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prob .ic { font-size: 26px; margin-bottom: 12px; }
.prob h3 { font-size: 1.12rem; margin-bottom: 8px; }
.prob p { color: var(--muted); font-size: .96rem; }

/* Services (cards linking to pages) */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.svc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--blue-bright), var(--navy)); }
.svc .svc-ic { width: 52px; height: 52px; border-radius: 13px; background: #eaf3fb; display: grid; place-items: center; font-size: 25px; margin-bottom: 16px; }
.svc h3 { font-size: 1.32rem; margin-bottom: 6px; }
.svc .tag { display: inline-block; font-size: .74rem; font-weight: 700; color: var(--accent); background: #fff6e8; padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; letter-spacing: .03em; align-self: flex-start; }
.svc p { color: var(--muted); margin-bottom: 16px; }
.svc ul { list-style: none; margin-bottom: 22px; }
.svc li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--ink); font-size: .96rem; }
.svc li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800; }
.svc .svc-cta { margin-top: auto; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { text-align: center; padding: 8px; }
.step .n { counter-increment: step; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-bright), var(--navy)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.3rem; margin: 0 auto 16px; box-shadow: 0 8px 18px rgba(49,130,206,.3); }
.step .n::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; max-width: 880px; margin: 0 auto; }
.why-item { display: flex; gap: 14px; }
.why-item .ic { color: var(--blue-bright); font-size: 22px; flex-shrink: 0; }
.why-item b { color: var(--navy); }
.why-item span { color: var(--muted); }

/* Page hero (inner pages) */
.page-hero { background: radial-gradient(1000px 420px at 60% -20%, #eaf3fb 0%, rgba(234,243,251,0) 62%), var(--bg); padding: 60px 0 44px; text-align: center; }
.page-hero .svc-ic { width: 62px; height: 62px; border-radius: 15px; background: #eaf3fb; display: grid; place-items: center; font-size: 30px; margin: 0 auto 18px; }
.page-hero h1 { font-size: 2.6rem; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 52ch; margin: 0 auto; }
.page-hero .hero-cta { justify-content: center; }

/* Prose / feature blocks */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 30px; }
.feature-row.rev { direction: rtl; }
.feature-row.rev > * { direction: ltr; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); }
.checklist { list-style: none; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 1.02rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800; font-size: 1.1rem; }

/* Pricing */
.price-tag { display: inline-flex; align-items: baseline; gap: 6px; background: #eaf3fb; border-radius: 12px; padding: 14px 20px; margin: 6px 0 4px; }
.price-tag .amt { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.price-tag .per { color: var(--muted); font-weight: 600; }
.price-sub { color: var(--muted); font-size: .92rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: 22px; padding: 52px 40px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.cta-band p { color: #c7d6e8; font-size: 1.1rem; max-width: 48ch; margin: 0 auto 26px; }
.cta-band .btn { background: var(--accent); color: var(--navy); box-shadow: 0 8px 22px rgba(246,173,60,.4); }
.cta-band .btn:hover { background: #ffbf55; }

/* Form */
.form-card { max-width: 580px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 1rem; font-family: inherit; color: var(--ink); transition: border-color .12s ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue-bright); }
.form-card .btn { width: 100%; }
.form-note { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; background: #fff; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 1.4rem; color: var(--blue-bright); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 16px; }

/* Footer */
footer { background: var(--navy); color: #a9bdd6; padding: 44px 0 30px; font-size: .92rem; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand { color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.foot-brand .logo { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--blue-bright), #fff); display: grid; place-items: center; font-size: 13px; }
footer a { color: #a9bdd6; }
footer a:hover { color: #fff; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 18px; color: #7e97b5; font-size: .84rem; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-card { transform: none; }
  .prob-grid, .svc-grid, .steps, .why-grid, .feature-row, .two-col { grid-template-columns: 1fr; }
  .feature-row.rev { direction: ltr; }
  .nav-links { gap: 16px; font-size: .88rem; }
  .nav-links .navhide { display: none; }
  .page-hero h1 { font-size: 2rem; }
  .section-head h2, .cta-band h2 { font-size: 1.7rem; }
}
