/* =========================================================
   Next8.Digital — shared stylesheet
   Bold & punchy · orange/red + navy · geometric motifs
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  /* Brand */
  --red:        #F2330B;
  --red-600:    #D62A04;
  --red-700:    #B72404;
  --red-tint:   #FEEDE8;
  --navy:       #0B1B3A;
  --navy-700:   #122A52;
  --navy-300:   #6B7A99;
  --ink:        #0E1116;

  /* Neutrals */
  --bg:         #FFFFFF;
  --bg-soft:    #F4F4F6;
  --bg-soft-2:  #EFEFF3;
  --line:       #E6E6EC;
  --muted:      #5C6373;
  --text:       #131722;

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(11,27,58,.06);
  --shadow-md: 0 14px 40px rgba(11,27,58,.10);
  --shadow-lg: 0 30px 80px rgba(11,27,58,.16);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--red); color: #fff; }

.shell { width: min(100% - calc(var(--gutter) * 2), var(--maxw)); margin-inline: auto; }

/* ---------- Reusable pieces ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.hl { color: var(--red); }
.hl-box {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: .02em .28em;
  border-radius: 6px;
  transform: rotate(-1deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(242,51,11,.28); }
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242,51,11,.36); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* Section scaffolding */
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section.soft { background: var(--bg-soft); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h1, .section.navy h2, .section.navy h3 { color: #fff; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-top: 18px;
}
.section-head p { color: var(--muted); margin-top: 18px; font-size: 18px; }
.section.navy .section-head p { color: #B9C2D6; }

/* ===========================================================
   NAVBAR
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  position: relative;
  flex: none;
}
.brand-mark i {
  position: absolute; inset: 4px;
  background: var(--red);
  border-radius: 9px;
  transform: rotate(45deg);
}
.brand-mark b {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.04em;
}
.brand-word { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -.03em; color: var(--navy); }
.brand-word span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 3px;
  background: var(--red); border-radius: 2px;
}

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 10px; min-width: 250px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px; font-size: 15px;
  font-family: var(--font-body); font-weight: 600; color: var(--navy);
}
.drop a:hover { background: var(--bg-soft); color: var(--red); }
.drop a .dot { width: 8px; height: 8px; background: var(--red); border-radius: 2px; transform: rotate(45deg); flex: none; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--navy);
}
.nav-phone .ico { width: 34px; height: 34px; border-radius: 999px; background: var(--red); color: #fff; display: grid; place-items: center; }
.nav-phone .ico svg { width: 16px; height: 16px; }

.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: #fff; padding: 24px var(--gutter);
  flex-direction: column; gap: 6px;
  transform: translateY(-110%); transition: transform .3s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy); padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.active { color: var(--red); }
.mobile-menu .btn { margin-top: 18px; }

/* ===========================================================
   GEOMETRIC MOTIFS
   =========================================================== */
.diamond { position: absolute; border-radius: 14px; transform: rotate(45deg); z-index: 0; }
.diamond.red { background: var(--red); }
.diamond.navy { background: var(--navy); }
.diamond.ink { background: var(--ink); }
.diamond.outline { background: transparent; border: 3px solid var(--red); }
.diamond.outline-navy { background: transparent; border: 3px solid rgba(255,255,255,.2); }

/* ===========================================================
   HERO (home)
   =========================================================== */
.hero {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
}
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  font-weight: 900;
  line-height: .98;
}
.hero-copy h1 .num { color: var(--red); }
.hero-copy p.lead { color: var(--muted); font-size: 19px; margin-top: 26px; max-width: 30em; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-stats { margin-top: 44px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: var(--navy); line-height: 1; }
.hero-stat .l { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Lead form card */
.lead-card {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
}
.lead-card h3 { font-size: 24px; }
.lead-card .sub { color: var(--muted); font-size: 15px; margin-top: 6px; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-tint);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.field .err { color: var(--red); font-size: 12.5px; margin-top: 5px; display: none; font-weight: 600; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.checks-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy); margin: 6px 0 10px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin-bottom: 22px; }
.check { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text); cursor: pointer; user-select: none; }
.check input { appearance: none; width: 19px; height: 19px; border: 1.5px solid var(--line); border-radius: 5px; display: grid; place-items: center; transition: .15s; flex: none; }
.check input:checked { background: var(--red); border-color: var(--red); }
.check input:checked::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 700; }

.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; border-radius: 999px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success .tick svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin-top: 8px; }

