/* ==========================================================================
   Grey Bracket — DevOps Automation
   Global stylesheet
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Layout helpers
   4.  Buttons & chips
   5.  Announcement bar + Header / navigation
   6.  Hero
   7.  Stats & logo strip
   8.  Section headings
   9.  Cards (service, feature, industry, case study, engagement)
   10. Split feature sections
   11. Process timeline
   12. Tech stack tabs
   13. Testimonials
   14. Accordion / FAQ
   15. CTA band
   16. Forms
   17. Footer
   18. Inner page hero + content blocks
   19. Motion & utilities
   20. Responsive
   ========================================================================== */

/* 1. Tokens ============================================================== */
:root {
  /* Brand */
  --brand: #00a97d;
  --brand-dark: #008a66;
  --brand-light: #22c89a;
  --brand-soft: #e6f7f1;

  /* Neutrals */
  --ink-900: #0e1013;
  --ink-800: #14171b;
  --ink-700: #1c2026;
  --ink-600: #262b33;
  --text: #23272e;
  --text-2: #4b525c;
  --muted: #6f7783;
  --line: #e4e8ec;
  --line-dark: rgba(255, 255, 255, .12);
  --bg: #ffffff;
  --bg-soft: #f6f8f9;
  --bg-soft-2: #eef2f4;

  /* Type */
  --font-head: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --sh-2: 0 8px 24px rgba(16, 24, 40, .08);
  --sh-3: 0 20px 48px rgba(16, 24, 40, .12);

  /* Rhythm */
  --pad-section: 96px;
  --container: 1200px;
  --header-h: 76px;
}

/* 2. Reset & base ======================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: -.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 1.2rem + 2.9vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.1rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand); }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* 3. Layout helpers ====================================================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }

.section { padding: var(--pad-section) 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink-900); color: rgba(255, 255, 255, .72); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: 26px; }
.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)); }

/* 4. Buttons & chips ===================================================== */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .97rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center; white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 169, 125, .28); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--line); }
.btn--outline:hover { --btn-fg: var(--brand-dark); border-color: var(--brand); box-shadow: none; background: var(--brand-soft); }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255, 255, 255, .32); }
.btn--ghost-light:hover { border-color: var(--brand); background: rgba(0, 169, 125, .14); box-shadow: none; }

.btn--dark { --btn-bg: var(--ink-800); }
.btn--dark:hover { box-shadow: 0 10px 24px rgba(14, 16, 19, .28); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--brand-dark);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .86);
}
.chip svg { width: 13px; height: 13px; color: var(--brand-light); }

.tag {
  display: inline-block; padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: .76rem; font-weight: 600; letter-spacing: .02em;
}

/* 5. Announcement bar + Header ========================================== */
.announce {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff; font-size: .87rem; position: relative; z-index: 60;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 42px; padding-block: 8px; text-align: center; }
.announce a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: #fff; opacity: .85; }
.announce__close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 1.15rem; line-height: 1;
  cursor: pointer; opacity: .8; padding: 6px;
}
.announce__close:hover { opacity: 1; }
.announce.is-hidden { display: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-transparent { background: transparent; border-bottom-color: transparent; }
.site-header.is-stuck { box-shadow: var(--sh-1); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; min-height: var(--header-h);
}

/* Brand / logo (wordmark rendered as text so it stays crisp at any size) */
.brand { display: inline-flex; flex-direction: column; line-height: 1; flex: none; }
.brand:hover { color: inherit; }
.brand__name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.42rem; letter-spacing: -.035em; color: var(--ink-800);
  transition: color .25s ease;
}
.brand__accent { color: var(--brand); }
.brand__tag {
  font-family: var(--font-head); font-weight: 500;
  font-size: .585rem; letter-spacing: .155em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; padding-left: 2px;
  transition: color .25s ease;
}
.site-header.is-transparent .brand__name { color: #fff; }
.site-header.is-transparent .brand__tag { color: rgba(255, 255, 255, .62); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  letter-spacing: .01em; color: var(--text); padding: 12px 14px; border-radius: var(--r-sm);
  background: none; border: 0; cursor: pointer; font-family: var(--font-head);
}
.nav__link:hover, .nav__item.is-open > .nav__link { color: var(--brand-dark); }
.nav__link[aria-current="page"] { color: var(--brand-dark); font-weight: 600; }
.nav__link .caret { width: 10px; height: 10px; transition: transform .2s ease; }
.nav__item.is-open .caret { transform: rotate(180deg); }
.site-header.is-transparent .nav__link { color: rgba(255, 255, 255, .88); }
.site-header.is-transparent .nav__link:hover,
.site-header.is-transparent .nav__link[aria-current="page"] { color: var(--brand-light); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, 8px);
  min-width: 290px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-3); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown--wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 500; color: var(--text); line-height: 1.45;
}
.dropdown a span { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; }
.dropdown a:hover { background: var(--bg-soft); color: var(--brand-dark); }

