/* =========================================================
   RIHULISE GROUP — Corporate Website
   Colors:
   - Orange  #F37021  | Green   #7AC143  | Dark Green #4E9B2D
   - Blue    #0B6BCB  | Red     #ED1C24  | Yellow     #FBB040
   ========================================================= */

:root {
  --orange:      #F37021;
  --green:       #7AC143;
  --green-dark:  #4E9B2D;
  --blue:        #0B6BCB;
  --red:         #ED1C24;
  --yellow:      #FBB040;
  --text:        #111111;
  --muted:       #4a4a4a;
  --muted-2:     #5e5e5e;
  --bg:          #F4F5F8;
  --card:        #ffffff;
  --stroke:      #e2e2e2;
  --focus:       #0B6BCB;
  --focus-ring:  0 0 0 4px rgba(11,107,203,.18);
  --radius:      14px;
  --radius-lg:   20px;
  --shadow:      0 8px 24px rgba(0,0,0,.09);
  --shadow-soft: 0 4px 14px rgba(0,0,0,.06);
  --container:   1120px;
  --header-h:    70px;
  --h-font:      "Oswald", system-ui, sans-serif;
  --b-font:      "Inter", system-ui, sans-serif;
  --transition:  .18s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--b-font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
button, input, select, textarea { font: inherit; }
h1,h2,h3,h4 { margin: 0; }

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav__link:focus-visible,
.input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  box-shadow: var(--focus-ring);
}
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

/* Tap highlight off */
a, button, .btn, .nav__link { -webkit-tap-highlight-color: transparent; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 12px;
  background: #fff; border: 1px solid var(--stroke);
  padding: 10px 12px; border-radius: 12px; z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* Container */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.muted   { color: var(--muted); }
.muted-2 { color: var(--muted-2); }

/* SR only */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Background texture ──────────────────────────────── */
.bg-geo {
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0,114,188,.05), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(122,193,67,.08), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(243,112,33,.07), transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='920' height='520' viewBox='0 0 920 520'%3E%3Cg fill='none' stroke='%23d8d8d8' stroke-width='1'%3E%3Cpath d='M39 64L162 16l108 77-93 84z'/%3E%3Cpath d='M270 93l134-58 125 73-92 98z'/%3E%3Cpath d='M529 108l128-52 142 75-120 104z'/%3E%3Cpath d='M49 225l128-63 132 84-118 96z'/%3E%3Cpath d='M311 246l140-74 146 92-126 110z'/%3E%3Cpath d='M597 264l156-78 152 86-124 126z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, auto, 920px 520px;
  background-position: 0 0, 0 0, 0 0, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--h-font);
  letter-spacing: .06em;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
}
.brand__tagline {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 1px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--text); background: rgba(0,0,0,.04); }
.nav__link.is-active { color: var(--orange); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--stroke);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.8);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
  .brand { flex: 1; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 13px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; flex-direction: column; }
  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 8px) 16px auto 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(0,0,0,.09);
    border-radius: var(--radius-lg);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 11px 14px; border-radius: 10px; font-size: 14px; color: var(--text); }
  .nav__actions {
    margin-left: 0; padding-left: 0; border-left: none;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid var(--stroke);
    flex-direction: column;
    gap: 8px;
  }
  .nav__actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .brand__tagline { display: none; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13px;
  min-height: 44px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #e05e10; box-shadow: 0 4px 14px rgba(243,112,33,.35); }
.btn--ghost { background: rgba(255,255,255,.80); border-color: rgba(0,0,0,.10); }
.btn--ghost:hover { background: #fff; border-color: rgba(0,0,0,.16); }
.btn--dark { background: #111; color: #fff; }
.btn--dark:hover { background: #000; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.btn--outline { background: transparent; border-color: rgba(0,0,0,.18); }
.btn--outline:hover { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.28); }
.btn--accent { background: var(--green-dark); color: #fff; }
.btn--accent:hover { background: #3c7e22; box-shadow: 0 4px 14px rgba(78,155,45,.35); }
.btn--cta {
  background: linear-gradient(90deg, var(--orange), var(--blue));
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(11,107,203,.25);
}
.btn--cta:hover { filter: brightness(.93); box-shadow: 0 8px 24px rgba(11,107,203,.35); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.75);
}

/* ── Sections ────────────────────────────────────────── */
.section       { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section__kicker {
  display: inline-block;
  font-family: var(--h-font);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 700;
}
.section__title {
  font-family: var(--h-font);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--text);
}
.section__lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 68ch;
  line-height: 1.6;
}

/* ── Divider ─────────────────────────────────────────── */
.divider { height: 1px; background: rgba(0,0,0,.07); margin: 16px 0; }

/* ── Grid ────────────────────────────────────────────── */
.grid        { display: grid; gap: 16px; }
.grid--2     { grid-template-columns: repeat(2, 1fr); }
.grid--3     { grid-template-columns: repeat(3, 1fr); }
.grid--4     { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1000px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px)  { .grid--4 { grid-template-columns: 1fr; } }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(11,107,203,.14);
}
.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.card__title {
  margin: 0;
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 19px;
  line-height: 1.1;
  color: var(--text);
}
.card__desc {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.55;
}
.card__bullets { margin-top: 12px; display: grid; gap: 7px; }
.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #222;
  font-size: 13.5px;
}
.bullet::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  background: rgba(243,112,33,.18);
  border: 1px solid rgba(243,112,33,.40);
  margin-top: 5px;
  flex: 0 0 8px;
}
.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero        { padding: 52px 0 32px; }
.hero--home  {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(243,112,33,.11), transparent 44%),
    radial-gradient(circle at 80% 16%, rgba(11,107,203,.14), transparent 46%),
    radial-gradient(circle at 70% 74%, rgba(122,193,67,.12), transparent 52%),
    linear-gradient(115deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.80) 50%, rgba(11,107,203,.08) 100%);
}
.hero--home::before {
  content: "";
  position: absolute;
  inset: -80px -40px -80px -40px;
  background:
    radial-gradient(circle at 75% 28%, rgba(11,107,203,.20), transparent 45%),
    radial-gradient(circle at 88% 62%, rgba(0,0,0,.08), transparent 55%);
  filter: blur(14px);
  pointer-events: none;
  opacity: .85;
}
.hero--home > .container,
.hero--home > .hero__stripe { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__intro { padding: 12px 0 28px; }
.hero__headline {
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.02;
  margin: 0 0 14px;
}
.hero__headline span { color: var(--orange); }
.hero__sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
  margin-bottom: 20px;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Hero card (quote form) */
.hero__card {
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(10,24,50,.88), rgba(8,32,65,.82));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  padding: 24px;
  color: #fff;
}
.hero__cardTitle {
  font-family: var(--h-font);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}

