/* ==========================================================================
   Lotus Consultancy Services — lcsbbsr.com
   Single stylesheet for the whole site. No build step, no dependencies.
   Sections: 1 reset · 2 tokens · 3 base · 4 layout · 5 buttons · 6 header
             7 hero · 8 components · 9 forms · 10 footer · 11 responsive
   ========================================================================== */

/* ---------- 1. reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body, h1, h2, h3, h4, h5, p, ul, ol, li, figure, blockquote, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
fieldset { border: 0; }
table { border-collapse: collapse; width: 100%; }

/* ---------- 2. tokens ---------- */
:root {
  color-scheme: light;

  --navy-950: #05173A;
  --navy-900: #082A63;
  --navy-800: #0D3A80;
  --navy-700: #11499E;
  --blue-600: #1A5FCC;
  --blue-500: #2F7CE8;
  --blue-200: #BFD6F7;
  --blue-100: #DCE9FB;
  --blue-50:  #EEF4FD;

  --violet:   #6C3BD6;
  --violet-50:#F0EBFC;
  --magenta:  #C21E9C;
  --green:    #12875C;
  --green-50: #E4F5EE;
  --amber:    #C97A06;
  --amber-50: #FDF2DF;

  --ink:   #0E1B30;
  --body:  #42536D;
  --muted: #6C7C95;
  --line:  #DFE7F3;
  --line-2:#EDF2F9;
  --white: #FFFFFF;
  --tint:  #F5F8FD;

  --shadow-sm: 0 1px 2px rgba(8, 42, 99, .06), 0 2px 8px -4px rgba(8, 42, 99, .10);
  --shadow:    0 2px 4px rgba(8, 42, 99, .05), 0 14px 32px -18px rgba(8, 42, 99, .28);
  --shadow-lg: 0 4px 10px rgba(8, 42, 99, .06), 0 30px 60px -30px rgba(8, 42, 99, .40);

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-deva: "Noto Sans Devanagari", "Nirmala UI", var(--font);

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --pad: clamp(1.1rem, 4vw, 2.25rem);
  --wide: 1240px;
  --narrow: 900px;

  --h1: clamp(2.1rem, 1.35rem + 3.2vw, 3.5rem);
  --h2: clamp(1.65rem, 1.25rem + 1.75vw, 2.5rem);
  --h3: clamp(1.1rem, 1rem + .35vw, 1.3rem);
}

/* ---------- 3. base ---------- */
body {
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { color: var(--ink); font-weight: 800; line-height: 1.16; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
h4 { font-size: 1.02rem; font-weight: 700; }
p  { text-wrap: pretty; }
strong, b { font-weight: 700; color: var(--ink); }
em { font-style: normal; color: var(--blue-600); font-weight: 700; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--blue-100); color: var(--navy-900); }
.hi { font-family: var(--font-deva); }

/* ---------- 4. layout ---------- */
.container { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: var(--narrow); }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.section--tint { background: var(--tint); }
.section--blue { background: var(--blue-50); }
.section--navy { background: var(--navy-900); color: #D9E4F6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: block;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: .5rem;
}
.section-head { max-width: 720px; margin-bottom: clamp(1.75rem, 3.5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .85rem; font-size: 1.05rem; }
.rule { width: 62px; height: 4px; border-radius: 4px; background: var(--blue-600); margin-top: 1rem; }
.section-head--center .rule { margin-inline: auto; }
.lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem); color: var(--body); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- 5. buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem;
  border-radius: var(--r-sm);
  font-weight: 700; font-size: .95rem; letter-spacing: -.01em;
  border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-900); box-shadow: var(--shadow); }
