/* ==========================================================================
   TK WebHosts — v3 design system
   Direction (DESIGN-DIRECTION.md): full Hostinger design fidelity — their
   sections, spacing, type treatment, nav/mega-menu, card & plan-card design —
   with ONLY the colours swapped to TKWH's exact brand tokens.
   Type: DM Sans everywhere (Space Grotesk retired in v3).
   Class names from v2 are preserved so all pages restyle without markup churn.
   ========================================================================== */

:root {
  --tk-white: #ffffff;
  --tk-ink: #12202d;
  --tk-muted: #526170;
  --tk-navy: #0d355c;
  --tk-navy-deep: #092844;
  --tk-blue: #0b559f;
  --tk-orange: #f47f32;
  --tk-soft-blue: #edf3f7;
  --tk-line: #d8dee4;

  --font-body: "DM Sans", sans-serif;

  --radius-card: 8px;
  --radius-btn: 4px;
  --radius-panel: 16px;
  --shadow-card: 0 1px 3px rgba(18, 32, 45, 0.06);
  --shadow-card-hover: 0 6px 20px rgba(18, 32, 45, 0.12);
  --shadow-panel: 0 24px 64px rgba(9, 40, 68, 0.22);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tk-ink);
  background: var(--tk-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--tk-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--tk-orange); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--tk-navy-deep); color: var(--tk-white); padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- type scale (Hostinger: DM Sans, big friendly headings) -------------- */

h1, h2, h3, .display { font-family: var(--font-body); color: var(--tk-ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.35; }

.eyebrow {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tk-orange); margin-bottom: 14px;
}
.lede { font-size: 1.13rem; color: var(--tk-muted); max-width: 58ch; }

/* ---- layout primitives --------------------------------------------------- */

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 112px 0; }
.section--tint { background: var(--tk-soft-blue); }
.section--dark { background: var(--tk-navy-deep); }
.section--dark h2, .section--dark h3 { color: var(--tk-white); }
.section--dark p, .section--dark .lede { color: rgba(255,255,255,0.82); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin-top: 16px; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

/* ---- buttons (Hostinger: squared 4px radius, solid, confident) ----------- */

.btn {
  display: inline-block;
  font-weight: 600; font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--tk-blue); color: var(--tk-white); }
.btn--primary:hover { background: var(--tk-navy); }

.btn--accent { background: var(--tk-orange); color: var(--tk-white); }
.btn--accent:hover { background: #d96a20; }

.btn--ghost { background: transparent; color: var(--tk-blue); border-color: var(--tk-blue); }
.btn--ghost:hover { background: var(--tk-soft-blue); }

.section--dark .btn--ghost, .hero--dark .btn--ghost {
  color: var(--tk-white); border-color: rgba(255,255,255,0.6);
}
.section--dark .btn--ghost:hover, .hero--dark .btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn-note { display: block; margin-top: 14px; font-size: 0.9rem; color: var(--tk-muted); }
.section--dark .btn-note, .hero--dark .btn-note { color: rgba(255,255,255,0.7); }

/* ---- promo strip (Hostinger's thin yellow bar → our orange) -------------- */

.promo-strip {
  background: var(--tk-orange); color: var(--tk-navy-deep);
  text-align: center; font-size: 0.9rem; font-weight: 600;
  padding: 8px 16px;
}
.promo-strip a { color: var(--tk-navy-deep); text-decoration: underline; font-weight: 700; }

/* ---- header + mega menu -------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--tk-white);
  border-bottom: 1px solid var(--tk-line);
}
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 64px; position: relative; }
.site-header__logo {
  display: flex; align-items: center;
  width: 174px; flex: 0 0 174px;
}
.site-header__logo img {
  display: block; width: 174px; height: auto; max-width: 100%;
}

.site-header__nav { display: flex; gap: 4px; align-items: center; margin-left: 4px; }
.site-header__nav > a, .megamenu__trigger {
  color: var(--tk-ink); font-weight: 500; font-size: 0.97rem;
  padding: 9px 14px; border-radius: var(--radius-btn);
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.site-header__nav > a:hover, .megamenu__trigger:hover { background: var(--tk-soft-blue); text-decoration: none; }
.site-header__nav > a[aria-current="page"] { color: var(--tk-blue); font-weight: 700; }
.megamenu__trigger::after {
  content: ""; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease;
}
.megamenu__trigger[aria-expanded="true"]::after { transform: rotate(-135deg) translateY(-2px); }

.site-header__end { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.site-header__cta { padding: 10px 22px; font-size: 0.95rem; white-space: nowrap; }

.region-switch {
  position: relative; display: block;
}
.locale-selector__trigger {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 38px; padding: 7px 14px;
  color: var(--tk-ink); background: transparent;
  border: 1px solid var(--tk-line); border-radius: 999px;
  font: 700 0.88rem/1 var(--font-body); cursor: pointer;
}
.locale-selector__trigger:hover { background: var(--tk-soft-blue); }
.locale-selector__flag {
  display: inline-grid; place-items: center; flex: 0 0 22px;
  width: 22px; height: 22px; overflow: hidden; border-radius: 50%;
  font-size: 17px; line-height: 1;
}
.locale-selector__chevron {
  width: 7px; height: 7px; margin-left: 1px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease;
}
.locale-selector__trigger[aria-expanded="true"] .locale-selector__chevron { transform: rotate(-135deg) translateY(-1px); }
.locale-selector__panel {
  position: absolute; right: 0; top: calc(100% + 12px); z-index: 180;
  width: min(386px, calc(100vw - 32px)); max-height: min(560px, calc(100vh - 96px));
  overflow-y: auto; padding: 18px;
  color: var(--tk-ink); background: var(--tk-white);
  border: 1px solid var(--tk-line); border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}
.locale-selector__panel[hidden] { display: none; }
.locale-selector__panel h2 { margin: 2px 0 16px; font-size: 1rem; letter-spacing: 0; }
.locale-selector__search {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  border: 1px solid var(--tk-line); border-radius: 12px; padding: 0 13px;
  color: var(--tk-muted);
}
.locale-selector__search:focus-within { border-color: var(--tk-blue); box-shadow: 0 0 0 2px rgba(11,85,159,0.12); }
.locale-selector__search input {
  width: 100%; min-height: 42px; padding: 0; border: 0; outline: 0;
  color: var(--tk-ink); background: transparent; font: 500 0.92rem var(--font-body);
}
.locale-selector__panel ul { list-style: none; display: grid; gap: 2px; }
.locale-selector__option a {
  display: grid; grid-template-columns: 24px minmax(0, 1fr) auto auto;
  align-items: center; gap: 10px; padding: 10px 12px;
  color: var(--tk-ink); border-radius: 9px; font-size: 0.93rem;
}
.locale-selector__option a:hover { background: var(--tk-soft-blue); text-decoration: none; }
.locale-selector__option a[aria-current="page"] { background: var(--tk-soft-blue); font-weight: 700; }
.locale-selector__country { font-weight: 600; }
.locale-selector__language { color: var(--tk-muted); }
.locale-selector__check { color: var(--tk-blue); font-weight: 800; }
.locale-selector__empty { padding: 16px 10px 4px; color: var(--tk-muted); text-align: center; }
.region-switch--mobile { display: none; }

/* dark header (used over dark heroes, like Hostinger's) */
.site-header--dark { background: var(--tk-navy-deep); border-bottom-color: rgba(255,255,255,0.12); }
.site-header--dark .site-header__nav > a,
.site-header--dark .megamenu__trigger { color: rgba(255,255,255,0.92); }
.site-header--dark .site-header__nav > a:hover,
.site-header--dark .megamenu__trigger:hover { background: rgba(255,255,255,0.08); }
.site-header--dark .site-header__nav > a[aria-current="page"] { color: var(--tk-white); }
.site-header--dark .locale-selector__trigger { color: var(--tk-white); border-color: rgba(255,255,255,0.28); }
.site-header--dark .locale-selector__trigger:hover { background: rgba(255,255,255,0.08); }
.site-header--dark .site-header__logo img { filter: none; }

/* mega menu panel */
.megamenu { position: static; }
/* The panel is ALWAYS dark, on light and dark headers alike — as Hostinger's is. */
.megamenu__panel {
  display: none;
  position: absolute; left: 50%; right: auto; top: calc(100% + 8px);
  width: min(1600px, calc(100vw - 48px));
  transform: translateX(-50%);
  background: var(--tk-navy-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  padding: 24px;
  grid-template-columns: 240px minmax(0, 1fr) 300px; gap: 24px;
  z-index: 120;
}
.megamenu__panel.is-open { display: grid; }

.megamenu__rail {
  list-style: none; display: grid; gap: 4px; align-content: start;
  border-right: 1px solid rgba(255,255,255,0.12); padding-right: 24px;
}
.megamenu__rail a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 999px;
  color: rgba(255,255,255,0.88); font-weight: 600; font-size: 0.95rem;
}
.megamenu__rail a:hover { background: rgba(255,255,255,0.08); color: var(--tk-white); text-decoration: none; }
.megamenu__rail a.is-active { background: var(--tk-blue); color: var(--tk-white); text-decoration: none; }

.megamenu__groups { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; align-content: start; }
.megamenu__panel.megamenu--tabs-ready .megamenu__groups { display: block; }
.megamenu__panel.megamenu--tabs-ready .megamenu__groups > [role="tabpanel"] { display: none; }
.megamenu__panel.megamenu--tabs-ready .megamenu__groups > [role="tabpanel"].is-active {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px; align-content: start;
}
.megamenu__panel.megamenu--tabs-ready .megamenu__groups > [role="tabpanel"] .megamenu__group-label {
  grid-column: 1 / -1;
}
.megamenu__group-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.megamenu__groups a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 12px; border-radius: var(--radius-card);
}
.megamenu__groups a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.megamenu__item-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.97rem; color: var(--tk-white);
  white-space: nowrap;
}
.megamenu__item-desc { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-top: 3px; }