/* Hero stripe */
.hero__stripe {
  margin-top: 32px;
  background: linear-gradient(90deg, rgba(6,26,52,.96), rgba(0,90,160,.80));
  border-top: 1px solid rgba(0,0,0,.10);
  padding: 14px 0;
  display: flex;
  align-items: center;
}

/* Hero panel (CTA block) */
.hero__panel {
  border: 1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,.80);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  overflow: hidden;
}

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(0,0,0,.12);
  background: rgba(255,255,255,.55);
}
.trust--stripe {
  border-style: solid;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}
.trust--stripe .badge {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.20);
}

/* ── Feature tiles ───────────────────────────────────── */
.section--features {
  padding: 48px 0 28px;
  background: rgba(255,255,255,.60);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.section--features .section__kicker,
.section--features .section__title,
.section--features .section__lead { text-align: center; margin-inline: auto; }

.feat {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(243,112,33,.20);
}
.feat__img {
  height: 130px;
  background: linear-gradient(120deg, rgba(11,107,203,.12), rgba(243,112,33,.10));
  overflow: hidden;
}
.feat__img img { width: 100%; height: 100%; object-fit: cover; }
.feat__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.feat__title {
  margin: 0;
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 16px;
  line-height: 1.1;
}
.feat__desc { color: var(--muted); font-size: 13.5px; }
.feat__actions { margin-top: auto; }
.feat__actions .btn { width: 100%; }

/* ── Process ─────────────────────────────────────────── */
.process {
  padding: 54px 0 40px;
  background:
    radial-gradient(circle at 16% 0%, rgba(11,107,203,.08), transparent 44%),
    radial-gradient(circle at 84% 100%, rgba(122,193,67,.08), transparent 46%),
    #fff;
}
.process__header { margin-bottom: 20px; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .process__grid { grid-template-columns: 1fr; gap: 10px; } }
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process__item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.process__num {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(243,112,33,.18), rgba(11,107,203,.14));
  border: 2px solid rgba(11,107,203,.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #111;
  flex: 0 0 40px;
}
.process__title { font-weight: 800; margin: 0 0 4px; font-size: 15px; }
.process__text  { color: var(--muted); font-size: 13.5px; }
.process__cta   { text-align: center; margin-top: 20px; }

/* ── Branded compliance steps ────────────────────────── */
.bsteps__grid { align-items: stretch; }
.bcard {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 120px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11,107,203,.10);
  border-color: rgba(11,107,203,.20);
}
.bcard__icon {
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 2px solid rgba(11,107,203,.26);
  background: linear-gradient(135deg, rgba(243,112,33,.12), rgba(11,107,203,.10));
  box-shadow: 0 6px 16px rgba(11,107,203,.10), 0 0 0 5px rgba(11,107,203,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bcard__body { display: grid; gap: 5px; }
.bcard__title {
  margin: 0;
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 16px;
}
.bcard__desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.trustcards {
  padding: 54px 0 40px;
  background:
    radial-gradient(circle at 16% 0%, rgba(11,107,203,.06), transparent 44%),
    radial-gradient(circle at 84% 100%, rgba(122,193,67,.06), transparent 46%),
    #fff;
  border-top: 1px solid rgba(0,0,0,.06);
}

.trustcards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1000px) {
  .trustcards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .trustcards__grid { grid-template-columns: 1fr; }
}

.trustcards__cta {
  margin-top: 24px;
  text-align: center;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  padding: 52px 0 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,114,188,.05), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(243,112,33,.05), transparent 40%);
  border-top: 1px solid rgba(0,0,0,.06);
}
.tgrid {
  display: grid;
  grid-template-columns: 0.88fr 2.12fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } }

.tsummary {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.tscore {
  font-family: var(--h-font);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}
.tstars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}
.google__logo { width: 18px; height: 18px; display: inline-block; }

/* Carousel */
.twrap {
  position: relative;
  overflow: hidden;
  padding: 4px 8px 4px;
  border-radius: var(--radius-lg);
}
.ttrack {
  display: flex;
  gap: 14px;
  will-change: transform;
}
.ttrack .tcard { flex: 0 0 calc((100% - 28px) / 3); }
@media (max-width: 1000px) { .ttrack .tcard { flex-basis: calc((100% - 14px) / 2); } }
@media (max-width: 700px)  { .ttrack .tcard { flex-basis: 100%; } }

.tcard {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tcard.is-revealed { animation: riseIn .65s cubic-bezier(0.22,1,0.36,1) forwards; }
.tcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(11,107,203,.14);
}
.tname {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--text);
}
.ttext {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: 6px;
}
@keyframes riseIn {
  0%   { opacity: 0; transform: translateY(10px) scale(.98); }
  100% { opacity: 1; transform: none; }
}

/* Carousel controls */
.tctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.tctrl:hover { background: #fff; box-shadow: var(--shadow); }
.tctrl--prev { left: 0; }
.tctrl--next { right: 0; }

/* ── Steps variants ──────────────────────────────────── */
.steps { display: grid; gap: 12px; }
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
}
.step__num {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(243,112,33,.14);
  border: 1px solid rgba(243,112,33,.30);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #111;
  flex-shrink: 0;
}
.step__title { font-weight: 800; margin: 0 0 3px; font-size: 14px; }
.step__text  { color: var(--muted); font-size: 13.5px; }

/* ── Forms ───────────────────────────────────────────── */
.form         { display: grid; gap: 12px; }
.field        { display: grid; gap: 5px; }
label         { font-weight: 600; font-size: 12.5px; color: var(--muted-2); }
.input, select, textarea {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,.13);
  background: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 14px;
  outline: none;
  min-height: 44px;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }
.input:focus, select:focus, textarea:focus {
  border-color: rgba(243,112,33,.50);
  box-shadow: 0 0 0 3px rgba(243,112,33,.12);
}

/* Mobile input font-size — prevent iOS zoom */
@media (max-width: 900px) {
  .input, select, textarea { font-size: 16px; }
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } }

.form__status {
  display: none;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.80);
  color: var(--muted);
  font-size: 13.5px;
}
.form__status.is-show    { display: block; }
.form__status.is-error   { border-color: rgba(237,28,36,.25); background: rgba(237,28,36,.06); color: #7a0f14; }
.form__status.is-success { border-color: rgba(78,155,45,.25); background: rgba(78,155,45,.08); color: #1d4a10; }

/* Hero form (dark card) */
.form--hero { display: grid; grid-template-columns: 1fr; gap: 11px; }
.form--hero label { color: rgba(255,255,255,.80); font-size: 12px; }
.hero__card .input,
.hero__card select {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.96);
  height: 44px;
  padding: 10px 13px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .hero__card .input,
  .hero__card select { font-size: 16px; }
}
.hero__card .input:focus,
.hero__card select:focus {
  border-color: rgba(122,193,67,.60);
  box-shadow: 0 0 0 3px rgba(122,193,67,.18);
}
.form--hero .btn {
  width: 100%;
  margin-top: 4px;
  border-radius: 20px;
  min-height: 46px;
}

/* Form panel (dark bg on contact page) */
.form-panel {
  background: linear-gradient(160deg, rgba(8,30,56,1) 0%, rgba(12,44,78,1) 100%);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  padding: 24px;
  color: #eaf0f6;
}
.form-panel .section__title { color: #fff; }
.form-panel .section__lead  { color: rgba(200,215,230,.90); }
.form-panel .section__kicker { color: rgba(255,200,100,.90); }
.form-panel .divider        { border-color: rgba(255,255,255,.10); }
.form-panel label           { color: rgba(200,218,238,.90); }
.form-panel .input,
.form-panel select,
.form-panel textarea {
  background: rgba(255,255,255,.97);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 11px 13px;
}
.form-panel .btn--primary   { width: 100%; border-radius: 14px; min-height: 46px; font-weight: 900; }
.agree {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(200,218,238,.88); font-size: 13px;
}
.agree a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Checkbox */
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--orange); }
.check span  { font-size: 13px; color: #222; }
.check--dark span { color: rgba(255,255,255,.82); font-size: 12.5px; }
.check--dark a    { color: #fff; text-decoration: underline; }

/* ── Page hero ───────────────────────────────────────── */
.page-hero { padding: 40px 0 20px; }
.page-hero__title {
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0 0 8px;
}
.page-hero__lead { color: var(--muted); max-width: 75ch; font-size: 15px; line-height: 1.6; }

/* ── Details (services page) ─────────────────────────── */
.details { margin-top: 24px; display: grid; gap: 14px; }
.details__item {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.details__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.details__name {
  margin: 0;
  font-family: var(--h-font);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 22px;
}
.checklist { display: grid; gap: 9px; margin-top: 10px; }

/* ── Options / service bullets ───────────────────────── */
.section--options {
  padding: 44px 0;
  background: rgba(0,114,188,.05);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.section--options .section__title,
.section--options .section__lead { text-align: center; margin-inline: auto; }
.options { display: grid; gap: 12px; }
.options.grid--3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 1100px) { .options.grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px)  { .options.grid--3 { grid-template-columns: 1fr; } }
.option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 13.5px;
  color: #0f2748;
  transition: box-shadow var(--transition), transform var(--transition);
}
.option:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.option__icon {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(122,193,67,.50);
  background: rgba(122,193,67,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex: 0 0 26px;
  font-size: 16px;
  box-shadow: 0 0 0 3px rgba(122,193,67,.10);
}

/* ── Reviews (legacy blocks) ─────────────────────────── */
.reviews, .reviews2 { padding: 48px 0 36px; border-top: 1px solid rgba(0,0,0,.06); }
.reviews__grid,
.reviews2__grid {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) {
  .reviews__grid, .reviews2__grid { grid-template-columns: 1fr; }
}
.reviews__summary,
.summary {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
}
.reviews__cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 13px;
}
@media (max-width: 1000px) { .reviews__cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px)  { .reviews__cards { grid-template-columns: 1fr; } }
.review {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 15px;
}
.review__name { font-weight: 800; margin: 0 0 5px; font-size: 14px; }
.review__text { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.stars {
  display: flex; gap: 3px; align-items: center; justify-content: center;
  margin: 6px 0; color: var(--yellow); font-size: 17px;
}
.reviews__cta { text-align: center; margin-top: 18px; }

/* ── Legal pages ─────────────────────────────────────── */
.legal {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.legal h2 {
  font-family: var(--h-font);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 16px 0 8px;
  font-size: 18px;
}
.legal p, .legal li { color: var(--muted); font-size: 14px; }
.legal ul { list-style: disc; padding-left: 18px; display: grid; gap: 6px; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  margin-top: 0;
  padding: 0 0 0;
  background: linear-gradient(160deg, #0a1828 0%, #0c2240 60%, #091a14 100%);
  color: rgba(200,218,240,.90);
  border-top: none;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, #fbb040 50%, var(--green) 100%);
}
.footer__inner {
  padding: 52px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 24px; } }

.footer__logo { width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; }
.footer__tagline { font-size: 13.5px; line-height: 1.65; color: rgba(200,218,240,.82); max-width: 38ch; margin-top: 10px; }
.footer__contact-chips { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(200,218,240,.80);
  transition: color var(--transition);
}
.footer__chip:hover { color: var(--orange); }
.footer__title {
  font-family: var(--h-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  margin-bottom: 14px;
  color: var(--orange);
}
.footer__links { display: grid; gap: 10px; font-size: 13.5px; }
.footer__links a { color: rgba(200,218,240,.82); transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__links a::before {
  content: '›';
  margin-right: 6px;
  color: rgba(243,112,33,.5);
}
.footer__bottom {
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom small { font-size: 12.5px; color: rgba(200,218,240,.55); }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { font-size: 12.5px; color: rgba(200,218,240,.55); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(200,218,240,.90); }

/* ── Reveal animation ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(10px); }
.reveal.is-revealed {
  opacity: 1; transform: none;
  transition: opacity .45s ease, transform .45s ease;
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Smooth scroll ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Mobile responsive ───────────────────────────────── */
@media (max-width: 700px) {
  .section { padding: 40px 0; }
  .section--tight { padding: 26px 0; }
  .hero--home { padding: 32px 0 0; }
  .hero { padding: 30px 0 18px; }
  .hero__intro { padding: 8px 0 20px; }
  .page-hero { padding: 22px 0 12px; }
  .process { padding: 36px 0 24px; }
  .testimonials { padding: 36px 0 24px; }
  .footer__inner { padding: 36px 0 20px; }
  .footer__grid { grid-template-columns: 1fr !important; gap: 22px !important; }
  .hero__card { padding: 18px; border-radius: 18px; }
  .hero__panel { padding: 18px; }
  .card { padding: 16px; }
  .card__actions { flex-direction: column; }
  .card__actions .btn { width: 100%; }
  .bcard { grid-template-columns: 52px 1fr; min-height: unset; }
  .bcard__icon { width: 50px; height: 50px; }
  .hero__stripe { padding: 10px 0; }
  .trust { gap: 6px; padding: 10px; }
  .badge { font-size: 11px; padding: 5px 9px; }
  .process__item { padding: 14px; }
  .details__item { padding: 16px; }
}
@media (max-width: 480px) {
  .hero__cta .btn { width: 100%; }
  .grid--4 { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .container { width: calc(100% - 24px); }
  .section__title { font-size: 20px; }
  .hero__headline { font-size: 24px; }
  .btn { padding: 10px 14px; font-size: 12.5px; }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .hero--home { padding: 20px 0 0; }
  .hero__headline { font-size: 26px; }
  .section { padding: 28px 0; }
}

/* Print */
@media print {
  .site-header, .hero__card, .hero__stripe, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .site-footer { background: #fff; color: #000; }
  .container { width: 100%; }
}


/* ================================================================
   SERVICE CARD UPGRADES
   ================================================================ */

/* Make cards full-height in grid so buttons always land at bottom */
.card {
  display: flex;
  flex-direction: column;
}
.card__bullets { flex: 1; }
.card__actions { margin-top: auto; padding-top: 16px; }

/* Service icon inside card */
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(243,112,33,.14), rgba(11,107,203,.10));
  border: 1.5px solid rgba(243,112,33,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  margin-bottom: 12px;
}
.card__icon svg { display: block; }

/* Card top: icon row + badge */
.card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

/* On mobile, don't stack buttons — keep them side by side but smaller */
@media (max-width: 700px) {
  .card__actions {
    flex-direction: row;
  }
  .card__actions .btn {
    flex: 1;
    font-size: 12.5px;
    padding: 10px 10px;
  }
}

/* ================================================================
   UNIVERSAL SERVICE MODAL  (v3 — definitive)
   ================================================================ */

.svc-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 500;
  visibility: hidden;
  pointer-events: none;
}
.svc-modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop */
.svc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 300ms ease, backdrop-filter 300ms ease;
  cursor: pointer;
}
.svc-modal[aria-hidden="false"] .svc-modal__backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card */
.svc-modal__card {
  position: relative;
  width: min(700px, 100%);
  max-height: min(88vh, 740px);
  border-radius: 24px;
  background: #fff;
  color: #111;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 24px 64px rgba(0,0,0,.26),
    0  6px 20px rgba(0,0,0,.10);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  outline: none;
  /* Entry */
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition:
    opacity 360ms cubic-bezier(.22,1,.36,1),
    transform 360ms cubic-bezier(.22,1,.36,1);
}
.svc-modal[aria-hidden="false"] .svc-modal__card {
  opacity: 1;
  transform: none;
}

/* Close */
.svc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.svc-modal__close:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.40);
}
.svc-modal__close svg { display: block; }

/* Header — dark branded */
.svc-modal__head {
  padding: 28px 32px 22px;
  background: linear-gradient(140deg, #0c1f3a 0%, #132e54 100%);
  border-bottom: 3px solid var(--orange);
  position: relative;
}
/* Subtle decorative shape */
.svc-modal__head::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(243,112,33,.08);
  pointer-events: none;
}

.svc-modal__kicker {
  font-family: var(--h-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  position: relative;
}
.svc-modal__title {
  font-family: var(--h-font);
  font-size: clamp(17px, 2.8vw, 23px);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 7px;
  max-width: 88%;
  position: relative;
}
.svc-modal__subtitle {
  font-size: 13.5px;
  color: rgba(200,218,240,.72);
  line-height: 1.55;
  margin: 0;
  position: relative;
}

/* Body */
.svc-modal__body {
  overflow-y: auto;
  padding: 22px 32px;
  overscroll-behavior: contain;
  background: #fff;
}
.svc-modal__body::-webkit-scrollbar { width: 4px; }
.svc-modal__body::-webkit-scrollbar-track { background: #f5f5f5; }
.svc-modal__body::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }
.svc-modal__body::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* Lists */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Feature list */
.svc-list--feat { display: grid; gap: 0; }
.svc-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(0,0,0,.055);
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}
.svc-feat:last-child { border-bottom: none; }
.svc-feat__dot {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(243,112,33,.14);
}

/* Pricing list */
.svc-list--pricing { display: grid; gap: 0; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(0,0,0,.055);
  font-size: 14px;
}
.svc-row:last-child { border-bottom: none; }
.svc-row__label { font-weight: 500; color: #1a1a1a; }
.svc-row__price {
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  font-size: 14px;
  font-family: var(--h-font);
  letter-spacing: .02em;
}
.svc-note {
  font-size: 11.5px;
  color: #999;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.08);
  font-style: italic;
}

/* Info banner */
.svc-info {
  font-size: 13px;
  color: #4a4a4a;
  margin-bottom: 14px;
  padding: 10px 16px;
  background: rgba(243,112,33,.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}

/* Checklist */
.svc-list--check { display: grid; gap: 0; }
.svc-check {
  padding: 10px 4px;
  border-bottom: 1px solid rgba(0,0,0,.055);
}
.svc-check:last-child { border-bottom: none; }
.svc-check label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}
.svc-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 5px;
  accent-color: var(--orange);
  cursor: pointer;
}

/* Stagger animation */
@keyframes svcIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: none; }
}
.svc-item-in {
  animation: svcIn 320ms cubic-bezier(.22,1,.36,1) both;
}

/* Footer */
.svc-modal__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 32px;
  background: #f9f9f9;
  border-top: 1px solid rgba(0,0,0,.065);
}

body.is-modal-open { overflow: hidden; }

/* Mobile — slide up sheet */
@media (max-width: 640px) {
  .svc-modal {
    padding: 0;
    align-items: flex-end;
  }
  .svc-modal__card {
    width: 100%;
    max-height: 93dvh;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
    transition:
      opacity 340ms cubic-bezier(.22,1,.36,1),
      transform 340ms cubic-bezier(.22,1,.36,1);
  }
  .svc-modal[aria-hidden="false"] .svc-modal__card {
    opacity: 1;
    transform: none;
  }
  .svc-modal__head { padding: 22px 22px 18px; }
  .svc-modal__body { padding: 18px 22px; }
  .svc-modal__foot {
    padding: 14px 22px 22px;
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .svc-modal__foot .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   PAGE ENHANCEMENTS v2 — Contrast, Hero, Shared Components
   ================================================================ */

/* ── Dark page hero (shared across About, FAQ, Contact) ── */
.dark-hero {
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at 15% 20%, rgba(243,112,33,.13), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(11,107,203,.15), transparent 44%),
    radial-gradient(circle at 60% 85%, rgba(122,193,67,.10), transparent 48%),
    linear-gradient(135deg, #0a1828 0%, #112240 55%, #0a1e12 100%);
  position: relative;
  overflow: hidden;
}
.dark-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40L40 0L80 40L40 80z' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}
.dark-hero__inner { position: relative; z-index: 1; }
.dark-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--h-font);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(243,112,33,.12);
  border: 1px solid rgba(243,112,33,.28);
  border-radius: 100px;
}
.dark-hero__title {
  font-family: var(--h-font);
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.06;
  margin: 0 0 16px;
}
.dark-hero__title span { color: var(--orange); }
.dark-hero__lead {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(210,228,248,.82);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.dark-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Section header kicker ── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--h-font);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-h2 {
  font-family: var(--h-font);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.12;
  margin: 0 0 10px;
}
.section-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.62;
  max-width: 540px;
}

