/* ==========================================================================
   ACP GROUP INT — CRM implementation landing page
   Rebuilt from the Claude Design source as a standalone static site.
   ========================================================================== */

:root {
  --ink: #0B1024;
  --ink2: #05081C;
  --ink3: #05051F;
  --navy: #22284A;
  --indigo: #3E4B7A;
  --slate: #4A598F;
  --slate2: #2B3454;
  --coral: #ED605C;
  --coral-d: #D94E4A;
  --red: #C4322D;
  --gold: #C8A96A;
  --bg: #FAFAFB;
  --white: #FFFFFF;
  --line: #ECEEF4;
  --line2: #E6E8F0;
  --muted: #B9C1DC;
  --muted2: #C9D0E6;
  --sand: #EDE7DA;
  --sand2: #E9E3D6;
  --wa: #25D366;
  --wa-d: #1FBE5A;

  --display: 'Space Grotesk', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: 24px;
  --sec-pad: clamp(64px, 7vw, 108px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  color-scheme: light;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; }
a { color: var(--slate); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--coral); color: #fff; }

button { font-family: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; }
.section { padding: var(--sec-pad) var(--gutter); }
[hidden] { display: none !important; }
.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;
}

/* ---- animation keyframes -------------------------------------------------- */
@keyframes glow-a { 0% { transform: translate3d(-4%,-3%,0) scale(1); } 50% { transform: translate3d(6%,5%,0) scale(1.12); } 100% { transform: translate3d(-4%,-3%,0) scale(1); } }
@keyframes glow-b { 0% { transform: translate3d(5%,4%,0) scale(1.08); } 50% { transform: translate3d(-6%,-5%,0) scale(1); } 100% { transform: translate3d(5%,4%,0) scale(1.08); } }
@keyframes sheen { 0% { transform: translateX(-120%); } 55%, 100% { transform: translateX(220%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .35; } }
@keyframes ring-spin { to { transform: rotate(360deg); } }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes hairline { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

[data-glow="a"] { animation: glow-a 28s ease-in-out infinite; }
[data-glow="b"] { animation: glow-b 34s ease-in-out infinite; }

[data-sheen] { position: relative; overflow: hidden; }
[data-sheen]::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  animation: sheen 4.6s ease-in-out infinite; pointer-events: none;
}
[data-marquee] { animation: marquee 34s linear infinite; }
[dir="rtl"] [data-marquee] { animation: marquee-rtl 34s linear infinite; }
[data-marquee-track]:hover [data-marquee] { animation-play-state: paused; }
[data-dot] { animation: pulse-dot 2.6s ease-in-out infinite; }
[data-ring] { animation: ring-spin 46s linear infinite; }
[data-float] { animation: float-y 7s ease-in-out infinite; }
[data-hairline] { background: linear-gradient(90deg,#ECEEF4 0%,#ED605C 25%,#C8A96A 50%,#3E4B7A 75%,#ECEEF4 100%); background-size: 200% 100%; animation: hairline 9s linear infinite; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
[data-reveal="in"] { opacity: 1; transform: none; }
[data-lift] { transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease; }
[data-lift]:hover { transform: translateY(-5px); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- headings ------------------------------------------------------------- */
.h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12; font-weight: 700; letter-spacing: -.02em;
  margin: 0; color: var(--ink);
}
.eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin: 0 0 18px;
}
.lead { font-size: 17px; line-height: 1.65; color: var(--slate); }

/* ---- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 600; line-height: 1.2; text-align: center;
  border: 0; border-radius: 12px; cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--coral); color: #fff; padding: 14px 22px;
  box-shadow: 0 12px 30px rgba(237,96,92,.3);
}
.btn-primary:hover { background: var(--coral-d); color: #fff; }
.btn-dot { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.24); display: grid; place-items: center; }
.btn-dot > span { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: block; }

/* ==========================================================================
   Promo bar + header
   ========================================================================== */
.promo {
  display: block; background: var(--ink); color: #fff; text-align: center;
  font-size: 13px; font-weight: 600; padding: 11px 16px;
}
.promo:hover { color: #fff; background: #161C3A; }
.promo .arrow { opacity: .85; }
.hairline { height: 2px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; height: 76px;
  display: flex; flex-wrap: nowrap; align-items: center; gap: 20px;
}
.header__logo { display: flex; align-items: center; flex: 0 0 auto; }
.header__logo img { display: block; width: 156px; height: auto; }
.nav-desk {
  display: flex; gap: 26px; margin-inline-start: auto;
  font-size: 15px; font-weight: 500;
}
.nav-desk a { color: var(--slate); }
.nav-desk a:hover { color: var(--ink); }
.header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; margin-inline-start: auto; }
.lang {
  display: flex; border: 1px solid var(--line2); border-radius: 10px;
  overflow: hidden; background: #fff;
}
.lang button {
  font: inherit; font-size: 14px; font-weight: 600; padding: 9px 12px;
  border: 0; cursor: pointer; background: #fff; color: var(--slate);
}
.lang button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.header__cta {
  background: var(--coral); color: #fff; font-size: 15px; font-weight: 600;
  padding: 13px 20px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(237,96,92,.28);
}
.header__cta:hover { background: var(--coral-d); color: #fff; }
.burger {
  display: none; flex: 0 0 auto; width: 44px; height: 44px; border: 1px solid var(--line2);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.burger span { position: relative; width: 20px; height: 2px; background: var(--ink); display: block; transition: transform .25s ease, opacity .2s ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .25s ease; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: rgba(11,16,36,.5);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__panel {
  position: absolute; inset-inline-end: 0; top: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: 22px 22px calc(22px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(30px); transition: transform .28s cubic-bezier(.16,1,.3,1);
  box-shadow: -20px 0 60px rgba(11,16,36,.24); overflow-y: auto;
}
[dir="rtl"] .mobile-menu__panel { transform: translateX(-30px); }
.mobile-menu.open .mobile-menu__panel { transform: none; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mobile-menu__head img { width: 130px; height: auto; }
.mobile-menu__close { width: 40px; height: 40px; border: 1px solid var(--line2); background: #fff; border-radius: 10px; font-size: 22px; line-height: 1; color: var(--ink); cursor: pointer; }
.mobile-menu a.mm-link {
  font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink);
  padding: 14px 6px; border-bottom: 1px solid var(--line);
}
.mobile-menu a.mm-link:hover { color: var(--coral); }
.mobile-menu .mm-cta { margin-top: 16px; padding: 16px; font-size: 17px; }

/* ==========================================================================
   Hero / assessment
   ========================================================================== */
.hero {
  position: relative; scroll-margin-top: 92px;
  background: linear-gradient(180deg,#FFFFFF 0%,#FBFAF8 45%,#F7F7FA 100%);
  overflow: hidden;
}
.hero__glows { position: absolute; inset: -25% -10% auto; height: 120%; pointer-events: none; filter: blur(100px); opacity: .16; }
.hero__glows .g1 { position: absolute; left: 2%; top: 6%; width: 44%; height: 56%; border-radius: 50%; background: var(--gold); }
.hero__glows .g2 { position: absolute; right: 4%; top: 0; width: 48%; height: 58%; border-radius: 50%; background: var(--slate); }
#hero-web { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .9; }
.hero__ring { position: absolute; pointer-events: none; border-radius: 50%; }
.hero__ring.r1 { inset-inline-end: -160px; top: -120px; width: 620px; height: 620px; border: 1px dashed rgba(74,89,143,.16); }
.hero__ring.r2 { inset-inline-end: -60px; top: 40px; width: 420px; height: 420px; border: 1px solid rgba(200,169,106,.22); }
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px,5vw,76px) 24px clamp(52px,6vw,88px);
  display: grid; grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr);
  gap: clamp(32px,4vw,60px); align-items: start;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--display);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--slate2); background: #fff; border: 1px solid var(--sand2);
  border-radius: 999px; padding: 10px 18px; margin: 0 0 28px; box-shadow: 0 2px 10px rgba(11,16,36,.06);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero h1 {
  font-family: var(--display); font-size: clamp(36px,4.8vw,66px); line-height: 1.02;
  font-weight: 700; letter-spacing: -.03em; margin: 0; max-width: 21ch; color: var(--ink2); text-wrap: pretty;
}
.hero h1 .accent { color: var(--red); }
.hero__rule { width: 84px; height: 3px; background: var(--gold); margin: 26px 0 0; border-radius: 2px; }
.hero__sub { font-size: 20px; line-height: 1.6; color: var(--slate2); margin: 22px 0 0; max-width: 50ch; text-wrap: pretty; }
.hero__stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 14px; margin-top: 34px; }
.stat {
  background: #fff; border: 1px solid var(--sand); border-radius: 18px; padding: 22px;
  box-shadow: 0 1px 2px rgba(11,16,36,.04),0 12px 32px rgba(11,16,36,.06);
}
.stat__value { font-family: var(--display); font-size: 32px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; color: var(--ink2); }
.stat__label { font-size: 14px; line-height: 1.45; color: var(--slate2); margin-top: 10px; }
.marquee-track {
  margin-top: 26px; min-width: 0; width: 100%; max-width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
}
.marquee { display: flex; gap: 10px; width: max-content; }
.chip { flex: 0 0 auto; font-size: 14px; font-weight: 600; color: var(--slate2); background: #fff; border: 1px solid var(--sand); border-radius: 999px; padding: 10px 16px; white-space: nowrap; }
.hero__offer { font-size: 16px; line-height: 1.6; color: var(--slate2); margin: 26px 0 0; max-width: 50ch; padding-inline-start: 16px; border-inline-start: 2px solid var(--gold); }

.form-wrap { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(22px,2.6vw,34px); box-shadow: 0 2px 6px rgba(11,16,36,.05),0 24px 64px rgba(11,16,36,.1);
}
.analyst { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.analyst img { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 0 0 2px var(--sand),0 8px 20px rgba(11,16,36,.12); }
.analyst__meta { display: grid; gap: 3px; min-width: 0; }
.analyst__lead { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.analyst__name { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--ink2); }
.analyst__role { font-size: 14px; line-height: 1.45; color: var(--slate2); }
.form-card h3 { font-family: var(--display); font-size: 22px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
.form-card .form-sub { font-size: 15px; line-height: 1.55; color: var(--slate); margin: 0 0 20px; }

/* assessment form */
.af { display: grid; gap: 12px; }
.af__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; }
.af__field { display: grid; gap: 5px; min-width: 0; }
.af__field label { font-size: 13px; font-weight: 600; color: var(--ink3); }
.af__field label .req { color: var(--red); }
.af__field input {
  font: inherit; font-size: 16px; padding: 12px 13px; border: 1px solid #E2E4EC;
  border-radius: 10px; background: #fff; color: var(--ink3); min-width: 0; width: 100%;
}
.af__field input:focus { outline: 2px solid var(--slate); outline-offset: 1px; }
.af__err { font-size: 14px; color: #C0392B; }
.af__prefill { display: flex; align-items: flex-start; gap: 8px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: 13px; line-height: 1.45; color: var(--slate); }
.af__prefill strong { flex: 0 0 auto; font-weight: 600; color: var(--ink); }
.af__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--slate); }
.af__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--slate); flex: 0 0 auto; }
.af__actions { display: grid; grid-template-columns: repeat(auto-fit,minmax(168px,1fr)); gap: 10px; align-items: stretch; margin-top: 2px; }
.af__actions .btn { padding: 11px 10px; gap: 0; }
.af__submit, .af__wa { min-height: 54px; color: #fff; font: inherit; font-size: 15px; font-weight: 600; }
.af__submit { background: var(--coral); box-shadow: 0 10px 26px rgba(237,96,92,.28); }
.af__submit:hover { background: var(--coral-d); }
.af__wa { background: var(--wa); box-shadow: 0 10px 26px rgba(37,211,102,.34); }
.af__wa:hover { background: var(--wa-d); color: #fff; }
/* icon flows inline with the label so the graphic + text read as one centred unit and never strand */
.af__label { display: inline-block; min-width: 0; text-align: center; line-height: 1.3; text-wrap: balance; }
.af__dot { display: inline-grid; place-items: center; vertical-align: middle; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.22); margin-inline-end: 7px; margin-top: -2px; }
.af__dot > span { width: 7px; height: 7px; border-radius: 50%; background: #fff; display: block; }
.af__dot svg { display: block; }
.af__foot { font-size: 13px; line-height: 1.5; color: var(--slate); margin: 0; }
.af__sent { display: grid; gap: 14px; padding: 8px 0; }
.af__sent h3 { font-family: var(--display); font-size: 22px; font-weight: 600; margin: 0; color: var(--ink3); }
.af__sent p { font-size: 16px; line-height: 1.6; color: var(--slate); margin: 0; }
.af__again { justify-self: start; background: none; border: 1px solid #E2E4EC; border-radius: 8px; color: var(--ink3); font: inherit; font-size: 15px; font-weight: 600; padding: 12px 18px; cursor: pointer; }
.af__again:hover { border-color: var(--slate); }

/* ==========================================================================
   Pain
   ========================================================================== */
.pain { background: #fff; }
.pain h2 { max-width: 24ch; }
.cards-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 20px; align-items: stretch; margin-top: 36px; }
.pain-card {
  text-align: start; font: inherit; cursor: pointer; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px 26px; display: grid; grid-template-rows: auto 1fr auto; gap: 12px;
  min-height: 230px; box-shadow: 0 1px 2px rgba(11,16,36,.04),0 8px 24px rgba(11,16,36,.05);
}
.pain-card.open { background: var(--bg); border-color: var(--coral); box-shadow: 0 16px 44px rgba(11,16,36,.1); }
.pain-card__top { display: flex; align-items: center; gap: 12px; }
.pain-card__num { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: #F3F4F8; color: var(--slate); font-family: var(--display); font-size: 14px; font-weight: 700; }
.pain-card.open .pain-card__num { background: var(--coral); color: #fff; }
.pain-card__hint { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.pain-card__quote { font-family: var(--display); font-size: clamp(18px,1.9vw,22px); line-height: 1.36; font-weight: 600; color: var(--ink); }
.pain-card__fix { display: grid; gap: 8px; padding-top: 6px; border-top: 1px solid var(--line); }
.pain-card__fix .flabel { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.pain-card__fix .fbody { font-size: 16px; line-height: 1.6; color: var(--slate); }

/* ==========================================================================
   Results / commitments
   ========================================================================== */
.results { background: var(--bg); }
.split {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(32px,4vw,56px); align-items: start;
}
.results h2 { max-width: 20ch; }
.results__sub { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 20px 0 0; max-width: 46ch; }
.results__note { font-size: 17px; line-height: 1.6; color: var(--slate); margin: 18px 0 0; max-width: 46ch; }
.commit-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; align-items: start; }
.commit {
  text-align: start; font: inherit; cursor: pointer; border: 0; border-radius: 22px; padding: 26px 24px;
  min-height: 210px; display: grid; grid-template-rows: auto auto 1fr; gap: 10px; color: #fff;
  box-shadow: 0 10px 30px rgba(11,16,36,.14);
}
.commit__value { font-family: var(--display); font-size: clamp(30px,3.4vw,42px); font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.commit__label { font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.3; }
.commit__body { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.9); margin-top: 2px; }
.commit__more { margin-top: auto; font-size: 14px; font-weight: 800; color: rgba(255,255,255,.86); }

/* ==========================================================================
   Deliver / estimate / scope
   ========================================================================== */
.deliver { background: #fff; }
.deliver h2 { font-size: clamp(24px,2.9vw,40px); white-space: nowrap; }
.deliver__sub { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 18px 0 0; max-width: 64ch; }
.save-badge {
  display: inline-flex; align-items: center; gap: 9px; margin: 16px 0 0;
  font-family: var(--display); font-size: 13.5px; font-weight: 700; letter-spacing: .01em;
  color: #fff; background: linear-gradient(135deg, #ED605C 0%, #D94E4A 100%);
  border-radius: 999px; padding: 8px 16px 8px 8px;
  box-shadow: 0 10px 24px rgba(237,96,92,.34);
}
[dir="rtl"] .save-badge { padding: 8px 8px 8px 16px; }
.save-badge .save-ic {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.estimator {
  margin-top: 36px; background: #fff; border: 1px solid var(--line); border-radius: 24px; display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  box-shadow: 0 2px 6px rgba(11,16,36,.04),0 18px 48px rgba(11,16,36,.08); overflow: hidden;
}
.estimator__form { min-width: 0; padding: clamp(26px,3vw,38px); display: grid; gap: 26px; align-content: start; }
.est-group { display: grid; gap: 12px; }
.est-label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.est-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.est-pill {
  font: inherit; font-size: 15px; font-weight: 600; padding: 11px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line2); background: #fff; color: var(--slate);
  transition: background .3s ease,color .3s ease,border-color .3s ease;
}
.est-pill[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.est-deploy { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; }
.est-card {
  text-align: start; font: inherit; cursor: pointer; border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 18px; display: grid; gap: 6px; background: #fff;
  box-shadow: 0 1px 2px rgba(11,16,36,.04),0 8px 24px rgba(11,16,36,.05);
}
.est-card[aria-pressed="true"] { background: var(--bg); border-color: var(--coral); box-shadow: 0 16px 44px rgba(11,16,36,.1); }
.est-card .ec-label { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--ink); }
.est-card .ec-note { font-size: 14px; line-height: 1.5; color: var(--slate); }
.est-select-wrap { display: grid; gap: 10px; max-width: 320px; }
.est-select-wrap label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.est-select { font: inherit; font-size: 16px; padding: 12px 13px; border: 1px solid var(--line2); border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
.est-select:focus { outline: 2px solid var(--slate); outline-offset: 1px; }
.estimator__result {
  min-width: 0; background: linear-gradient(150deg,#0B1024 0%,#22284A 55%,#3E4B7A 100%);
  color: #fff; padding: clamp(26px,3vw,38px); display: grid; gap: 18px; align-content: start;
}
.er-label { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.er-price { font-family: var(--display); font-size: clamp(32px,4vw,48px); font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.02; letter-spacing: -.02em; }
.er-unit { font-size: 15px; font-weight: 600; color: var(--gold); margin-top: -8px; }
.er-lead { font-size: 16px; line-height: 1.6; color: #D5DAEC; }
.er-setup { font-size: 15px; line-height: 1.55; color: #D5DAEC; }
.er-includes { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
.er-inc { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: #fff; }
.er-inc .b { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.er-inc .b > span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: block; }
.er-cta { min-height: 56px; margin-top: 4px; background: var(--coral); color: #fff; font-size: 17px; font-weight: 600; box-shadow: 0 12px 30px rgba(237,96,92,.34); }
.er-cta:hover { background: var(--coral-d); color: #fff; }
.er-foot { font-size: 14px; line-height: 1.5; color: var(--muted); }

.scope-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; margin: clamp(36px,4vw,52px) 0 0; }
.scope-head h3 { font-family: var(--display); font-size: clamp(22px,2.4vw,28px); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.scope-head .hint { font-size: 15px; color: var(--slate); }
.scope-list { display: grid; gap: 12px; margin-top: 20px; }
.scope-row { background: #fff; border: 1px solid var(--line2); border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(11,16,36,.04),0 6px 18px rgba(11,16,36,.05); transition: box-shadow .3s ease,border-color .3s ease; }
.scope-row.open { background: #FFF8F7; border-color: var(--coral); box-shadow: 0 14px 36px rgba(237,96,92,.16); }
.scope-row__btn { width: 100%; background: none; border: 0; cursor: pointer; font: inherit; text-align: start; display: flex; gap: 16px; align-items: center; padding: 20px 22px; }
.scope-row__num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; background: var(--ink); color: #fff; }
.scope-row.open .scope-row__num { background: var(--coral); }
.scope-row__title { flex: 1 1 auto; font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.scope-row__sign { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 19px; line-height: 1; background: #FBECEB; color: var(--red); }
.scope-row.open .scope-row__sign { background: var(--coral); color: #fff; }
.scope-row__body { font-size: 16px; line-height: 1.6; color: var(--slate); margin: 0; padding: 0 22px 22px 68px; max-width: 72ch; }
[dir="rtl"] .scope-row__body { padding: 0 68px 22px 22px; }

/* ==========================================================================
   Proof / logos / credentials
   ========================================================================== */
.proof { background: var(--bg); }
.logo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-top: 32px; }
.logo-cell { background: #fff; height: 142px; display: grid; place-items: center; padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-cell img { max-height: 100%; max-width: 100%; object-fit: contain; filter: none; }
.cred { margin-top: 20px; }
.cred-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; display: grid; gap: 14px; align-content: start; box-shadow: 0 1px 2px rgba(11,16,36,.04),0 10px 30px rgba(11,16,36,.05); }
.cred-card h3 { font-family: var(--display); font-size: 20px; font-weight: 600; margin: 0; color: var(--ink); }
.cred-card .rows { display: grid; gap: 12px; font-size: 16px; line-height: 1.55; color: var(--slate); }
.cred-card .rows strong { color: var(--ink); }
.cred-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4px; }
.cred-links a { font-size: 16px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line2); padding-bottom: 2px; }
.cred-links a:hover { color: var(--ink); border-bottom-color: var(--coral); }

/* ==========================================================================
   Case
   ========================================================================== */
.case { background: #fff; }
.case__card {
  margin-top: 32px; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); align-items: stretch;
  box-shadow: 0 2px 6px rgba(11,16,36,.04),0 18px 48px rgba(11,16,36,.08);
}
.case__body { min-width: 0; padding: clamp(28px,3vw,40px); display: grid; gap: 16px; align-content: start; }
.case__tag { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); }
.case__name { font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1.25; margin: 0; color: var(--ink); }
.case__text { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 0; }
.case__facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.case__facts li { font-size: 16px; line-height: 1.55; color: var(--ink); padding-inline-start: 16px; border-inline-start: 2px solid var(--coral); }
.case__cta { justify-self: start; margin-top: 8px; padding: 15px 24px; font-size: 17px; box-shadow: 0 10px 26px rgba(237,96,92,.3); }
.case__visual { position: relative; min-width: 0; min-height: 300px; background: linear-gradient(135deg,#ED605C 0%,#B24C6B 45%,#3E4B7A 100%); padding: 20px; display: grid; }
.case__mock { align-self: stretch; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(2px); padding: 18px; display: grid; grid-template-rows: auto auto 1fr; gap: 14px; overflow: hidden; }
.case__mock .m-bar { display: flex; gap: 6px; }
.case__mock .m-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); }
.case__mock .m-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.case__mock .m-kpi { background: rgba(255,255,255,.14); border-radius: 10px; padding: 12px; display: grid; gap: 6px; }
.case__mock .m-kpi b { font-family: var(--display); font-size: 20px; color: #fff; }
.case__mock .m-kpi span { font-size: 11px; color: rgba(255,255,255,.8); }
.case__mock .m-chart { display: flex; align-items: flex-end; gap: 8px; padding-top: 6px; }
.case__mock .m-chart i { flex: 1; background: rgba(255,255,255,.35); border-radius: 4px 4px 0 0; }

/* ==========================================================================
   Why
   ========================================================================== */
.why { background: var(--ink); color: #fff; }
.why h2 { color: #fff; font-size: clamp(24px,2.9vw,40px); white-space: nowrap; }
.why__sub { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 18px 0 0; max-width: 56ch; }
.why__split { margin-top: 36px; display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(24px,3vw,40px); align-items: start; }
.why__photo { position: relative; border-radius: 24px; overflow: hidden; background: var(--ink2); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.why__photo img { display: block; width: 100%; height: auto; }
.why__photo .grad { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(11,16,36,0) 66%,rgba(11,16,36,.92) 100%); }
.why__photo .cap { position: absolute; inset-inline: 0; bottom: 0; padding: 22px 24px; display: grid; gap: 10px; }
.why__photo .tag { display: inline-flex; justify-self: start; align-items: center; gap: 8px; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--gold); border-radius: 999px; padding: 7px 13px; }
.why__photo .note { font-size: 16px; line-height: 1.5; font-weight: 600; color: #fff; max-width: 34ch; }
.why__panelwrap { display: grid; gap: 14px; align-content: start; }
.reason-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.reason-tab { font: inherit; font-size: 15px; font-weight: 600; padding: 12px 18px; border-radius: 999px; cursor: pointer; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: var(--muted2); transition: background .3s ease,color .3s ease,border-color .3s ease; }
.reason-tab[aria-pressed="true"] { background: #fff; color: var(--ink); border-color: #fff; }
.reason-panel { position: relative; background: #F5F5F7; border-radius: 24px; padding: clamp(28px,3vw,40px); display: grid; gap: 16px; align-content: start; min-height: 280px; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.reason-panel .num { position: absolute; top: -13px; inset-inline-end: 26px; background: var(--coral); color: #fff; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .06em; padding: 7px 14px; border-radius: 999px; box-shadow: 0 10px 24px rgba(237,96,92,.38); }
.reason-panel h3 { font-family: var(--display); font-size: clamp(24px,2.8vw,32px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; margin: 0; color: var(--ink); max-width: 24ch; }
.reason-panel p { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 0; max-width: 56ch; }
.reason-panel .btn { justify-self: start; min-height: 54px; margin-top: auto; padding: 14px 22px; }

/* ==========================================================================
   Hosting
   ========================================================================== */
.hosting { background: var(--bg); }
.hosting h2 { max-width: 20ch; }
.hosting__sub { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 18px 0 0; max-width: 50ch; }
.hosting__card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px,2.6vw,32px); box-shadow: 0 2px 6px rgba(11,16,36,.04),0 14px 40px rgba(11,16,36,.06); }
.hosting__tabs { display: flex; gap: 6px; background: #F3F4F8; border-radius: 999px; padding: 6px; }
.hosting__tab { flex: 1 1 0; font: inherit; font-size: 15px; font-weight: 600; padding: 13px 16px; border: 0; border-radius: 999px; cursor: pointer; background: transparent; color: var(--slate); transition: background .25s ease,color .25s ease; }
.hosting__tab[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(11,16,36,.12); }
.hosting__card h3 { font-family: var(--display); font-size: 24px; font-weight: 600; margin: 26px 0 0; color: var(--ink); }
.hosting__card p { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 12px 0 0; }
.hosting__points { display: grid; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.hosting__points span { font-size: 16px; line-height: 1.55; color: var(--ink); padding-inline-start: 16px; border-inline-start: 2px solid var(--coral); }

/* ==========================================================================
   Industries
   ========================================================================== */
.industries { background: #fff; }
.industries__sub { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 18px 0 0; max-width: 56ch; }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-top: 34px; }
.ind-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px; display: grid; gap: 8px; align-content: start; box-shadow: 0 1px 2px rgba(11,16,36,.04),0 8px 24px rgba(11,16,36,.05); }
.ind-card:hover { border-color: var(--coral); box-shadow: 0 16px 44px rgba(11,16,36,.1); }
.ind-card .name { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); }
.ind-card .body { font-size: 15px; line-height: 1.55; color: var(--slate); }

/* ==========================================================================
   Support / tiers
   ========================================================================== */
.support { background: var(--bg); }
.support h2 { font-size: clamp(26px,3.2vw,38px); line-height: 1.15; }
.support__sub { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 18px 0 0; max-width: 56ch; }
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 20px; align-items: stretch; margin-top: 36px; }
.tier { position: relative; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 24px; padding: 32px 28px; display: grid; grid-template-rows: auto auto auto 1fr auto; gap: 14px; box-shadow: 0 1px 2px rgba(11,16,36,.04),0 10px 30px rgba(11,16,36,.05); }
.tier.featured { background: linear-gradient(150deg,#0B1024 0%,#22284A 55%,#3E4B7A 100%); color: #fff; border-color: transparent; box-shadow: 0 24px 60px rgba(11,16,36,.26); }
.tier__badge { position: absolute; top: -13px; inset-inline-start: 28px; background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 20px rgba(200,169,106,.4); }
.tier__name { font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.3; min-height: 2.6em; display: flex; align-items: flex-start; }
.tier__price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tier__price { font-family: var(--display); font-size: clamp(30px,3vw,38px); font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; white-space: nowrap; color: var(--red); }
.tier.featured .tier__price { color: #fff; }
.tier__per { font-size: 14px; white-space: nowrap; color: var(--slate); }
.tier.featured .tier__per { color: #D5DAEC; }
.tier__body { font-size: 16px; line-height: 1.6; color: var(--slate); }
.tier.featured .tier__body { color: #D5DAEC; }
.tier__perks { display: grid; gap: 9px; align-content: start; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.tier.featured .tier__perks { border-top-color: rgba(255,255,255,.18); }
.tier__perk { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--ink); }
.tier.featured .tier__perk { color: #fff; }
.tier__perk .b { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: #FBECEB; display: grid; place-items: center; }
.tier__perk .b > span { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: block; }
.tier.featured .tier__perk .b { background: rgba(255,255,255,.16); }
.tier.featured .tier__perk .b > span { background: var(--gold); }
.tier__cta { min-height: 56px; margin-top: 6px; align-self: end; background: var(--ink); color: #fff; font-size: 16px; font-weight: 600; border: 1px solid var(--ink); box-shadow: 0 10px 24px rgba(11,16,36,.22); }
.tier__cta:hover { background: var(--navy); color: #fff; }
.tier.featured .tier__cta { background: var(--coral); border-color: var(--coral); box-shadow: 0 12px 30px rgba(237,96,92,.34); }
.tier.featured .tier__cta:hover { background: var(--coral-d); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: #fff; }
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq h2 { margin: 0 0 32px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(11,16,36,.04); }
.faq-item.open { border-color: var(--coral); }
.faq-item__btn { width: 100%; background: none; border: 0; cursor: pointer; font: inherit; text-align: start; display: flex; gap: 20px; align-items: center; padding: 22px 24px; }
.faq-item__q { flex: 1 1 auto; font-family: var(--display); font-size: 19px; font-weight: 600; line-height: 1.35; color: var(--ink); }
.faq-item__sign { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; line-height: 1; background: #F3F4F8; color: var(--slate); }
.faq-item.open .faq-item__sign { background: var(--coral); color: #fff; }
.faq-item__a { font-size: 17px; line-height: 1.65; color: var(--slate); margin: 0; padding: 0 24px 24px; max-width: 70ch; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final { position: relative; background: var(--bg); overflow: hidden; }
.final__glows { position: absolute; inset: -20% -10%; pointer-events: none; filter: blur(90px); opacity: .2; }
.final__glows .g1 { position: absolute; left: 8%; top: 10%; width: 44%; height: 60%; border-radius: 50%; background: var(--coral); }
.final__glows .g2 { position: absolute; right: 6%; top: 0; width: 46%; height: 56%; border-radius: 50%; background: var(--slate); }
.final__split { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px,4vw,60px); align-items: start; }
.final h2 { max-width: 20ch; }
.final__offer { font-size: 18px; line-height: 1.6; color: var(--slate); margin: 20px 0 0; max-width: 46ch; }
.final__contact { display: grid; gap: 12px; margin-top: 30px; font-size: 17px; color: var(--slate); }
.final__contact a { color: var(--ink); font-weight: 600; }
.final__contact a.tel { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: var(--muted); padding: clamp(44px,5vw,68px) 24px 96px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 40px; align-items: start; }
.footer__brand { display: grid; gap: 18px; align-content: start; min-width: 0; }
.footer__brand img { display: block; width: 176px; height: auto; }
.footer__brand p { font-size: 15px; line-height: 1.6; margin: 0; max-width: 32ch; }
.footer h3 { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer .links { display: grid; gap: 10px; font-size: 15px; line-height: 1.55; }
.footer .links a { color: var(--muted2); }
.footer .links a:hover { color: #fff; }
.footer .links span { color: var(--muted2); }
.footer__ctacol { display: grid; gap: 14px; align-content: start; min-width: 0; }
.footer__ctacol p { font-size: 15px; line-height: 1.55; color: var(--muted2); margin: 0; max-width: 30ch; }
.footer__ctacol .btn { min-height: 60px; padding: 14px 18px; font-size: 17px; box-shadow: 0 10px 26px rgba(237,96,92,.3); }
.footer__bottom { max-width: var(--maxw); margin: 34px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.footer__bottom span { color: var(--muted); }
.footer__bottom a { color: var(--muted2); margin-inline-start: auto; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   Floating WhatsApp + mobile bar
   ========================================================================== */
.wa-float {
  position: fixed; inset-inline-end: 18px; bottom: 20px; z-index: 61; width: 56px; height: 56px;
  border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 28px rgba(11,16,36,.24);
}
.wa-float:hover { background: var(--wa-d); }
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
}
.mobile-bar a.cta { flex: 1 1 0; text-align: center; background: var(--coral); color: #fff; font-size: 16px; font-weight: 600; padding: 15px 12px; border-radius: 12px; }
.mobile-bar a.cta:hover { background: var(--coral-d); color: #fff; }
.mobile-bar a.wa { flex: 0 0 auto; text-align: center; color: var(--ink); font-size: 16px; font-weight: 600; padding: 15px 18px; border-radius: 12px; border: 1px solid var(--line2); }
.mobile-bar a.wa:hover { color: var(--ink); border-color: var(--coral); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 901px) { .logo-grid { grid-template-columns: repeat(5,minmax(0,1fr)) !important; } }

@media (max-width: 1080px) {
  .nav-desk { display: none; }
  .burger { display: flex; }
  /* keep the CTA + lang; actions already push right */
}

@media (max-width: 940px) {
  .split, .why__split, .final__split, .estimator, .case__card { grid-template-columns: minmax(0,1fr) !important; }
  [data-glow] { animation: none !important; }
  .case__visual { min-height: 260px; }
}

@media (max-width: 760px) {
  :root { --gutter: 18px; }
  .hero__inner { grid-template-columns: minmax(0,1fr); }
  .hero__ring { display: none; }
}

@media (max-width: 700px) {
  .header__inner { height: auto; min-height: 62px; padding: 10px 16px; gap: 10px; }
  .header__logo img { width: 116px; }
  .header__cta { display: none; }
  .wa-float { bottom: 86px; }
  .promo { font-size: 12px; }
  .mobile-bar { display: flex; }
  #deliver h2, .deliver h2, .why h2 { white-space: normal !important; }
  .logo-cell { height: 118px; padding: 20px; }
}

@media (max-width: 560px) {
  .deliver h2, .why h2 { white-space: normal !important; }
  .logo-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .hero h1 { font-size: clamp(30px,8vw,40px); }
  .hero__sub { font-size: 18px; }
  .commit, .pain-card { min-height: 0; }
  .tier__name { min-height: 0; }
  .footer__inner { gap: 30px; }
}

@media (max-width: 520px) {
  .logo-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
}

/* ==========================================================================
   Mobile compaction — tighten spacing to reduce scrolling.
   Scoped entirely to <=700 / <=560; the desktop layout is untouched.
   ========================================================================== */
@media (max-width: 700px) {
  .section { padding-top: 46px; padding-bottom: 46px; }
  .hero__inner { padding-top: 26px; padding-bottom: 34px; }
  .cards-auto, .commit-grid, .tier-grid, .ind-grid { gap: 12px; }
  .split, .why__split, .final__split, .hosting .split { gap: 26px; }
}

@media (max-width: 560px) {
  /* hero — tighter rhythm */
  .pill { margin: 0 0 16px; padding: 8px 14px; font-size: 11px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(27px, 7.6vw, 34px); }
  .hero__rule { margin-top: 18px; }
  .hero__sub { font-size: 16px; line-height: 1.5; margin-top: 16px; }
  .marquee-track { margin-top: 18px; }
  .hero__offer { font-size: 14px; margin-top: 18px; }

  /* stats 2018 / 1,300+ / 30+ — one compact row */
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
  .stat { padding: 12px 9px; border-radius: 13px; }
  .stat__value { font-size: 20px; }
  .stat__label { font-size: 10.5px; line-height: 1.28; margin-top: 5px; }

  /* section headings + intros */
  .h2 { font-size: 25px; line-height: 1.15; }
  .eyebrow { margin-bottom: 12px; }
  .results__sub, .results__note, .hosting__sub, .industries__sub,
  .support__sub, .why__sub, .deliver__sub { font-size: 15px; line-height: 1.55; margin-top: 12px; }
  .cards-auto, .commit-grid, .tier-grid, .ind-grid { margin-top: 20px; }

  /* industries — two narrow columns */
  .ind-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ind-card { padding: 15px 13px; border-radius: 13px; gap: 4px; }
  .ind-card .name { font-size: 15px; }
  .ind-card .body { font-size: 12.5px; line-height: 1.42; }

  /* cards / accordions — trim padding */
  .pain-card { padding: 18px 16px; border-radius: 16px; }
  .pain-card__quote { font-size: 17px; }
  .commit { padding: 18px 16px; border-radius: 16px; }
  .scope-row__btn { padding: 15px 16px; }
  .scope-row__title { font-size: 16px; }
  .scope-row__body { padding: 0 16px 16px 56px; }
  [dir="rtl"] .scope-row__body { padding: 0 56px 16px 16px; }
  .faq-item__btn { padding: 16px; }
  .faq-item__q { font-size: 16px; }
  .faq-item__a { padding: 0 16px 18px; font-size: 15px; }
  .tier { padding: 22px 18px; }
  .cred-card { padding: 20px 18px; }
  .estimator__form, .estimator__result { padding: 20px 16px; gap: 18px; }

  /* legal / privacy page */
  .legal h2 { margin-top: 30px; }
}

/* ==========================================================================
   Legal / privacy page
   ========================================================================== */
.legal-hero { background: linear-gradient(180deg,#FFFFFF 0%,#F7F7FA 100%); border-bottom: 1px solid var(--line); }
.legal-hero__inner { max-width: 900px; margin: 0 auto; padding: clamp(40px,5vw,64px) var(--gutter) clamp(28px,3vw,40px); }
.legal-hero .crumb { font-size: 14px; font-weight: 600; color: var(--slate); margin: 0 0 14px; }
.legal-hero .crumb a { color: var(--slate); }
.legal-hero .crumb a:hover { color: var(--coral); }
.legal-hero h1 { font-family: var(--display); font-size: clamp(30px,4vw,48px); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; margin: 0; color: var(--ink); }
.legal-hero .updated { font-size: 15px; color: var(--slate); margin: 16px 0 0; }
.legal-hero .rule { width: 84px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px 0 0; }

.legal { max-width: 900px; margin: 0 auto; padding: clamp(40px,5vw,64px) var(--gutter) clamp(56px,7vw,96px); }
.legal .intro { font-size: 18px; line-height: 1.7; color: var(--slate2); margin: 0 0 8px; }
.legal h2 { font-family: var(--display); font-size: clamp(20px,2.2vw,26px); font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin: 40px 0 14px; scroll-margin-top: 90px; }
.legal h2 .n { color: var(--coral); font-variant-numeric: tabular-nums; }
.legal p { font-size: 16px; line-height: 1.7; color: var(--slate); margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 10px; }
.legal ul li { position: relative; font-size: 16px; line-height: 1.6; color: var(--slate); padding-inline-start: 20px; }
.legal ul li::before { content: ""; position: absolute; inset-inline-start: 2px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.legal strong { color: var(--ink); }
.legal a { color: var(--coral); font-weight: 600; }
.legal a:hover { color: var(--coral-d); }
.legal .callout { margin: 40px 0 0; background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; }
.legal .callout h3 { font-family: var(--display); font-size: 18px; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
.legal .callout p { margin: 0 0 6px; }

.legal-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.legal-header__inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; height: 72px; display: flex; align-items: center; gap: 16px; }
.legal-header__inner .home { margin-inline-start: auto; font-size: 15px; font-weight: 600; color: var(--slate); }
.legal-header__inner .home:hover { color: var(--ink); }
@media (max-width: 700px) {
  .legal-header__inner { height: 60px; padding: 10px 16px; }
  .legal-header__inner img { width: 116px; }
}