.megamenu__promo {
  background: var(--tk-navy); color: var(--tk-white);
  border-radius: var(--radius-panel); padding: 26px;
  display: flex; flex-direction: column; gap: 12px; align-self: start;
}
.megamenu__promo-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tk-orange); }
.megamenu__promo h3 { color: var(--tk-white); font-size: 1.15rem; }
.megamenu__promo p { font-size: 0.9rem; color: rgba(255,255,255,0.78); }
.megamenu__promo .btn { margin-top: 6px; width: 100%; }

.resources-menu__panel {
  width: min(1040px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) 300px;
}
.resources-menu__groups {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px; align-content: start;
}
.resources-menu__groups > div {
  min-width: 0;
}
.resources-menu__groups .megamenu__item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border-radius: var(--radius-card);
}
.resources-menu__groups .megamenu__item:hover {
  background: rgba(255,255,255,0.08); text-decoration: none;
}

/* dark-context mega menu follows header surface */
.site-header--dark .megamenu__panel { background: var(--tk-navy-deep); border-color: rgba(255,255,255,0.14); }
.site-header--dark .megamenu__rail a { color: rgba(255,255,255,0.9); }
.site-header--dark .megamenu__rail a:hover, .site-header--dark .megamenu__rail a.is-active { background: rgba(255,255,255,0.08); color: var(--tk-white); }
.site-header--dark .megamenu__groups a:hover { background: rgba(255,255,255,0.08); }
.site-header--dark .megamenu__item-title { color: var(--tk-white); }
.site-header--dark .megamenu__item-desc { color: rgba(255,255,255,0.62); }
.site-header--dark .megamenu__group-label { color: rgba(255,255,255,0.55); }
.site-header--dark .megamenu__promo { background: var(--tk-white); color: var(--tk-ink); }
.site-header--dark .megamenu__promo h3 { color: var(--tk-ink); }
.site-header--dark .megamenu__promo p { color: var(--tk-muted); }

.nav-toggle { display: none; }

@media (max-width: 1240px) {
  .site-header__nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--tk-white);
    border-bottom: 1px solid var(--tk-line);
    flex-direction: column; align-items: stretch;
    padding: 16px 24px 22px; gap: 6px;
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .site-header--dark .site-header__nav { background: var(--tk-navy-deep); }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav > a, .megamenu__trigger { width: 100%; justify-content: flex-start; }
  .megamenu__panel { position: static; width: auto; transform: none; grid-template-columns: 1fr; padding: 8px 6px 14px; border: none; box-shadow: none; border-radius: 0; }
  .megamenu__rail {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 0 12px; margin-bottom: 4px;
  }
  .megamenu__rail a { border-radius: var(--radius-btn); padding: 9px 10px; }
  .megamenu__groups { grid-template-columns: 1fr; }
  .resources-menu__panel { grid-template-columns: 1fr; }
  .resources-menu__groups { grid-template-columns: 1fr; }
  .megamenu__panel.megamenu--tabs-ready .megamenu__groups > [role="tabpanel"].is-active {
    grid-template-columns: 1fr;
  }
  .megamenu__promo { display: none; }
  .site-header__end .region-switch { display: none; }
  .site-header__nav .region-switch--mobile { display: block; width: 100%; margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--tk-line); }
  .site-header--dark .site-header__nav .region-switch--mobile { border-top-color: rgba(255,255,255,0.14); }
  .region-switch--mobile .locale-selector__trigger { width: 100%; justify-content: flex-start; border-radius: var(--radius-btn); }
  .region-switch--mobile .locale-selector__chevron { margin-left: auto; }
  .region-switch--mobile .locale-selector__panel { position: static; width: 100%; max-height: none; margin-top: 8px; box-shadow: none; }
  .nav-toggle {
    display: block;
    background: none; border: 1px solid var(--tk-line); border-radius: var(--radius-btn);
    padding: 8px 12px; font-size: 1.05rem; cursor: pointer; color: var(--tk-ink);
  }
  .site-header--dark .nav-toggle { color: var(--tk-white); border-color: rgba(255,255,255,0.35); }
}

@media (max-width: 560px) {
  .site-header__inner { gap: 10px; }
  .site-header__logo { width: 138px; flex-basis: 138px; }
  .site-header__logo img { width: 138px; }
  .site-header__end { gap: 8px; min-width: 0; }
  .nav-toggle { padding: 7px 9px; font-size: 0.9rem; }
  .site-header__cta { padding: 9px 10px; font-size: 0.82rem; }
}