/* ── Value / stat cards ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: #fff;
  padding: 28px 24px;
  text-align: center;
}
.stat-card__num {
  font-family: var(--h-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ── Value cards (About) ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
@media (max-width: 860px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(243,112,33,.18);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(243,112,33,.14), rgba(11,107,203,.08));
  border: 1.5px solid rgba(243,112,33,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.value-card__title {
  font-family: var(--h-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.value-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ Accordion ── */
.faq-list { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.is-open {
  border-color: rgba(243,112,33,.28);
  box-shadow: 0 4px 16px rgba(243,112,33,.08);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.faq-trigger__q {
  font-family: var(--h-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.25;
}
.faq-item.is-open .faq-trigger__q { color: var(--orange); }
.faq-trigger__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(243,112,33,.09);
  border: 1px solid rgba(243,112,33,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.is-open .faq-trigger__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.is-open .faq-body { max-height: 400px; }
.faq-body__inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: #2a2a2a;
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 14px;
}

/* ── Contact info cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(243,112,33,.20);
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card__label {
  font-family: var(--h-font);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
  transition: color var(--transition);
}
.contact-card:hover .contact-card__value { color: var(--orange); }
.contact-card__sub {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}

/* ── Form improvements ── */
.form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.form-card__kicker { margin-bottom: 4px; }
.form-card__title {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.form-card__lead { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: block;
  letter-spacing: .02em;
}
.input, textarea, select {
  border-color: rgba(0,0,0,.15) !important;
  color: #111 !important;
}
.input::placeholder, textarea::placeholder { color: #9a9a9a !important; }

/* ── Dark CTA banner ── */
.dark-cta {
  background: linear-gradient(135deg, #0a1828 0%, #112240 60%, #091a12 100%);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.dark-cta::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,112,33,.12), transparent 70%);
  pointer-events: none;
}
.dark-cta::after {
  content: '';
  position: absolute;
  left: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,193,67,.08), transparent 70%);
  pointer-events: none;
}
.dark-cta__inner { position: relative; z-index: 1; }
.dark-cta__kicker {
  font-family: var(--h-font);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.dark-cta__title {
  font-family: var(--h-font);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 10px;
}
.dark-cta__lead {
  font-size: 14.5px;
  color: rgba(210,228,248,.75);
  line-height: 1.62;
  max-width: 440px;
  margin-bottom: 24px;
}
.dark-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Print fix */
@media print {
  .dark-hero, .dark-cta { background: #fff !important; color: #000 !important; }
}