.nav__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__menu .btn { display: none; }
.nav__item--cta { border-bottom: 0 !important; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0;
}
.nav__toggle span { display: block; width: 19px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.site-header.is-transparent .nav__toggle { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); }
.site-header.is-transparent .nav__toggle span { background: #fff; }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__scrim {
  position: fixed; inset: 0; background: rgba(14, 16, 19, .5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; z-index: 45;
}
body.nav-open .nav__scrim { opacity: 1; visibility: visible; }

/* 6. Hero =============================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink-900);
  color: rgba(255, 255, 255, .74);
  margin-top: calc(-1 * var(--header-h) - 1px);
  padding: calc(var(--header-h) + 92px) 0 96px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 80% 10%, rgba(0, 169, 125, .17), transparent 62%),
    radial-gradient(600px 400px at 4% 90%, rgba(0, 169, 125, .07), transparent 60%);
  pointer-events: none;
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 100%);
}
.hero__bracket {
  position: absolute; font-family: var(--font-head); font-weight: 700;
  color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .06);
  line-height: .8; user-select: none; pointer-events: none;
}
.hero__bracket--l { left: -34px; top: 12%; font-size: 30rem; }
.hero__bracket--r { right: -34px; bottom: -6%; font-size: 30rem; }

.hero .container { position: relative; z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: var(--r-pill);
  background: rgba(0, 169, 125, .12); border: 1px solid rgba(0, 169, 125, .34);
  color: #fff; font-size: .8rem; font-weight: 500; margin-bottom: 26px;
}
.hero__eyebrow b { color: var(--brand-light); font-weight: 600; }
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(34, 200, 154, .2);
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .mark {
  display: inline-block; padding: 0 .28em; border-radius: var(--r-pill);
  border: 2px solid var(--brand); color: var(--brand-light);
}
.hero__lead { font-size: 1.08rem; max-width: 44ch; margin-bottom: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { display: flex; align-items: center; gap: 9px; margin-top: 26px; font-size: .86rem; color: rgba(255, 255, 255, .55); }
.hero__note svg { width: 15px; height: 15px; color: var(--brand-light); flex: none; }

/* Pipeline visual */
.pipe {
  background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg); padding: 22px; backdrop-filter: blur(6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}
.pipe__bar { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, .09); margin-bottom: 8px; }
.pipe__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.pipe__dot:nth-child(2) { background: rgba(255, 255, 255, .13); }
.pipe__dot:nth-child(3) { background: rgba(255, 255, 255, .09); }
.pipe__title { margin-left: 8px; font-family: var(--font-head); font-size: .82rem; color: rgba(255, 255, 255, .78); font-weight: 500; }
.pipe__badge { margin-left: auto; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-light); background: rgba(0, 169, 125, .14); padding: 5px 10px; border-radius: var(--r-pill); }