@media (max-width: 430px) {
  .site-header__cta { display: none; }
}

/* ---- hero ----------------------------------------------------------------- */

.hero { padding: 88px 0 96px; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 64px; align-items: start;
}
.hero__copy .lede { margin: 22px 0 28px; }

.hero__checklist { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.hero__checklist li { padding-left: 32px; position: relative; font-size: 1.05rem; }
.hero__checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--tk-soft-blue); color: var(--tk-blue);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* dark full-bleed hero (Hostinger homepage style) */
.hero--dark { background: var(--tk-navy-deep); }
.hero--dark h1, .hero--dark h2 { color: var(--tk-white); }
.hero--dark .lede { color: rgba(255,255,255,0.82); }
.hero--dark .hero__checklist li { color: rgba(255,255,255,0.9); }
.hero--dark .hero__checklist li::before { background: rgba(255,255,255,0.12); color: var(--tk-orange); }

.hero--cinematic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--tk-navy-deep) url("/images/homepage-showcase-poster.jpg") center / cover no-repeat;
}
.hero--cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 29, 51, 0.98) 0%, rgba(3, 29, 51, 0.88) 44%, rgba(3, 29, 51, 0.68) 100%),
    linear-gradient(0deg, rgba(3, 29, 51, 0.42), rgba(3, 29, 51, 0.08));
  pointer-events: none;
}
.hero--cinematic .hero__inner { position: relative; z-index: 2; }
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.landing-stage {
  padding: 24px clamp(16px, 2vw, 40px);
  background: #080808;
}
.hero--landing {
  min-height: clamp(560px, 68vh, 720px);
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.hero--landing::before {
  background:
    linear-gradient(90deg, rgba(3, 29, 51, 0.84) 0%, rgba(3, 29, 51, 0.58) 46%, rgba(3, 29, 51, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 29, 51, 0.44), rgba(3, 29, 51, 0.04));
}
.hero--landing .hero__inner {
  width: 100%;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
}
.hero--landing .hero__copy { max-width: 680px; }
.hero--landing h1 { font-size: clamp(2.65rem, 5vw, 4.8rem); }
.hero--landing .hero__actions { margin-top: 30px; }
.hero__assurance {
  margin-top: 18px;
  color: rgba(255,255,255,0.9);
  font-size: 0.94rem;
}
.hero__video-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  background: rgba(5, 18, 29, 0.62);
  color: var(--tk-white);
  font: 700 0.72rem/1 "DM Sans", sans-serif;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hero__video-toggle:hover { background: rgba(5, 18, 29, 0.86); }
.hero__video-toggle:focus-visible { outline: 3px solid var(--tk-orange); outline-offset: 3px; }
.hero__video-toggle span { transform: translateY(-0.5px); }
.btn--light {
  background: var(--tk-white);
  border-color: var(--tk-white);
  color: var(--tk-ink);
}
.btn--light:hover { background: #edf3f7; border-color: #edf3f7; color: var(--tk-ink); }

@media (max-width: 900px) {
  .hero--cinematic::before { background: rgba(3, 29, 51, 0.86); }
  .hero--landing::before { background: linear-gradient(90deg, rgba(3, 29, 51, 0.88), rgba(3, 29, 51, 0.52)); }
}

@media (max-width: 640px) {
  .landing-stage { padding: 0; }
  .hero--landing { min-height: 590px; border-radius: 0; }
  .hero--landing .hero__copy { max-width: 100%; }
  .hero--landing .hero__background { object-position: 58% center; }
}

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

/* ---- domain search hero ------------------------------------------------- */

.domain-hero {
  background: var(--tk-navy-deep);
  color: var(--tk-white);
  padding: 104px 0 120px;
}
.domain-hero__inner { max-width: 1100px; text-align: center; }
.domain-hero h1,
.domain-hero h2 { color: var(--tk-white); }
.domain-hero > .container > .lede {
  color: rgba(255,255,255,0.8);
  margin: 20px auto 34px;
}
.domain-search {
  width: min(650px, 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 9px 8px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--tk-white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.domain-search__icon { width: 22px; height: 22px; color: var(--tk-muted); }
.domain-search input[type="text"] {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--tk-ink);
  font: inherit;
  font-size: 1.05rem;
}
.domain-search button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--tk-orange);
  color: var(--tk-white);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}
.domain-search button:hover { background: #d96a20; }
.domain-search__note {
  max-width: 670px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.88rem;
}
.domain-promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  margin-top: 64px;
  text-align: left;
}
.domain-promo {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--tk-white);
}
.domain-promo p { color: rgba(255,255,255,0.82); }
.domain-promo h2 { margin: 8px 0 10px; font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
.domain-promo--primary { background: linear-gradient(135deg, var(--tk-blue), #3679b9); }
.domain-promo--accent {
  background:
    radial-gradient(circle at 80% 15%, rgba(244,127,50,0.82), transparent 36%),
    linear-gradient(145deg, #164e78, var(--tk-navy));
}
.domain-promo--link { background: #173d65; }
.domain-promo--link:hover { text-decoration: none; transform: translateY(-2px); }
.domain-promo__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--tk-orange);
}
.domain-promo__icon .icon { width: 28px; height: 28px; color: var(--tk-white); }
.domain-promo__metric { font-size: 2rem; font-weight: 700; color: var(--tk-white) !important; }
.domain-promo__arrow { position: absolute; top: 20px; right: 22px; font-size: 1.5rem; }
.domain-promo__transfer {
  width: 100%;
  margin: 72px 0 24px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tk-white);
  color: var(--tk-navy-deep);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 8px 8px 0 rgba(255,255,255,0.16);
}
.domain-promo__transfer .icon { width: 24px; height: 24px; color: var(--tk-blue); }
.domain-value-grid { grid-template-columns: repeat(4, 1fr); }
.domain-tld-card { display: flex; flex-direction: column; min-height: 230px; }
.domain-tld-card__name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 82px;
  min-height: 48px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--tk-navy-deep);
  color: var(--tk-white);
  font-size: 1.25rem;
  font-weight: 700;
}
.domain-tld-card .card__more { margin-top: auto; }
.domain-guide-grid .card__step { color: var(--tk-orange); }
.domain-basics-grid .card { min-height: 220px; }
.domain-price-note { margin-top: 18px; color: var(--tk-muted); font-size: 0.92rem; }
.domain-price-note a { font-weight: 700; }
.domain-consult { background: var(--tk-white); }
.domain-consult__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: start;
  gap: 72px;
}

@media (max-width: 900px) {
  .domain-promo-grid { grid-template-columns: 1fr 1fr; }
  .domain-promo--primary { grid-column: 1 / -1; }
  .domain-value-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-consult__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .domain-hero { padding: 72px 0 80px; }
  .domain-search { min-height: 60px; padding-left: 14px; border-radius: 14px; }
  .domain-search button { width: 44px; height: 44px; }
  .domain-promo-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .domain-promo--primary { grid-column: auto; }
  .domain-promo { min-height: 250px; }
  .domain-value-grid { grid-template-columns: 1fr; }
}

/* ---- conversion card ------------------------------------------------------ */