.btn--blue { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--navy-800); }
.btn--outline { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn--white { background: #fff; color: var(--navy-900); }
.btn--white:hover { background: var(--blue-50); }
.btn--wa { background: var(--green); color: #fff; }
.btn--wa:hover { background: #0E6E4A; }
.btn--sm { padding: .55rem 1rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .9rem; color: var(--blue-600);
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---------- 6. header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.header__in { display: flex; align-items: center; gap: 1.25rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .65rem; flex: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-size: 1.28rem; font-weight: 800; letter-spacing: .04em; color: var(--navy-900); }
.brand__sub { font-size: .58rem; font-weight: 700; letter-spacing: .18em; color: var(--blue-600); margin-top: .25rem; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .8rem; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 600; color: var(--body);
  position: relative;
}
.nav__link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__item.is-active > .nav__link { color: var(--navy-900); font-weight: 700; }
.nav__item.is-active > .nav__link::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: -1px;
  height: 3px; border-radius: 3px 3px 0 0; background: var(--blue-600);
}
.nav__caret { width: 13px; height: 13px; transition: transform .2s ease; }
.nav__caret svg { width: 13px; height: 13px; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav__item { position: relative; }
.nav__item.is-open .drop, .nav__item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: .6rem .8rem; border-radius: var(--r-sm); font-size: .9rem; font-weight: 600; color: var(--body); }
.drop a:hover { background: var(--blue-50); color: var(--blue-600); }

.header__cta {
  display: inline-flex; align-items: center; gap: .5rem; flex: none;
  background: var(--navy-800); color: #fff;
  padding: .68rem 1.15rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .92rem; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.header__cta:hover { background: var(--blue-600); }
.header__cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; flex: none;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-800); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- 7. hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, var(--blue-50) 0%, #F7FAFE 55%, #fff 100%); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 52%;
  background: linear-gradient(150deg, var(--navy-900), var(--blue-600));
  clip-path: ellipse(76% 118% at 82% 50%);
  opacity: .97;
}
.hero__in { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3.5rem, 7vw, 6rem); }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--blue-200); color: var(--navy-800);
  padding: .45rem 1rem; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.hero__badge svg { width: 15px; height: 15px; color: var(--blue-600); }
.hero h1 { margin-top: 1.1rem; }
.hero h1 span { display: block; }
.hero h1 .t-blue { color: var(--blue-600); }
.hero__lede { margin-top: 1.15rem; max-width: 48ch; font-size: 1.06rem; }
.hero__actions { margin-top: 1.75rem; }

/* dashboard illustration */
.dash { position: relative; }
.dash__screen {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,.6);
}
.dash__bar { display: flex; align-items: center; gap: .5rem; padding: .6rem .85rem; background: var(--navy-900); }
.dash__dots { display: flex; gap: .3rem; }
.dash__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.dash__title { font-size: .72rem; font-weight: 700; color: #fff; letter-spacing: .06em; }
.dash__body { padding: .9rem; background: var(--tint); }
.dash__tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.dtile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: .55rem .5rem; text-align: left; }
.dtile b { display: block; font-size: 1.05rem; color: var(--navy-900); line-height: 1.2; }
.dtile span { font-size: .58rem; color: var(--muted); font-weight: 600; }
.dash__charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: .5rem; margin-top: .5rem; }
.dcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: .6rem; }
.dcard h5 { font-size: .62rem; color: var(--muted); font-weight: 700; margin-bottom: .35rem; }
.dash__float {
  position: absolute; left: 3%; bottom: -74px;
  display: flex; align-items: center; gap: .8rem;
  background: #fff; color: var(--navy-900); border-radius: var(--r);
  padding: .8rem 1.1rem; box-shadow: var(--shadow-lg); max-width: 290px;
}
.dash__float b { display: block; font-size: .95rem; font-weight: 800; line-height: 1.25; }
.dash__float span { font-size: .76rem; color: var(--muted); }
.dash__float svg { width: 30px; height: 30px; flex: none; color: var(--blue-600); }

/* ---------- 8. components ---------- */
/* trust strip */
.trust { background: var(--blue-50); border-block: 1px solid var(--blue-100); }
.trust__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; gap: .85rem; align-items: flex-start; padding: 1.35rem 1.25rem; }
.trust__item + .trust__item { border-left: 1px solid var(--blue-100); }
.trust__icon { width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy-800); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.trust__icon svg { width: 21px; height: 21px; }
.trust__item h4 { font-size: .95rem; color: var(--navy-900); }
.trust__item p { font-size: .84rem; line-height: 1.5; margin-top: .15rem; }

/* service cards */
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-200); }
.svc-card__icon { width: 52px; height: 52px; border-radius: var(--r); display: grid; place-items: center; }
.svc-card__icon svg { width: 25px; height: 25px; }
.i-blue   { background: var(--blue-50);   color: var(--blue-600); }
.i-green  { background: var(--green-50);  color: var(--green); }
.i-amber  { background: var(--amber-50);  color: var(--amber); }
.i-violet { background: var(--violet-50); color: var(--violet); }
.svc-card p { font-size: .92rem; line-height: 1.6; flex: 1; }
.svc-card .arrow-link { margin-top: .25rem; }