.pipe__step { display: flex; align-items: center; gap: 14px; padding: 12px 6px; border-bottom: 1px dashed rgba(255, 255, 255, .07); }
.pipe__step:last-child { border-bottom: 0; }
.pipe__ico {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .5);
  transition: background .4s ease, color .4s ease;
}
.pipe__ico svg { width: 15px; height: 15px; }
.pipe__label { font-size: .88rem; color: rgba(255, 255, 255, .8); font-weight: 500; }
.pipe__meta { margin-left: auto; font-size: .74rem; color: rgba(255, 255, 255, .38); font-variant-numeric: tabular-nums; }
.pipe__step.is-done .pipe__ico { background: rgba(0, 169, 125, .2); color: var(--brand-light); }
.pipe__step.is-done .pipe__meta { color: var(--brand-light); }
.pipe__foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .09); display: flex; align-items: center; gap: 12px; }
.pipe__progress { flex: 1; height: 6px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .1); overflow: hidden; }
.pipe__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-light)); border-radius: inherit; transition: width .6s cubic-bezier(.4, 0, .2, 1); }
.pipe__pct { font-size: .78rem; color: rgba(255, 255, 255, .7); font-variant-numeric: tabular-nums; min-width: 38px; text-align: right; }

/* 7. Stats & logo strip ================================================= */
.stats-band { background: var(--ink-800); border-top: 1px solid rgba(255, 255, 255, .07); }
.stats-band .grid { gap: 0; }
.stat { text-align: center; padding: 34px 18px; border-right: 1px solid rgba(255, 255, 255, .08); }
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.35rem);
  color: #fff; line-height: 1.1; letter-spacing: -.03em;
}
.stat__num .suffix { color: var(--brand-light); }
.stat__label { font-size: .84rem; color: rgba(255, 255, 255, .58); margin-top: 6px; }

.stat-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.stat-trio .stat { text-align: left; padding: 0; border: 0; border-left: 3px solid var(--brand); padding-left: 16px; }
.stat-trio .stat__num { color: var(--text); font-size: 1.75rem; }
.stat-trio .stat__label { color: var(--muted); }
.section--dark .stat-trio .stat__num { color: #fff; }

.logos { padding: 46px 0; border-bottom: 1px solid var(--line); background: #fff; }
.logos__title { text-align: center; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 26px; }
.logos__track { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 46px; }
.logos__item {
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: #9aa3ad; letter-spacing: -.01em; transition: color .2s ease; white-space: nowrap;
}
.logos__item:hover { color: var(--text); }

/* 8. Section headings =================================================== */
.head { max-width: 760px; margin-bottom: 52px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brand-dark);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.head--center .eyebrow { justify-content: center; }
.section--dark .eyebrow { color: var(--brand-light); }
.head p { font-size: 1.03rem; margin-bottom: 0; }

/* 9. Cards ============================================================== */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__ico {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--brand-soft); color: var(--brand-dark);
  transition: background .25s ease, color .25s ease;
}
.card__ico svg { width: 24px; height: 24px; }
.card:hover .card__ico { background: var(--brand); color: #fff; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .94rem; margin-bottom: 16px; }
.card__list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.card__list li {
  font-size: .74rem; font-weight: 500; color: var(--text-2);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.card--dark { background: var(--ink-700); border-color: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .7); }
.card--dark .card__ico { background: rgba(0, 169, 125, .16); color: var(--brand-light); }
.card--dark .card__list li { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .68); }

/* Advantage strip */
.adv { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.adv__item { padding: 32px 24px; border-right: 1px solid var(--line); text-align: center; transition: background .25s ease; }
.adv__item:last-child { border-right: 0; }
.adv__item:hover { background: var(--bg-soft); }
.adv__ico { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); }
.adv__ico svg { width: 21px; height: 21px; }
.adv__item h4 { margin-bottom: 6px; font-size: 1rem; }
.adv__item p { font-size: .86rem; margin: 0; }

/* Industry cards */
.industry {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.industry:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--sh-2); }
.industry__ico { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); }
.industry__ico svg { width: 19px; height: 19px; }
.industry span { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text); line-height: 1.3; }