.convert-card {
  background: var(--tk-white);
  border-radius: var(--radius-panel);
  border: 1px solid var(--tk-line);
  box-shadow: var(--shadow-panel);
  padding: 32px 30px;
}
.hero--dark .convert-card { border-color: transparent; }
.convert-card h2 { font-size: 1.3rem; margin-bottom: 8px; color: var(--tk-ink); }
.convert-card__note { font-size: 0.94rem; color: var(--tk-muted); margin-bottom: 22px; }
.convert-card p + p { margin-top: 10px; }

.convert-card form { display: grid; gap: 14px; }
.convert-card label { font-weight: 600; font-size: 0.9rem; display: grid; gap: 6px; color: var(--tk-ink); }
.convert-card input[type="text"],
.convert-card input[type="email"],
.convert-card input[type="tel"],
.convert-card textarea {
  font: inherit; color: var(--tk-ink);
  border: 1px solid var(--tk-line); border-radius: var(--radius-btn);
  padding: 12px 14px; background: var(--tk-white); width: 100%;
}
.convert-card input:focus, .convert-card textarea:focus {
  outline: none; border-color: var(--tk-blue);
  box-shadow: 0 0 0 3px rgba(11, 85, 159, 0.15);
}
.convert-card__consent {
  margin: 0; font-size: 0.82rem; line-height: 1.45;
  font-weight: 400; color: var(--tk-muted);
}
.convert-card .btn { width: 100%; }
.convert-card__alt { font-size: 0.9rem; color: var(--tk-muted); text-align: center; margin-top: 4px; }

/* ---- logo / trust strip --------------------------------------------------- */

.logo-strip { padding: 48px 0 56px; border-top: 1px solid var(--tk-line); }
.logo-strip__label {
  text-align: center; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--tk-muted); margin-bottom: 28px; font-weight: 700;
}
.logo-strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 56px; align-items: center; }
.logo-strip__row img {
  height: 34px; width: auto;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.logo-strip__row img:hover { filter: none; opacity: 1; }

.trust-strip { text-align: center; padding: 26px 0; font-size: 0.95rem; color: var(--tk-muted); }
.trust-strip strong { color: var(--tk-ink); }
.trust-strip a { font-weight: 600; }
.trust-strip__stars { color: var(--tk-orange); letter-spacing: 2px; margin-right: 8px; }

/* ---- cards ---------------------------------------------------------------- */

.card {
  background: var(--tk-white);
  border: 1px solid var(--tk-line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); border-color: #c3ccd4; text-decoration: none; }
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; }

.card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-card);
  background: var(--tk-soft-blue); color: var(--tk-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--tk-muted); font-size: 0.96rem; }
.card ul { margin: 12px 0 0 18px; color: var(--tk-muted); font-size: 0.94rem; display: grid; gap: 6px; }
.card__more { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 0.95rem; color: var(--tk-blue); }
.card .eyebrow { margin-bottom: 8px; }
.card__kicker, .card__meta {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--tk-muted); margin-bottom: 6px;
}
.card__tags { margin-top: 14px; font-size: 0.83rem; color: var(--tk-muted); }
.card__tags span,
.quote-card__tags span {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; color: var(--tk-muted);
  background: var(--tk-soft-blue); border-radius: 999px; padding: 5px 12px;
  margin: 3px 4px 3px 0;
}
.card__outcome { font-weight: 700; color: var(--tk-ink); margin-bottom: 8px; }
.card__step {
  font-size: 1.6rem; font-weight: 700; color: var(--tk-blue);
  margin-bottom: 10px; display: block;
}
.section--tint .card { border-color: transparent; }
.section--tint .card--featured { border-color: var(--tk-blue); }
.card ul li { margin-bottom: 6px; }

/* ---- plan cards (Hostinger pricing pattern) ------------------------------- */

.plan-card { position: relative; display: flex; flex-direction: column; }
.plan-card .btn { width: 100%; margin-top: auto; }
.plan-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--tk-orange); color: var(--tk-white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.card--featured { border: 2px solid var(--tk-blue); }
.price-figure { margin: 14px 0 4px; color: var(--tk-ink); }
.price-figure .price-old {
  display: block; font-size: 0.95rem; color: var(--tk-muted);
  text-decoration: line-through; font-weight: 500;
}
.price-figure .price-now { font-size: 2.4rem; font-weight: 700; line-height: 1.1; }
.price-figure .price-term { font-size: 0.95rem; color: var(--tk-muted); font-weight: 500; }
.plan-list { list-style: none; margin: 16px 0 22px; display: grid; gap: 9px; }
.plan-list li { padding-left: 26px; position: relative; font-size: 0.94rem; color: var(--tk-muted); }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--tk-blue); font-weight: 700; }

/* ---- chips ---------------------------------------------------------------- */

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row--center { justify-content: center; }
.hero__copy .chip-row { margin-bottom: 26px; }
.convert-card .chip-row { margin-bottom: 18px; }
.chip {
  display: inline-block; padding: 8px 16px;
  border: 1px solid var(--tk-line); border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; color: var(--tk-ink); background: var(--tk-white);
}

/* ---- stats band ----------------------------------------------------------- */

.stats { padding: 88px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.stats__grid--4 { grid-template-columns: repeat(4, 1fr); }
.stats__num { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--tk-white); line-height: 1; }
.stats__num em { font-style: normal; color: var(--tk-orange); }
.stats__label { margin-top: 10px; color: rgba(255,255,255,0.75); font-size: 0.98rem; }
.stats__note { text-align: center; margin-top: 34px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) { .stats__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stats__grid, .stats__grid--4 { grid-template-columns: 1fr; } }

/* ---- testimonials --------------------------------------------------------- */

.quote-card { display: flex; flex-direction: column; gap: 16px; }
.quote-card__stars { color: var(--tk-orange); letter-spacing: 2px; font-size: 0.95rem; }
.quote-card blockquote { font-size: 1rem; color: var(--tk-ink); }
.quote-card figcaption { font-size: 0.88rem; color: var(--tk-muted); margin-top: auto; }
.quote-card__tags { font-size: 0.82rem; color: var(--tk-muted); }

/* ---- FAQ (Hostinger: hairline rows, right-aligned toggles) ---------------- */

.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--tk-line); }
.faq details:first-of-type { border-top: 1px solid var(--tk-line); }
.faq summary {
  font-weight: 700; font-size: 1.08rem;
  padding: 24px 8px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--tk-ink); font-size: 1.5rem; font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 8px 24px; color: var(--tk-muted); max-width: 68ch; }
.section--tint .faq details { border-color: #d9e2e9; }

/* ---- video embed ---------------------------------------------------------- */

.video-embed, .video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-panel); overflow: hidden;
  background: var(--tk-navy-deep);
}
.video-embed iframe, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- legal ---------------------------------------------------------------- */

.legal-copy { max-width: 760px; margin: 0 auto; }
.legal-copy h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.legal-copy h3 { margin: 26px 0 10px; }
.legal-copy p { margin-bottom: 14px; color: var(--tk-ink); }
.legal-copy ul, .legal-copy ol { margin: 0 0 14px 22px; display: grid; gap: 6px; }
.legal-note { font-size: 0.9rem; color: var(--tk-muted); border-top: 1px solid var(--tk-line); padding-top: 18px; margin-top: 34px; }