/* stat band */
.statband { background: linear-gradient(120deg, var(--navy-950), var(--navy-800) 60%, var(--navy-700)); color: #fff; }
.statband__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; align-items: center; gap: .9rem; padding: 1.9rem 1.25rem; justify-content: center; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.14); }
.stat svg { width: 34px; height: 34px; color: #fff; opacity: .85; flex: none; }
.stat > span { display: block; }
.stat b { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: #fff; }
.stat span { font-size: .84rem; color: #BBCDE8; }

/* why-us */
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.35rem 1.25rem; }
.why-card__n { font-size: .74rem; font-weight: 800; color: var(--blue-600); letter-spacing: .1em; }
.why-card h3 { margin: .35rem 0 .4rem; }
.why-card p { font-size: .9rem; line-height: 1.6; }

/* check list */
.checks { display: grid; gap: .7rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; }
.checks svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: .22rem; }
.checks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 1.5rem; }

/* panels */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.35rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.panel--tint { background: var(--tint); box-shadow: none; }
.panel--blue { background: var(--blue-50); border-color: var(--blue-100); box-shadow: none; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3.25rem); align-items: center; }
.svc-block .split { align-items: start; }

/* service detail block */
.svc-block { scroll-margin-top: 100px; }
.svc-block + .svc-block { margin-top: clamp(2.5rem, 5vw, 4.5rem); padding-top: clamp(2.5rem, 5vw, 4.5rem); border-top: 1px solid var(--line); }
.svc-block__tag svg { width: 16px; height: 16px; }
.svc-block__tag { display: inline-flex; white-space: nowrap; align-items: center; gap: .5rem; background: var(--blue-50); color: var(--blue-600); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--r-pill); }