/* Case study cards */
.case {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.case__top {
  padding: 26px 26px 22px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-600));
}
.case__top::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0, 169, 125, .38), transparent 70%);
}
.case__sector { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-light); font-weight: 600; }
.case__top h3 { color: #fff; margin: 10px 0 0; font-size: 1.2rem; position: relative; }
.case__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.case__body p { font-size: .93rem; }
.case__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 4px 0 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.case__metric b { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--brand-dark); line-height: 1.2; }
.case__metric span { font-size: .74rem; color: var(--muted); line-height: 1.35; display: block; }
.case__body .link-arrow { margin-top: auto; }

/* Engagement cards */
.plan { display: flex; flex-direction: column; height: 100%; padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.plan--featured { border-color: var(--brand); box-shadow: var(--sh-2); position: relative; }
.plan--featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: 28px;
  background: var(--brand); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill);
}
.plan h3 { margin-bottom: 4px; }
.plan__meta { font-size: .82rem; color: var(--brand-dark); font-weight: 600; margin-bottom: 16px; }
.plan ul.ticks { margin-bottom: 24px; }
.plan .btn { margin-top: auto; }

/* Tick list */
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; padding: 7px 0; }
.ticks li svg { width: 19px; height: 19px; flex: none; color: var(--brand); margin-top: 3px; }
.section--dark .ticks li svg { color: var(--brand-light); }

/* 10. Split feature sections =========================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: -1; }
.split__body h2 { margin-bottom: 18px; }

.panel {
  border-radius: var(--r-lg); padding: 30px; position: relative;
  background: linear-gradient(150deg, var(--ink-800), var(--ink-600));
  box-shadow: var(--sh-3); color: rgba(255, 255, 255, .72); overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.panel > * { position: relative; }
.panel__head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.panel__head span { font-family: var(--font-head); font-size: .8rem; color: rgba(255, 255, 255, .6); letter-spacing: .05em; }
.panel__head .lamp { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 0 4px rgba(34, 200, 154, .18); }

.code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .8rem; line-height: 1.85; color: rgba(255, 255, 255, .82);
  background: rgba(0, 0, 0, .3); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm); padding: 18px 20px; overflow-x: auto; margin: 0;
  white-space: pre;
}
.code .c { color: #6f7a86; }
.code .k { color: #22c89a; }
.code .s { color: #9fd4ff; }
.code .n { color: #ffcf8b; }

.kpi-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.kpi {
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-sm); padding: 16px;
}
.kpi b { display: block; font-family: var(--font-head); font-size: 1.35rem; color: #fff; line-height: 1.2; }
.kpi span { font-size: .78rem; color: rgba(255, 255, 255, .55); }

/* 11. Process timeline ================================================= */
.process { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.process::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(0, 169, 125, .18));
}
.step { text-align: center; position: relative; }
.step__num {
  width: 54px; height: 54px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; border: 2px solid var(--brand);
  font-family: var(--font-head); font-weight: 700; color: var(--brand-dark); font-size: 1.05rem;
  position: relative; z-index: 2; transition: background .25s ease, color .25s ease;
}
.step:hover .step__num { background: var(--brand); color: #fff; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: .88rem; margin: 0; }
.section--soft .step__num { background: var(--bg-soft); }
.section--soft .step:hover .step__num { background: var(--brand); }

/* 12. Tech stack tabs ================================================== */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 38px; }
.tab {
  font-family: var(--font-head); font-weight: 500; font-size: .89rem;
  padding: 11px 20px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--text-2);
  transition: all .2s ease;
}
.tab:hover { border-color: var(--brand); color: var(--brand-dark); }
.tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