/* ===========================================================
   SERVICE CARDS GRID
   =========================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--red);
  transition: width .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { width: 100%; }
.card .ico {
  width: 62px; height: 62px; border-radius: 16px; background: var(--red-tint); color: var(--red);
  display: grid; place-items: center; margin-bottom: 20px; transition: .25s;
}
.card:hover .ico { background: var(--red); color: #fff; }
.card .ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--red); }
.card .more svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* query card (last cell variant) */
.card.query { background: var(--navy); border-color: var(--navy); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.card.query::after { display: none; }
.card.query:hover { transform: translateY(-6px); }
.card.query h3 { color: #fff; font-size: 26px; }
.card.query p { color: #B9C2D6; margin: 10px 0 22px; }

/* ===========================================================
   WHY CHOOSE / COMPARISON
   =========================================================== */
.vs-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; margin-top: 56px; position: relative; }
.vs-col { border: 2px solid var(--line); border-radius: var(--r-lg); padding: 38px 34px; background: #fff; }
.vs-col.win { border-color: var(--red); box-shadow: var(--shadow-md); }
.vs-col h3 { font-size: 22px; margin-bottom: 4px; }
.vs-col .tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.vs-col.win .tag { color: var(--red); }
.vs-col.lose .tag { color: var(--navy-300); }
.vs-list { display: flex; flex-direction: column; gap: 15px; }
.vs-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 15.5px; }
.vs-list { padding: 0; margin: 0; }
.vs-list .mk { width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; flex: none; margin-top: 1px; }
.vs-list .mk svg { width: 13px; height: 13px; }
.vs-col.win .mk { background: var(--red-tint); color: var(--red); }
.vs-col.lose .mk { background: #F0F1F4; color: var(--navy-300); }
.vs-col.lose li { color: var(--muted); }
.vs-badge {
  align-self: center; margin: 0 -18px; z-index: 3;
  width: 64px; height: 64px; border-radius: 999px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 18px;
  box-shadow: var(--shadow-md);
}

/* ===========================================================
   STATS BAND
   =========================================================== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-item .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 5vw, 64px); color: #fff; line-height: 1; }
.stat-item .n .hl { color: var(--red); }
.stat-item .l { color: #B9C2D6; margin-top: 10px; font-size: 15px; }

/* ===========================================================
   PROCESS STEPS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step { position: relative; padding-top: 18px; }
.step .num { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: var(--red-tint); line-height: 1; }
.step h3 { font-size: 20px; margin: 4px 0 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; }
.quote .stars { color: var(--red); letter-spacing: 2px; font-size: 16px; }
.quote p { font-size: 16.5px; margin: 16px 0 22px; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .av { width: 46px; height: 46px; border-radius: 999px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.quote .who b { display: block; font-family: var(--font-display); color: var(--navy); }
.quote .who span { font-size: 13.5px; color: var(--muted); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); }
.faq-q .pm { width: 32px; height: 32px; border-radius: 999px; background: var(--bg-soft); display: grid; place-items: center; flex: none; transition: .2s; }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .25s; }
.faq-item.open .faq-q .pm { background: var(--red); color: #fff; }
.faq-item.open .faq-q .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding-bottom: 24px; font-size: 16px; }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--red); border-radius: var(--r-xl); padding: clamp(44px, 6vw, 80px); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 52px); }
.cta-band p { color: rgba(255,255,255,.9); margin: 16px auto 30px; max-width: 36em; font-size: 18px; }
.cta-band .btn-light { color: var(--red); }
.cta-band .diamond.ink { opacity: .14; }

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */
.page-head { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: clamp(56px, 8vw, 110px) 0 clamp(56px, 7vw, 90px); }
.page-head .shell { position: relative; z-index: 2; }
.page-head .eyebrow { color: #fff; }
.page-head .eyebrow::before { background: var(--red); }
.page-head h1 { color: #fff; font-size: clamp(40px, 6vw, 76px); margin-top: 16px; }
.page-head p { color: #B9C2D6; margin-top: 18px; max-width: 46em; font-size: 19px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #8C99B5; margin-top: 22px; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .5; }

/* ===========================================================
   ABOUT / split content
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.split.rev > .split-media { order: -1; }
.media-block {
  position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 420px;
  background: var(--navy); display: grid; place-items: center;
}
.media-block .badge {
  position: absolute; bottom: 26px; left: 26px; z-index: 3;
  background: #fff; border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md);
}
.media-block .badge .n { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--red); }
.media-block .badge .l { font-size: 13px; color: var(--muted); }
.ticks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.ticks .mk { width: 26px; height: 26px; border-radius: 8px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex: none; }
.ticks .mk svg { width: 15px; height: 15px; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.value { padding: 30px 26px; border-radius: var(--r-lg); background: var(--bg-soft); }
.value .ico { width: 54px; height: 54px; border-radius: 14px; background: #fff; color: var(--red); display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.value .ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 20px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; }

.team { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; }
.member { text-align: center; }
.member .ph { aspect-ratio: 1; border-radius: var(--r-lg); background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 40px; margin-bottom: 16px; position: relative; overflow: hidden; }
.member h3 { font-size: 19px; }
.member span { color: var(--red); font-size: 14px; font-weight: 600; }

/* ===========================================================
   SERVICES (detailed rows)
   =========================================================== */
.srv-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,70px); align-items: center; padding: clamp(40px,5vw,64px) 0; border-bottom: 1px solid var(--line); }
.srv-row:last-child { border-bottom: 0; }
.srv-row.rev .srv-visual { order: -1; }
.srv-visual { position: relative; border-radius: var(--r-xl); background: var(--bg-soft); min-height: 360px; overflow: hidden; display: grid; place-items: center; }
.srv-visual .big-ico { width: 120px; height: 120px; border-radius: 30px; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.srv-visual .big-ico svg { width: 58px; height: 58px; }
.srv-content .kicker { font-family: var(--font-display); font-weight: 900; font-size: 15px; color: var(--red); }
.srv-content h2 { font-size: clamp(28px, 4vw, 44px); margin: 8px 0 16px; }
.srv-content p { color: var(--muted); font-size: 17px; }
.srv-content .ticks { margin-top: 22px; }

.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.price { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; background: #fff; position: relative; transition: transform .2s, box-shadow .2s; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.feat { border-color: var(--red); box-shadow: var(--shadow-md); }
.price .pop { position: absolute; top: -13px; left: 30px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price h3 { font-size: 22px; }
.price .amt { font-family: var(--font-display); font-weight: 900; font-size: 48px; color: var(--navy); margin: 14px 0 4px; }
.price .amt small { font-size: 16px; color: var(--muted); font-weight: 600; }
.price .desc { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.price .ticks { margin: 0 0 26px; }
.price .ticks li { font-size: 15px; }
.price .btn { width: 100%; }

/* ===========================================================
   BLOG
   =========================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 56px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
.post .thumb .cat { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 6px 12px; border-radius: 999px; z-index: 3; }
.post .body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: 13px; color: var(--muted); display: flex; gap: 14px; margin-bottom: 12px; }
.post h3 { font-size: 21px; line-height: 1.15; }
.post p { color: var(--muted); font-size: 15px; margin-top: 12px; }
.post .read { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--red); }
.post .read svg { width: 15px; height: 15px; transition: transform .2s; }
.post:hover .read svg { transform: translateX(4px); }

.post.feature { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; }
.post.feature .thumb { aspect-ratio: auto; min-height: 340px; }
.post.feature .body { justify-content: center; padding: clamp(30px,4vw,52px); }
.post.feature h3 { font-size: clamp(26px,3.4vw,40px); }
.post.feature p { font-size: 17px; }

/* blog category chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--navy); transition: .15s; }
.chip:hover, .chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip.active { background: var(--red); border-color: var(--red); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,4vw,56px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--r-lg); background: var(--bg-soft); }
.info-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--red); color: #fff; display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 18px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15.5px; }
.info-card a:hover { color: var(--red); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px,3vw,44px); box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 26px; margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); margin-bottom: 26px; }

.map-strip { height: 360px; background: var(--bg-soft); position: relative; overflow: hidden; display: grid; place-items: center; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--navy); color: #fff; padding: clamp(56px,7vw,90px) 0 36px; position: relative; overflow: hidden; }
.footer .shell { position: relative; z-index: 2; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.foot-brand .brand-word { color: #fff; }
.foot-brand p { color: #9AA6C0; margin-top: 18px; font-size: 15px; max-width: 30ch; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .18s; }
.foot-social a:hover { background: var(--red); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--font-display); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: #9AA6C0; font-size: 15px; padding: 7px 0; transition: color .15s; }
.foot-col a:hover { color: var(--red); }
.foot-news p { color: #9AA6C0; font-size: 15px; margin-bottom: 16px; }
.foot-news .nl { display: flex; gap: 8px; }
.foot-news .nl input { flex: 1; padding: 13px 15px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font-body); font-size: 14px; }
.foot-news .nl input::placeholder { color: #8390AE; }
.foot-news .nl input:focus { outline: none; border-color: var(--red); }
.foot-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8390AE; font-size: 14px; }
.foot-bottom a:hover { color: #fff; }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .cards, .quotes, .blog-grid, .price-grid, .values { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2,1fr); }
  .stats-band, .steps { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .post.feature { grid-template-columns: 1fr; grid-column: span 2; }
  .post.feature .thumb { min-height: 240px; }
}
@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: block; }
}
@media (max-width: 920px) {
  .hero-grid, .split, .srv-row, .srv-row.rev, .contact-grid { grid-template-columns: 1fr; }
  .split.rev > .split-media, .srv-row.rev .srv-visual { order: 0; }
  .vs-wrap { grid-template-columns: 1fr; gap: 30px; }
  .vs-badge { margin: -42px auto; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .cards, .quotes, .blog-grid, .price-grid, .values, .team, .field-row, .checks, .stats-band, .steps { grid-template-columns: 1fr; }
  .post.feature { grid-column: span 1; }
  .foot-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .cta-band { padding: 40px 24px; }
}