/* pricing slip */
.slip { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.slip__head { padding: 1.25rem 1.5rem; background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.slip__head h3 { color: #fff; }
.slip__tag { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.16); padding: .3rem .7rem; border-radius: var(--r-pill); }
.slip__body { padding: 1.5rem; }
.slip__row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.slip__row b { font-variant-numeric: tabular-nums; }
.slip__total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: 1rem; margin-top: .3rem; border-top: 2px solid var(--navy-900); }
.slip__total span { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.slip__total b { font-size: 2rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.slip__meta { margin-top: 1.1rem; display: grid; gap: .5rem; font-size: .88rem; }
.slip__meta div { display: flex; justify-content: space-between; gap: 1rem; }
.slip__meta dt { color: var(--muted); }
.slip__meta dd { font-weight: 600; color: var(--ink); text-align: right; }

/* steps */
.steps { counter-reset: s; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.step { background: #fff; padding: 1.35rem 1.4rem; display: flex; gap: 1.1rem; }
.step__n { counter-increment: s; flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); font-weight: 800; display: grid; place-items: center; font-size: .92rem; }
.step__n::before { content: "0" counter(s); }
.step h3 { margin-bottom: .25rem; }
.step p { font-size: .92rem; line-height: 1.6; }

/* testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .9rem; }
.stars { display: flex; gap: .15rem; color: #E8A317; }
.stars svg { width: 17px; height: 17px; }
.quote__text { font-size: .96rem; line-height: 1.68; color: var(--body); flex: 1; }
.quote__by { display: flex; align-items: center; gap: .75rem; padding-top: .9rem; border-top: 1px solid var(--line-2); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-weight: 800; font-size: .95rem; flex: none; }
.quote__by b { display: block; font-size: .92rem; line-height: 1.3; }
.quote__by span { font-size: .8rem; color: var(--muted); }
.is-placeholder { border-style: dashed; border-color: var(--blue-200); background: var(--blue-50); }

/* accordion */
.acc { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.acc details + details { border-top: 1px solid var(--line); }
.acc summary { padding: 1.05rem 1.25rem; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; list-style: none; font-size: .98rem; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.35rem; font-weight: 400; color: var(--blue-600); line-height: 1; flex: none; }
.acc details[open] summary::after { content: "\2212"; }
.acc details[open] summary { color: var(--blue-600); }
.acc__body { padding: 0 1.25rem 1.15rem; font-size: .94rem; line-height: 1.65; }

/* page hero (inner pages) */
.page-hero { background: linear-gradient(125deg, var(--navy-950), var(--navy-800) 55%, var(--navy-700)); color: #C9DAF2; padding-block: clamp(2.25rem, 5vw, 3.75rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -60px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.05); }
.page-hero h1 { color: #fff; margin-top: .5rem; }
.page-hero p { margin-top: .85rem; max-width: 62ch; color: #C9DAF2; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: #9FB8DA; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: #6E8BB5; }

/* pills */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .4rem .95rem; font-size: .85rem; font-weight: 600; color: var(--navy-800); }
.pill--navy { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }

/* cta band */
.cta-band { background: linear-gradient(115deg, var(--navy-900), var(--blue-600)); color: #fff; border-radius: var(--r-lg); padding: clamp(1.75rem, 4vw, 3rem); display: grid; grid-template-columns: 1fr auto; gap: 1.75rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D3E1F6; margin-top: .6rem; }

/* contact cards */
.cbox { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem; }
.cbox__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.cbox__icon svg { width: 21px; height: 21px; }
.cbox h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 800; }
.cbox a, .cbox p { display: block; margin-top: .25rem; font-size: 1rem; font-weight: 600; color: var(--ink); }
.cbox a:hover { color: var(--blue-600); }

/* ---------- 9. forms ---------- */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: .95rem; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px var(--blue-50);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA9BF; }
.field__hint { font-size: .78rem; color: var(--muted); }
.form__note { font-size: .82rem; color: var(--muted); display: flex; align-items: flex-start; gap: .45rem; }
.form__note svg { width: 15px; height: 15px; flex: none; margin-top: .18rem; }
.form-msg { display: none; padding: .85rem 1rem; border-radius: var(--r-sm); font-size: .9rem; font-weight: 600; }
.form-msg.is-on { display: block; }
.form-msg--ok { background: var(--green-50); color: var(--green); }
.form-msg--err { background: #FDECEC; color: #B42318; }

/* ---------- 10. footer ---------- */
.site-footer { background: var(--navy-950); color: #A9BEDC; padding-top: clamp(2.5rem, 5vw, 4rem); font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #7FA3D8; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; font-weight: 800; }
.footer__links { display: grid; gap: .6rem; }
.footer__links a:hover, .footer a:hover { color: #fff; }
.footer__contact { display: grid; gap: .8rem; }
.footer__contact a, .footer__contact p { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--blue-500); flex: none; margin-top: .22rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #8AA4C8; }
.footer__note { font-size: .82rem; color: #7E97BC; line-height: 1.55; margin-top: 1rem; }

/* mobile sticky action bar */
.floatbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--navy-950); padding: .6rem .75rem; gap: .6rem; box-shadow: 0 -6px 20px rgba(5,23,58,.35); }
.floatbar .btn { flex: 1; padding: .7rem .5rem; font-size: .88rem; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc-card:hover { transform: none; }
}

/* ---------- 11. responsive ---------- */
@media (max-width: 1080px) {
  .nav__link { padding: .55rem .6rem; font-size: .88rem; }
  .brand__name { font-size: 1.15rem; }
}
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto; z-index: 55;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: .75rem var(--pad) 1.25rem;
    max-height: calc(100dvh - 76px); overflow-y: auto;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__link { padding: .85rem .5rem; font-size: 1rem; justify-content: space-between; }
  .nav__item.is-active > .nav__link::after { display: none; }
  .nav__item.is-active > .nav__link { background: var(--blue-50); color: var(--blue-600); border-radius: var(--r-sm); }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 .4rem .5rem; padding: 0 0 0 .4rem; display: none; }
  .nav__item.is-open .drop { display: block; }
  .nav__item:hover .drop { opacity: 1; }
  .header__cta { margin-left: auto; }
  .hero::after { display: none; }
  .hero__in { grid-template-columns: 1fr; }
  .split, .cta-band { grid-template-columns: 1fr; }
  .cta-band { text-align: left; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__list { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--blue-100); }
  .statband__list { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .header__cta span { display: none; }
  .header__cta { padding: .68rem .8rem; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .checks--2 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .dash__float { display: none; }
  .floatbar { display: flex; }
  body { padding-bottom: 68px; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; min-width: 46%; }
}
@media (max-width: 520px) {
  .grid--4 { grid-template-columns: 1fr; }
  .trust__list, .statband__list { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: 0; border-top: 1px solid var(--blue-100); }
  .stat + .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .dash__tiles { grid-template-columns: repeat(2, 1fr); }
  .brand__name { font-size: 1.05rem; }
  .brand__mark { width: 38px; height: 38px; }
}