.stack { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 14px; }
.stack__item {
  display: flex; align-items: center; gap: 11px;
  padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: .88rem; font-weight: 500; color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.stack__item:hover { border-color: var(--brand); transform: translateY(-3px); }
.stack__item i {
  width: 9px; height: 9px; border-radius: 3px; flex: none;
  background: var(--brand); opacity: .85;
}
.tabpanel[hidden] { display: none; }

/* 13. Testimonials ===================================================== */
.slider { position: relative; }
.slider__viewport { overflow: hidden; }
.slider__track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); }
.slide { flex: 0 0 100%; padding: 0 12px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 40px; height: 100%;
}
.quote__mark { width: 38px; height: 38px; color: var(--brand); opacity: .3; margin-bottom: 16px; }
.quote p { font-size: 1.06rem; color: var(--text); line-height: 1.75; }
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.quote__by b { display: block; font-family: var(--font-head); color: var(--text); font-size: .95rem; }
.quote__by span { font-size: .82rem; color: var(--muted); }
.slider__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; }
.slider__btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.slider__btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.slider__btn svg { width: 16px; height: 16px; }
.slider__dots { display: flex; gap: 7px; margin: 0 8px; }
.slider__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: all .2s ease; }
.slider__dot.is-active { background: var(--brand); width: 24px; border-radius: var(--r-pill); }

/* 14. Accordion ======================================================== */
.acc { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 0; }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--text);
}
.acc__btn:hover { color: var(--brand-dark); }
.acc__btn .plus { width: 22px; height: 22px; flex: none; color: var(--brand); transition: transform .25s ease; }
.acc__btn[aria-expanded="true"] .plus { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc__panel > div { padding: 0 26px 24px; font-size: .95rem; }

/* 15. CTA band ========================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--ink-900); color: rgba(255, 255, 255, .74); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 82% 0%, rgba(0, 169, 125, .28), transparent 62%);
}
.cta-band .container { position: relative; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; padding: 68px 0; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { max-width: 56ch; margin: 0; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }

/* 16. Forms ============================================================ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-size: .84rem; font-weight: 600; color: var(--text); }
.field label .req { color: #e0533d; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0, 169, 125, .12);
}
.field .err { font-size: .78rem; color: #d0402a; min-height: 1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d0402a; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.form-status {
  display: none; align-items: flex-start; gap: 12px; margin-top: 18px; padding: 16px 18px;
  border-radius: var(--r-sm); background: var(--brand-soft); border: 1px solid rgba(0, 169, 125, .3);
  font-size: .92rem; color: var(--brand-dark);
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }

.contact-line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line__ico { width: 42px; height: 42px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); }
.contact-line__ico svg { width: 19px; height: 19px; }
.contact-line b { display: block; font-family: var(--font-head); font-size: .92rem; color: var(--text); }
.contact-line a, .contact-line span { display: block; font-size: .92rem; }

/* 17. Footer =========================================================== */
.site-footer { background: var(--ink-900); color: rgba(255, 255, 255, .6); padding-top: 72px; font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: rgba(255, 255, 255, .5); }
.footer__about { margin-top: 20px; max-width: 34ch; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: rgba(255, 255, 255, .6); font-size: .92rem; }
.footer__links a:hover { color: var(--brand-light); padding-left: 3px; }
.footer__links a { transition: color .2s ease, padding-left .2s ease; display: inline-block; }
.footer__contact li { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; line-height: 1.55; }
.footer__contact svg { width: 16px; height: 16px; color: var(--brand-light); flex: none; margin-top: 4px; }
.footer__contact a { color: rgba(255, 255, 255, .72); }
.footer__contact a:hover { color: var(--brand-light); }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .7);
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: var(--r-sm); font-size: .88rem;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); color: #fff;
  font-family: var(--font-body);
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .38); }
.newsletter input:focus { outline: none; border-color: var(--brand); }
.newsletter button { flex: none; padding: 12px 18px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .09); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255, 255, 255, .45);
}
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a { color: rgba(255, 255, 255, .55); }
.footer__bottom a:hover { color: var(--brand-light); }