/* ---- detail tables (About company info) ----------------------------------- */

.detail-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.detail-table td { padding: 9px 0; vertical-align: top; }
.detail-table td:first-child { color: var(--tk-muted); width: 42%; padding-right: 14px; }

/* ---- misc shared ----------------------------------------------------------- */

.proof-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.content-narrow { max-width: 760px; }
.copy-spaced { margin-bottom: 18px; }
.stack-top-16 { margin-top: 16px; }
.stack-top-22 { margin-top: 22px; }
.stack-top-26 { margin-top: 26px; }
.stack-top-32 { margin-top: 32px; }
.centered-action { margin-top: 32px; text-align: center; }
.portfolio-intro { margin: 0 0 26px; color: var(--tk-muted); max-width: 56ch; }
.cta-phones { margin-top: 22px; font-size: 0.98rem; }
.cta-phones a { font-weight: 700; }
.section--dark .cta-phones { color: rgba(255,255,255,0.8); }
.section--dark .cta-phones a { color: var(--tk-white); }

/* ---- production form states --------------------------------------------- */

.form-honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}
.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-card);
  font-size: 0.92rem; line-height: 1.45;
}
.form-status[hidden] { display: none; }
.form-status--success { background: #e7f6ec; color: #155b2d; border: 1px solid #b8dfc4; }
.form-status--error { background: #fff0ed; color: #8a2f1d; border: 1px solid #efc4bb; }
.convert-card button[disabled] { cursor: wait; opacity: 0.72; }

/* ---- regional storefronts ---------------------------------------------- */

.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.offer-card {
  background: var(--tk-white); border: 1px solid var(--tk-line);
  border-radius: var(--radius-card); padding: 24px;
  display: flex; flex-direction: column; min-height: 100%;
}
.offer-card__price { margin: 14px 0 4px; color: var(--tk-ink); }
.offer-card__price strong { font-size: 2rem; line-height: 1; }
.offer-card__price span { color: var(--tk-muted); font-size: 0.86rem; }
.offer-card .btn { margin-top: auto; width: 100%; }
.local-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14);
}
.local-proof > div { background: var(--tk-navy-deep); padding: 30px; text-align: center; }
.local-proof strong { display: block; color: var(--tk-white); font-size: 1.35rem; margin-bottom: 6px; }
.local-proof span { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .offer-grid, .local-proof { grid-template-columns: 1fr; }
  .offer-card { padding: 20px; }
}

/* ---- pre-footer CTA band --------------------------------------------------- */

.cta-band { text-align: center; padding: 112px 0 56px; }
.cta-band h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.cta-band p { max-width: 56ch; margin: 0 auto 32px; }
.cta-band p:last-child { margin-bottom: 0; }

/* ---- footer (Hostinger anatomy: dark, columns, bottom meta row) ------------ */

.site-footer {
  background: var(--tk-navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 48px 0 36px;
  font-size: 0.95rem;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--tk-white); }
.site-footer__directory {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 34px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.site-footer__column { min-width: 0; }
.site-footer__brand img {
  display: block; width: 190px; height: auto; max-width: 100%;
  margin: 0 0 22px;
  filter: none;
}
.site-footer__brand { max-width: 520px; }
.site-footer__brand p { max-width: 58ch; }
.site-footer__brand-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 36px;
  padding: 44px 0 36px; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.site-footer__brand-row .btn { flex: 0 0 auto; }
.site-footer h4 {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tk-white); margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer__directory a { line-height: 1.35; }
.site-footer__legal {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; padding-top: 28px;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
}
@media (max-width: 1100px) { .site-footer__directory { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) {
  .cta-band { padding-bottom: 40px; }
  .site-footer { padding-top: 40px; }
  .site-footer__directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand-row { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 440px) { .site-footer__directory { grid-template-columns: 1fr; } }

/* ---- icons (outline sprite, /icons.svg) ------------------------------------ */

.icon { width: 24px; height: 24px; display: block; }
.card__icon .icon { width: 22px; height: 22px; }
.megamenu__rail .icon { width: 18px; height: 18px; flex-shrink: 0; }
.megamenu__rail a { align-items: center; }
.megamenu__panel .icon { color: var(--tk-white); }
.megamenu__groups .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.megamenu__item { display: flex; gap: 12px; align-items: flex-start; }

/* menu/item badge pills (Hostinger "New"/"Popular") */
.menu-badge {
  display: inline-block; flex: 0 0 auto; white-space: nowrap;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--tk-blue); background: var(--tk-soft-blue);
  border-radius: 999px; padding: 2px 9px;
}
.site-header--dark .menu-badge { background: rgba(255,255,255,0.14); color: var(--tk-white); }

/* ---- long-form page archetypes ------------------------------------------ */

.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;
}
.panel {
  background: var(--tk-white); border: 1px solid var(--tk-line);
  border-radius: var(--radius-card); padding: 32px 30px; box-shadow: var(--shadow-card);
}
.section--tint .panel { border-color: transparent; }
.panel h3 { margin-bottom: 14px; }
.panel > p { color: var(--tk-muted); }
.panel__label,
.feature-row__panel-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--tk-muted); margin-bottom: 14px;
}
.panel .plan-list { margin-bottom: 0; }
.panel .detail-table td:first-child { width: 38%; color: var(--tk-ink); font-weight: 600; }
.panel .detail-table tr + tr td { border-top: 1px solid var(--tk-line); padding-top: 14px; }

.plan-list--cols,
.fit-list--cols { grid-template-columns: 1fr 1fr; column-gap: 36px; }
.fit-list { list-style: none; display: grid; gap: 12px; }
.fit-list li { position: relative; padding-left: 28px; color: var(--tk-muted); font-size: 0.98rem; }
.fit-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--tk-blue); font-weight: 700; }
.fit-list--no li::before { content: "\2014"; color: var(--tk-orange); }
.split-band { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }

.feature-row {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px;
  align-items: center; padding-bottom: 44px;
}
.feature-row + .feature-row { border-top: 1px solid var(--tk-line); padding-top: 44px; }
.feature-row:last-child { padding-bottom: 0; }
.section--tint .feature-row + .feature-row { border-top-color: #d9e2e9; }
.feature-row--flip .feature-row__copy { order: 2; }
.feature-row__step,
.factor__num {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--tk-orange); margin-bottom: 10px;
}
.feature-row h3 { font-size: 1.45rem; margin-bottom: 12px; }
.feature-row p { color: var(--tk-muted); }
.feature-row p + p { margin-top: 12px; }
.feature-row__panel {
  background: var(--tk-white); border: 1px solid var(--tk-line);
  border-radius: var(--radius-card); padding: 26px 24px; box-shadow: var(--shadow-card);
}
.section--tint .feature-row__panel { border-color: transparent; }
.feature-row__panel .plan-list { margin: 0; }