/* 18. Inner page hero ================================================== */
.page-hero {
  position: relative; overflow: hidden; background: var(--ink-900); color: rgba(255, 255, 255, .7);
  margin-top: calc(-1 * var(--header-h) - 1px);
  padding: calc(var(--header-h) + 74px) 0 74px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(680px 380px at 76% 8%, rgba(0, 169, 125, .22), transparent 64%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { max-width: 62ch; font-size: 1.04rem; }
.crumbs { display: flex; gap: 9px; align-items: center; font-size: .84rem; color: rgba(255, 255, 255, .48); margin-bottom: 20px; flex-wrap: wrap; }
.crumbs a { color: rgba(255, 255, 255, .7); }
.crumbs a:hover { color: var(--brand-light); }
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 32px; }
.prose > :first-child { margin-top: 0; }
.prose ul:not(.ticks) { margin: 0 0 1.2em; }
.prose ul:not(.ticks) li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.prose ul:not(.ticks) li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--brand);
}

.svc-block { padding: 44px 0; border-bottom: 1px solid var(--line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.svc-block__ico { width: 54px; height: 54px; flex: none; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); }
.svc-block__ico svg { width: 25px; height: 25px; }
.svc-block__head h2 { font-size: 1.5rem; margin: 0 0 6px; }
.svc-block__head .tag { margin-top: 4px; }
.svc-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; }
.deliverables { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.deliverables h4 { margin-bottom: 12px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.post {
  display: flex; flex-direction: column; height: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.post__thumb {
  height: 132px; display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-600));
}
.post__thumb::after {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.post__thumb svg { width: 40px; height: 40px; color: var(--brand-light); position: relative; z-index: 2; }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .78rem; color: var(--muted); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.post h3 { font-size: 1.08rem; margin-bottom: 10px; }
.post p { font-size: .91rem; }
.post .link-arrow { margin-top: auto; }

.value { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; height: 100%; }
.value__ico { width: 44px; height: 44px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-dark); }
.value__ico svg { width: 20px; height: 20px; }
.value h4 { margin-bottom: 6px; }
.value p { font-size: .9rem; margin: 0; }

/* 19. Motion & utilities =============================================== */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.16, 1, .3, 1); }

/* Icon system (sprite symbols are inlined at the top of each page) */
.i {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(0, 169, 125, .35);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* 20. Responsive ======================================================= */
@media (max-width: 1080px) {
  :root { --pad-section: 76px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__lead { max-width: 60ch; }
  .split { gap: 40px; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; row-gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .adv { grid-template-columns: repeat(3, 1fr); }
  .adv__item:nth-child(3) { border-right: 0; }
  .adv__item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process::before { display: none; }
  .svc-cols { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; gap: 0; z-index: 55;
    background: var(--ink-900); padding: 84px 20px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    border-left: 1px solid rgba(255, 255, 255, .1);
  }
  body.nav-open .nav__menu { transform: none; }
  .nav__link { color: rgba(255, 255, 255, .88) !important; width: 100%; justify-content: space-between; padding: 15px 12px; font-size: .98rem; }
  .nav__item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: transparent; border: 0; box-shadow: none; min-width: 0; padding: 0 0 10px;
    display: none; grid-template-columns: 1fr;
  }
  .nav__item.is-open .dropdown { display: block; transform: none; }
  .dropdown a { color: rgba(255, 255, 255, .62); padding: 10px 12px; }
  .dropdown a span { color: rgba(255, 255, 255, .38); }
  .dropdown a:hover { background: rgba(255, 255, 255, .06); color: var(--brand-light); }
  .nav__actions .btn { display: none; }
  .nav__menu .btn { display: flex; margin-top: 22px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .split, .split--reverse .split__media { order: 0; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band .grid-4 .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .stats-band .stat:nth-child(2n) { border-right: 0; }
}

@media (max-width: 720px) {
  :root { --pad-section: 62px; --header-h: 68px; }
  body { font-size: 16px; }
  .hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 68px; }
  .hero__bracket { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .adv { grid-template-columns: 1fr; }
  .adv__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .adv__item:last-child { border-bottom: 0; }
  .process { grid-template-columns: 1fr; row-gap: 30px; }
  .step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; text-align: left; align-items: start; }
  .step__num { margin: 0; }
  .stat-trio { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .quote { padding: 28px 24px; }
  .quote p { font-size: 1rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .case__metrics { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .panel { padding: 22px 18px; }
  .announce .container { padding-right: 46px; }
  .slide { padding: 0; }
}