.section--dark .cap-card {
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card); padding: 28px 26px;
}
.section--dark .cap-card h3 { color: var(--tk-white); font-size: 1.15rem; margin-bottom: 10px; }
.section--dark .cap-card p,
.section--dark .cap-card .plan-list li { color: rgba(255,255,255,0.78); font-size: 0.96rem; }
.section--dark .cap-card .card__icon { background: rgba(255,255,255,0.1); color: var(--tk-orange); }
.section--dark .cap-card .cap-card__num { font-size: 2.1rem; font-weight: 700; line-height: 1; color: var(--tk-orange); margin-bottom: 14px; }
.section--dark .cap-card .plan-list li::before { color: var(--tk-orange); }
.section--dark .panel { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); box-shadow: none; }
.section--dark .panel h3 { color: var(--tk-white); }
.section--dark .panel .plan-list li { color: rgba(255,255,255,0.78); }
.section--dark .panel .plan-list li::before,
.section--dark .eyebrow { color: var(--tk-orange); }
.section--dark .panel .btn-note { color: rgba(255,255,255,0.6); }
.section--dark .card h3,
.section--dark .card .card__outcome { color: var(--tk-ink); }
.section--dark .card p { color: var(--tk-muted); }
.section--dark .card .eyebrow { color: var(--tk-orange); }
.section--dark .centered-action .btn + .btn { margin-left: 12px; }
.section--dark .chip { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: var(--tk-white); }
.stats__note a { color: var(--tk-white); text-decoration: underline; }

.table-scroll,
.cmp-wrap,
.resp-table-wrap,
.cs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--tk-white); border: 1px solid var(--tk-line); }
.compare-table th,
.compare-table td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--tk-line); font-size: 0.95rem; }
.compare-table thead th { background: var(--tk-navy-deep); color: var(--tk-white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-table tbody th { width: 30%; font-weight: 600; color: var(--tk-ink); }
.compare-table tbody td { color: var(--tk-muted); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table__service a { font-weight: 700; }
.compare-table__price { white-space: nowrap; color: var(--tk-ink); font-weight: 600; }
.compare-note { margin-top: 24px; font-size: 0.92rem; color: var(--tk-muted); max-width: 74ch; }

.cmp-wrap { border: 1px solid var(--tk-line); border-radius: var(--radius-card); background: var(--tk-white); }
.section--tint .cmp-wrap { border-color: transparent; box-shadow: var(--shadow-card); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 900px; font-size: 0.93rem; }
.cmp-table th,
.cmp-table td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--tk-line); }
.cmp-table thead th { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tk-muted); font-weight: 700; background: var(--tk-soft-blue); white-space: nowrap; }
.cmp-table tbody th,
.cmp-table tbody th a { font-weight: 700; color: var(--tk-ink); }
.cmp-table td { color: var(--tk-muted); }
.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-price { color: var(--tk-ink); font-weight: 700; white-space: nowrap; }
.cmp-note { font-size: 0.88rem; color: var(--tk-muted); margin-top: 16px; }
.plan-deck { margin-top: 16px; }
a.chip { text-decoration: none; }
a.chip:hover { border-color: var(--tk-blue); color: var(--tk-blue); }

.resp-table { width: 100%; border-collapse: collapse; font-size: 0.96rem; min-width: 660px; }
.resp-table th { text-align: left; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--tk-muted); font-weight: 700; padding: 0 18px 12px 0; border-bottom: 1px solid var(--tk-line); }
.resp-table td { padding: 16px 18px 16px 0; vertical-align: top; border-bottom: 1px solid var(--tk-line); color: var(--tk-muted); }
.resp-table td:first-child { color: var(--tk-ink); font-weight: 600; width: 25%; }
.resp-table td:last-child { padding-right: 0; color: var(--tk-ink); font-weight: 600; width: 28%; }
.section--tint .resp-table th,
.section--tint .resp-table td { border-bottom-color: #d9e2e9; }

.factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 52px; }
.factor h3 { font-size: 1.1rem; margin-bottom: 8px; }
.factor p { color: var(--tk-muted); font-size: 0.96rem; }
.diag-card h3 { font-size: 1.08rem; margin-bottom: 0; }
.diag-card__label,
.build-card__label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--tk-blue); }
.diag-card__label { margin-bottom: 6px; }
.diag-card__cause { border-top: 1px solid var(--tk-line); margin-top: 16px; padding-top: 14px; }
.diag-card__cause .diag-card__label { color: var(--tk-muted); }
.section--tint .diag-card__cause { border-top-color: #d9e2e9; }

.build-card h3 { font-size: 1.15rem; }
.build-card__label { margin: 16px 0 8px; }
.build-flow { list-style: none; margin: 0; display: grid; gap: 9px; counter-reset: buildstep; }
.build-flow li { position: relative; padding-left: 32px; font-size: 0.93rem; color: var(--tk-muted); counter-increment: buildstep; }
.build-flow li::before { content: counter(buildstep); position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 50%; background: var(--tk-navy-deep); color: var(--tk-white); font-size: 0.7rem; font-weight: 700; line-height: 21px; text-align: center; }
.build-card__replaces { border-top: 1px solid var(--tk-line); margin-top: 18px; padding-top: 14px; font-size: 0.9rem; color: var(--tk-muted); }
.section--tint .build-card__replaces { border-top-color: #d9e2e9; }
.surface-row { display: grid; grid-template-columns: 268px 1fr; gap: 28px; padding: 22px 0; align-items: start; }
.surface-row + .surface-row { border-top: 1px solid var(--tk-line); }
.surface-row:first-child { padding-top: 0; }
.surface-row:last-child { padding-bottom: 0; }
.surface-row h3 { font-size: 1.05rem; margin: 0; }
.surface-row p { color: var(--tk-muted); font-size: 0.92rem; margin-top: 6px; }
.surface-row .chip { font-size: 0.85rem; padding: 6px 13px; }

.type-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.type-card > p { color: var(--tk-muted); }
.type-card .plan-list { margin-bottom: 0; }
.step-card .card__step { line-height: 1; margin-bottom: 8px; }
.step-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step-card p { color: var(--tk-muted); font-size: 0.96rem; }
.subhead { margin: 64px 0 24px; max-width: 64ch; }
.subhead h3 { font-size: 1.4rem; }
.subhead p { color: var(--tk-muted); margin-top: 8px; font-size: 0.98rem; }
.build-list { border-top: 1px solid var(--tk-line); }
.build-row { display: grid; grid-template-columns: 0.85fr 2.15fr; gap: 36px; padding: 24px 0; border-bottom: 1px solid var(--tk-line); align-items: start; }
.section--tint .build-list,
.section--tint .build-row { border-color: #d9e2e9; }
.build-row h3 { font-size: 1.08rem; margin-bottom: 6px; }
.build-row p { color: var(--tk-muted); font-size: 0.96rem; }
.build-row .card__meta { margin-bottom: 0; }
.build-row .card__tags { margin-top: 10px; }
.logo-strip__names { text-align: center; margin-top: 26px; font-size: 0.92rem; color: var(--tk-muted); }
.logo-strip__row + .logo-strip__label { margin-top: 40px; }

.cs-scroll { margin-top: 44px; }
.cs-matrix { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 0.94rem; }
.cs-matrix th,
.cs-matrix td { padding: 15px 18px 15px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--tk-line); }
.cs-matrix thead th { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tk-muted); font-weight: 700; }
.cs-matrix tbody th { font-weight: 700; white-space: nowrap; }
.cs-matrix tbody tr:last-child th,
.cs-matrix tbody tr:last-child td { border-bottom: 0; }
.cs-scroll-note { font-size: 0.85rem; color: var(--tk-muted); margin-top: 12px; }

@media (max-width: 860px) {
  .feature-row,
  .split-band { grid-template-columns: 1fr; gap: 26px; }
  .feature-row--flip .feature-row__copy { order: 0; }
  .plan-list--cols,
  .fit-list--cols,
  .factor-grid,
  .surface-row { grid-template-columns: 1fr; }
  .surface-row { gap: 14px; }
  .panel { padding: 26px 22px; }
  .build-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---- service pricing routes ------------------------------------------ */

.pricing-hero {
  overflow: hidden;
  padding: clamp(82px, 9vw, 126px) 0 76px;
  background:
    radial-gradient(circle at 50% 115%, rgba(54, 122, 246, 0.22), transparent 38%),
    var(--tk-navy-deep);
  color: var(--tk-white);
  text-align: center;
}
.promo-strip + .site-header + main .pricing-hero { padding-top: clamp(68px, 7vw, 104px); }
.pricing-hero .container { max-width: 1260px; }
.pricing-hero .eyebrow,
.pricing-hero .pricing-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--tk-white);
  font-size: clamp(2.8rem, 5.5vw, 4.7rem);
  letter-spacing: -0.055em;
}
.pricing-hero .lede { max-width: 760px; margin: 18px auto 0; color: rgba(255,255,255,0.78); }
.pricing-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin-top: 28px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.pricing-hero__benefits span { white-space: nowrap; }
.pricing-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 46px auto 0;
}
.pricing-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(74, 43, 166, 0.86);
  color: var(--tk-white);
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.pricing-nav__link:hover { transform: translateY(-1px); background: var(--tk-blue); color: var(--tk-white); }
.pricing-nav__link.is-active { background: var(--tk-white); border-color: var(--tk-white); color: var(--tk-ink); }
.pricing-nav__link .icon { width: 18px; height: 18px; color: currentColor; }
.pricing-nav-mobile { display: none; }
.pricing-nav-mobile__field { display: block; }
.pricing-nav-mobile__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-nav-mobile__select {
  width: 100%;
  min-height: 54px;
  padding: 0 52px 0 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--tk-ink) 50%) calc(100% - 24px) 23px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--tk-ink) 50%, transparent 50%) calc(100% - 17px) 23px / 7px 7px no-repeat,
    var(--tk-white);
  color: var(--tk-ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.pricing-nav-mobile__select:focus-visible {
  outline: 3px solid var(--tk-orange);
  outline-offset: 3px;
}
.pricing-plan { min-width: 0; }
a.pricing-plan { color: inherit; text-decoration: none; }
a.pricing-plan:hover { transform: translateY(-3px); border-color: rgba(54,122,246,0.35); }
.pricing-service-link { margin-top: 30px; text-align: center; font-weight: 700; }
.pricing-service-link a:not(.btn) { color: var(--tk-blue); }
.pricing-domain-search { margin-top: 42px; text-align: center; }
.pricing-domain-search h3 { margin-bottom: 16px; }
.pricing-domain-search .domain-search > .icon { width: 22px; height: 22px; color: var(--tk-muted); }

@media (max-width: 720px) {
  .pricing-hero { padding: 66px 0 52px; text-align: left; }
  .pricing-hero h1,
  .pricing-hero .lede { margin-left: 0; }
  .pricing-hero__benefits { justify-content: flex-start; display: grid; gap: 10px; }
  .pricing-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .pricing-nav__link { scroll-snap-align: start; }
  .pricing-nav-mobile {
    display: block;
    width: 100%;
    margin: 38px 0 0;
    text-align: left;
  }
  .pricing-nav--enhanced { display: none; }
  [dir="rtl"] .pricing-nav-mobile { text-align: right; }
  [dir="rtl"] .pricing-nav-mobile__select {
    padding-right: 18px;
    padding-left: 52px;
    background-position: 17px 23px, 24px 23px, 0 0;
  }
}

/* ---- localized writing systems ----------------------------------------- */

html[lang^="ar"] body { font-family: "Noto Sans Arabic", "DM Sans", sans-serif; }
html[lang^="he"] body { font-family: "Noto Sans Hebrew", "DM Sans", sans-serif; }
html[lang^="zh"] body { font-family: "Noto Sans SC", "DM Sans", sans-serif; }
[dir="rtl"] body { direction: ltr; }
[dir="rtl"] .site-header__inner,
[dir="rtl"] .site-header__nav,
[dir="rtl"] .site-header__end,
[dir="rtl"] .hero__actions,
[dir="rtl"] .megamenu__item,
[dir="rtl"] .hero__copy,
[dir="rtl"] .convert-card,
[dir="rtl"] .section-head,
[dir="rtl"] .card,
[dir="rtl"] .site-footer,
[dir="rtl"] .megamenu__panel,
[dir="rtl"] .locale-selector__panel,
[dir="rtl"] .promo-strip,
[dir="rtl"] .domain-hero,
[dir="rtl"] .domain-search,
[dir="rtl"] .domain-promo,
[dir="rtl"] .table-scroll,
[dir="rtl"] .faq,
[dir="rtl"] .cta-band { direction: rtl; }
[dir="rtl"] .compare-table th,
[dir="rtl"] .compare-table td { text-align: right; }
[dir="rtl"] .domain-promo__arrow { right: auto; left: 22px; }
[dir="rtl"] .pricing-hero,
[dir="rtl"] .pricing-nav { direction: rtl; }
[dir="rtl"] .hero__copy,
[dir="rtl"] .convert-card,
[dir="rtl"] .section-head,
[dir="rtl"] .card,
[dir="rtl"] .site-footer,
[dir="rtl"] .megamenu__panel,
[dir="rtl"] .locale-selector__panel { text-align: right; }
[dir="rtl"] .hero__checklist li,
[dir="rtl"] .plan-list li,
[dir="rtl"] .fit-list li { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .hero__checklist li::before,
[dir="rtl"] .plan-list li::before,
[dir="rtl"] .fit-list li::before { left: auto; right: 0; }
[dir="rtl"] .locale-selector__panel { right: auto; left: 0; }

/* /promo — offers page.
   Every offer is an exchange: the eyebrow states the trigger, the headline
   states the gift, and the white sheet states the arithmetic — the "written
   quote" this brand promises everywhere, made visible. All offers get the
   same featured treatment; the layout implies no ranking. */
.po { padding: 72px 0 96px; --po-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; }
.po > .container { display: grid; gap: 28px; }
.hero.po-hero { padding: 88px 0 76px; }
.hero.po-hero .lede { max-width: 880px; }

.po-kicker {
  font-size: 11px; font-weight: 700; line-height: 1.5;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tk-orange); margin: 0 0 14px;
}

/* Offer panel — navy, pitch left, exchange sheet right */
.po-offer {
  background: var(--tk-navy-deep); color: #fff;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  display: grid;
  grid-template-areas: "primary sheet" "actions sheet";
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  grid-template-rows: auto 1fr;
  column-gap: 56px; row-gap: 0;
  padding: 52px 56px;
}
.po-offer__primary { grid-area: primary; }
.po-offer__actions { grid-area: actions; }
.po-offer h2 { font-size: clamp(28px, 2.8vw, 38px); line-height: 1.14; letter-spacing: -0.02em; color: #fff; margin: 0 0 14px; }
.po-offer__lede { color: #c9d5e1; font-size: 16px; line-height: 1.65; margin: 0 0 12px; }
.po-offer__note { color: #8ba1b6; font-size: 13.5px; line-height: 1.6; margin: 0 0 24px; }
.po-offer__cta { margin: 0 0 24px; }
.po-offer__actions .po-offer__note { margin-top: 12px; }
.po-offer .btn--accent { color: var(--tk-navy-deep); }
.po-offer__meta {
  align-items: center; display: flex; flex-wrap: wrap;
  gap: 8px 10px; margin: 0 0 18px;
}
.po-status {
  background: var(--tk-soft-blue); border-radius: 999px;
  color: var(--tk-navy-deep); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; padding: 6px 10px; text-transform: uppercase;
}

/* The exchange sheet — the written quote, itemised */
.po-sheet {
  grid-area: sheet;
  background: var(--tk-white); color: var(--tk-ink);
  border-radius: var(--radius-card);
  padding: 24px 28px 0;
  align-self: center;
  box-shadow: 0 12px 40px rgba(4, 18, 33, 0.35);
}
.po-sheet__title {
  font-family: var(--po-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tk-muted); margin: 0; padding-bottom: 13px;
  border-bottom: 2px solid var(--tk-ink);
}
.po-row {
  display: grid; grid-template-columns: 82px minmax(0, 1fr) auto;
  grid-template-areas: "label item amt";
  gap: 6px 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--tk-line);
}
.po-row__label { grid-area: label; font-family: var(--po-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tk-muted); }
.po-row__item { grid-area: item; font-size: 14.5px; line-height: 1.5; }
.po-row__amt { grid-area: amt; font-family: var(--po-mono); font-size: 11px; color: var(--tk-muted); white-space: nowrap; }
.po-row--free {
  border-bottom: 0;
  background: var(--tk-soft-blue);
  margin: 8px -28px 0;
  padding: 15px 28px 17px;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}
.po-row--free .po-row__label { color: var(--tk-navy); }
.po-row--free .po-row__item { font-weight: 600; }
.po-row__amt--free {
  background: var(--tk-orange); border-radius: 999px;
  color: var(--tk-navy-deep); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; line-height: 1; padding: 6px 9px;
  text-transform: uppercase;
}

/* Terms — present, but folded */
.po-terms { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 14px; }
.po-terms summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #b9cfe4; }
.po-terms summary::-webkit-details-marker { display: none; }
.po-terms summary::after { content: "▾"; font-size: 9px; transition: transform 0.18s ease; }
.po-terms[open] summary::after { transform: rotate(180deg); }
.po-terms ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.po-terms li { position: relative; padding-inline-start: 14px; font-size: 13px; line-height: 1.55; color: #8ba1b6; }
.po-terms li::before { content: "·"; position: absolute; inset-inline-start: 2px; }

.po summary:focus-visible, .po a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 4px; }

/* Offer artifact — what sits opposite the pitch.
   Deliberately NOT a receipt card: where a real published price exists the
   offer states the price it replaces, and where none exists it states what
   actually happens instead. No borrowed document furniture. */
.po-swap { align-self: center; }
.po-swap__label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: #8ba1b6; margin: 0 0 10px; }
.po-swap__line { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin: 0 0 10px; }
.po-swap__was { font-size: 30px; font-weight: 500; color: #7e94aa; text-decoration: line-through; text-decoration-thickness: 2px; }
.po-swap__now { font-size: clamp(52px, 6vw, 76px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--tk-orange); }
.po-swap__unit { font-size: 0.34em; letter-spacing: 0; margin-inline-start: 4px; }
.po-swap__for { font-size: 17px; font-weight: 600; color: #fff; margin: 0 0 8px; }
.po-swap__foot { font-size: 14px; line-height: 1.6; color: #8ba1b6; margin: 0; max-width: 34ch; }

.po-moves { align-self: center; }
.po-moves__label { font-size: 13px; font-weight: 600; color: #8ba1b6; margin: 0 0 16px; }
.po-moves__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.po-moves__list li { position: relative; padding-inline-start: 30px; font-size: 16px; line-height: 1.5; color: #fff; }
.po-moves__list li::before {
  content: "";
  position: absolute; inset-inline-start: 0; top: 0.42em;
  width: 9px; height: 5px;
  border-inline-start: 2px solid var(--tk-orange);
  border-bottom: 2px solid var(--tk-orange);
  transform: rotate(-45deg);
}
.po-moves__foot { font-size: 14px; line-height: 1.6; color: #8ba1b6; margin: 16px 0 0; max-width: 34ch; }

@media (max-width: 980px) {
  .po-swap, .po-moves { align-self: stretch; }
}

/* Offer FAQ — same folded pattern, on light ground */
.po-faq .po-terms { border-top: 1px solid var(--tk-line); padding: 16px 0; }
.po-faq .po-terms:last-child { border-bottom: 1px solid var(--tk-line); }
.po-faq .po-terms summary { color: var(--tk-ink); font-size: 16px; }
.po-faq .po-terms li { color: var(--tk-muted); font-size: 14.5px; max-width: 820px; }
.po-faq .po-terms li::before { content: none; }
.po-faq .po-terms li { padding-inline-start: 0; }
.po-faq summary:focus-visible { outline: 2px solid var(--tk-blue); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: no-preference) {
  .po-offer { animation: poRise 0.55s cubic-bezier(0.22, 0.7, 0.3, 1) backwards; }
  .po-offer:nth-child(2) { animation-delay: 0.1s; }
  .po-offer:nth-child(3) { animation-delay: 0.18s; }
  @keyframes poRise { from { opacity: 0; transform: translateY(14px); } }
}

@media (max-width: 980px) {
  .po-offer {
    grid-template-areas: "primary" "sheet" "actions";
    grid-template-columns: 1fr; grid-template-rows: auto;
    gap: 26px; padding: 40px 32px;
  }
  .po-offer__actions .po-offer__note { margin-top: 0; }
  .po-sheet { align-self: stretch; }
}
@media (max-width: 760px) {
  .po { padding: 44px 0 64px; }
  .hero.po-hero { padding: 64px 0 56px; }
  .po > .container { gap: 24px; }
  .po-offer { padding: 30px 18px; border-radius: var(--radius-card); }
  .po-sheet { margin-inline: -8px; padding: 18px 18px 0; }
  .po-row { grid-template-columns: 1fr auto; grid-template-areas: "label amt" "item item"; }
  .po-row--free { margin: 8px -18px 0; padding: 13px 18px 15px; }
  .po-row__label { font-size: 11.5px; }
  .po-row__amt { font-size: 12px; }
  .po-offer__cta .btn { justify-content: center; width: 100%; }
  .po-swap__line { flex-wrap: nowrap; gap: 12px; }
  .po-swap__was { font-size: 26px; white-space: nowrap; }
  .po-swap__now { white-space: nowrap; }
}
@media (max-width: 360px) {
  .po-swap__line { align-items: flex-start; flex-direction: column; gap: 6px; }
}
