/* SiteDeploy — clean, conventional hosting site */

:root {
  --navy:        #1a2c5e;
  --navy-dark:   #0f1d40;
  --navy-light:  #2c3f7a;
  --red:         #ed3a45;
  --red-dark:    #c8232e;
  --red-light:   #fff0f1;
  --bg:          #ffffff;
  --bg-alt:      #f5f7fb;
  --bg-dark:     #f0f3f9;
  --border:      #e3e8f0;
  --border-2:    #d1d8e4;
  --text:        #1c2b4a;
  --text-2:      #4b5876;
  --text-mute:   #6b7591;
  --green:       #1aab68;
  --container:   1180px;
  --radius:      10px;
  --radius-lg:   16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { color: var(--navy); margin: 0; line-height: 1.2; letter-spacing: -0.01em; }

/* ============== BUTTONS ==============
   Per requirement: NO transform, NO box-shadow on hover.
   Only background/border/color change.                  */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
  font-family: inherit;
  text-align: center;
  line-height: 1.2;
}
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--border-2);
}
.btn--outline:hover {
  background: var(--bg-alt);
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.link-muted { color: var(--text-2); font-weight: 500; font-size: 15px; }
.link-muted:hover { color: var(--navy); }

.check { color: var(--green); font-weight: 700; margin-right: 8px; }

/* ============== TOPBAR ============== */
.topbar {
  background: var(--navy-dark);
  color: #c5cde0;
  font-size: 13.5px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__msg { font-weight: 500; }
.topbar__links { display: flex; gap: 22px; }
.topbar__links a { color: #c5cde0; }
.topbar__links a:hover { color: #fff; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 32px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 52px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
/* Every nav item uses the exact same shell so the dropdown trigger and
   plain links sit on the same baseline with identical hit area. */
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link:focus { background: var(--bg-alt); color: var(--navy); outline: none; }
.nav__caret {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform .15s ease;
}
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }

.nav__item { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s .15s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease, visibility 0s 0s;
}
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14.5px;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--navy); }
.dropdown a strong { color: var(--navy); font-weight: 600; }
.dropdown a span { color: var(--text-mute); font-size: 13px; margin-top: 2px; }

.nav__cta { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav__mobile a { padding: 12px 0; color: var(--text); border-bottom: 1px solid var(--border); font-weight: 500; }
.nav__mobile a.btn { border: 0; margin-top: 12px; padding: 14px; }
.nav__mobile.is-open { display: flex; }

/* ============== HERO ============== */
.hero {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: italic; color: var(--red); font-weight: 800; }
.hero__lead {
  font-size: 18px;
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 540px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.hero__bullets li {
  padding: 6px 0;
  font-size: 15.5px;
  color: var(--text);
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual { width: 100%; }

/* ============== PLACEHOLDERS ==============
   Re-usable visual stub for any image/chart/screenshot
   you'll drop in later. Gray box + dashed border + label. */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-alt);
  border: 2px dashed var(--border-2);
  border-radius: var(--radius-lg);
  color: var(--text-mute);
  gap: 6px;
  min-height: 140px;
}
.placeholder__icon { font-size: 36px; line-height: 1; margin-bottom: 4px; }
.placeholder__label { font-weight: 600; color: var(--text-2); font-size: 14.5px; }
.placeholder__hint { font-size: 13px; color: var(--text-mute); max-width: 280px; line-height: 1.5; }

.placeholder--hero { min-height: 340px; }
.placeholder--lg { min-height: 320px; padding: 50px 24px; max-width: 920px; margin: 0 auto; }
.placeholder--apps { min-height: 280px; }
.placeholder--mini {
  min-height: 80px;
  padding: 14px;
  margin: 0 0 16px;
  gap: 0;
}
.placeholder--mini .placeholder__label { font-size: 13px; }
.placeholder--quote {
  min-height: 120px;
  padding: 22px;
  margin-bottom: 16px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}
.placeholder--quote .placeholder__label { font-size: 14px; color: var(--text-mute); font-weight: 500; font-style: italic; }

/* ============== TRUST ============== */
.trust {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust__inner { text-align: center; }
.trust__title {
  font-size: 13.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  font-weight: 600;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: var(--text-mute);
  font-weight: 700;
  font-size: 16px;
  opacity: .65;
}

/* ============== SECTIONS ============== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }
.section__head {
  max-width: 760px;
  margin: 0 0 56px;
}
.section__head--centered { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  margin: 0 0 14px;
}
.section__head p {
  font-size: 17px;
  color: var(--text-2);
  margin: 0;
}

/* ============== HOSTING TYPES ============== */
.types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}
.type {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.type--featured {
  border-color: var(--red);
  border-width: 2px;
  padding: 27px 23px;
}
.type__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.type__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--bg-alt);
  color: var(--navy);
}
.type__icon svg { width: 26px; height: 26px; }
.type__icon--vps { background: #ffe9eb; color: var(--red); }
.type__icon--shared { background: #e3edff; color: #2563eb; }
.type__icon--ded { background: #ffe9c8; color: #d97706; }
.type__icon--res { background: #e6f8ee; color: var(--green); }
.type h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.type > p { color: var(--text-2); font-size: 14.5px; margin: 0 0 16px; }

/* Make all type cards push their button to the bottom so they line up */
.type .placeholder--mini { margin-top: auto; }
.type .btn { margin-top: 0; }

/* ============== FLAT HERO ============== */
.hero-flat {
  padding: 50px 0 36px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-flat h1 {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.2;
}
.hero-flat p {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 20px;
  max-width: 720px;
}
.hero-flat__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============== PRODUCT TYPE TABS (top-level) — WHMCS style ============== */
.ptabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
  position: relative;
}
.ptab:hover { background: var(--bg-alt); color: var(--navy); }
.ptab.is-active {
  background: var(--navy);
  color: #fff;
}
.ptab.is-active .icon-sq { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: #fff; }
.ptab__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #fef3c7;
  color: #92400e;
  font-style: normal;
  margin-left: auto;
}
.ptab.is-active .ptab__badge { background: rgba(255,255,255,0.18); color: #fff; }

.ptab-pane { display: none; }
.ptab-pane.is-active { display: block; }

@media (max-width: 760px) {
  .ptabs { flex-direction: column; gap: 2px; }
  .ptab { width: 100%; justify-content: flex-start; }
}

/* Sub-pills (VPS sub-categories) */
.subpills {
  display: flex;
  gap: 6px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.subpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.subpill:hover { background: var(--bg-alt); color: var(--navy); }
.subpill.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.subpill-pane { display: none; }
.subpill-pane.is-active { display: block; }
.cat-desc { color: var(--text-2); font-size: 14px; margin: 4px 0 18px; }

/* ============== PLAN TABLE (WHMCS-style comparison) ============== */
.plan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}
.plan-table th,
.plan-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.plan-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  background: var(--bg-alt);
}
.plan-table th.num,
.plan-table td.num { text-align: right; }
.plan-table tbody tr:last-child td { border-bottom: 0; }
.plan-table tbody tr:hover { background: var(--bg-alt); }
.plan-table__name strong { color: var(--navy); font-weight: 600; font-size: 14.5px; }
.plan-table__price { font-weight: 600; color: var(--navy); white-space: nowrap; }
.plan-table .btn { padding: 6px 14px; }

.pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.pill--featured { background: #fff5f5; color: var(--red); border: 1px solid #fecaca; }
.pill--soldout  { background: #f3f4f6; color: #6b7280; border: 1px solid #d1d5db; }

.meta-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1px 4px;
  margin-left: 4px;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 3px;
  cursor: help;
  vertical-align: middle;
}

.region-mini { display: flex; flex-wrap: wrap; gap: 3px; }
.region-mini__dot {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid transparent;
}
.region-mini__dot.on  { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.region-mini__dot.off { background: #f3f4f6; color: #9ca3af; border-color: #e5e7eb; text-decoration: line-through; }

/* Mobile: show card list instead of horizontal-scrolling table */
.plan-cards { display: none; }
@media (max-width: 760px) {
  .plan-table-wrap { display: none; }
  .plan-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .plan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
  }
  .plan-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
  }
  .plan-card__head strong { color: var(--navy); font-size: 15px; font-weight: 600; }
  .plan-card__price {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    font-size: 16px;
  }
  .plan-card__kv {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 12px;
    margin: 0 0 14px;
    font-size: 13px;
  }
  .plan-card__kv dt { color: var(--text-mute); }
  .plan-card__kv dd { margin: 0; color: var(--text); }
}

/* ============== "COMING SOON" PLACEHOLDER ============== */
.empty-product {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border: 1px dashed var(--border-2);
  border-radius: 8px;
}
.empty-product .icon-sq { margin: 0 auto 14px; }
.empty-product h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}
.empty-product p {
  font-size: 14.5px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.empty-product code {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 13px;
}

/* ============== CATEGORY TABS ============== */
.cat-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto 36px;
  max-width: 900px;
}
.cat-tab {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 16px;
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.cat-tab:hover { background: var(--bg-alt); border-color: var(--border-2); }
.cat-tab.is-active {
  border-color: var(--red);
  background: #fff5f5;
}
.cat-tab__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cat-tab__name { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.cat-tab__sub  { font-size: 12.5px; color: var(--text-mute); line-height: 1.4; }
.cat-pane { display: none; }
.cat-pane.is-active { display: block; }

@media (max-width: 760px) {
  .cat-tabs { grid-template-columns: 1fr; }
}

/* ============== STOCK / REGION INDICATORS ============== */
.stock-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.stock-pill--in  { background: #d1fae5; color: #065f46; }
.stock-pill--out { background: #fee2e2; color: #991b1b; }

.region-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 16px 0;
}
.region-dot {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  border: 1px solid transparent;
}
.region-dot--on  { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
.region-dot--off { background: #f3f4f6; color: #9ca3af; border-color: #e5e7eb; text-decoration: line-through; }

/* Location grid */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.loc-card--off { opacity: 0.55; }
.loc-code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.loc-name { font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.loc-status { font-size: 12px; font-weight: 600; }
.loc-status--on  { color: var(--green); }
.loc-status--off { color: #9ca3af; }

/* ============== FEATURES ============== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feature {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature__icon { margin-bottom: 14px; line-height: 0; }
.feature__icon .icon-sq { width: 40px; height: 40px; }
.feature h4 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ============== PRICING FOOT ============== */
.plans__foot { text-align: center; margin-top: 32px; color: var(--text-2); font-size: 15px; }
.plans__foot a { color: var(--red); font-weight: 600; }

/* ============== APPS ============== */
.section--apps { background: var(--bg-alt); }
.apps__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.apps__copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 14px; font-weight: 800; }
.apps__copy p { color: var(--text-2); font-size: 17px; margin-bottom: 26px; }

/* ============== REVIEWS ============== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.review {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.review footer { display: flex; flex-direction: column; gap: 2px; }
.review footer strong { color: var(--navy); font-size: 14.5px; }
.review footer span { color: var(--text-mute); font-size: 13px; }

/* ============== CTA ============== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 17px; margin: 0 0 28px; }
.cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============== FOOTER ============== */
.footer { background: #fff; padding: 60px 0 24px; border-top: 1px solid var(--border); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { color: var(--text-2); font-size: 14.5px; max-width: 320px; margin: 16px 0 0; }
.footer__logo { height: 48px; width: auto; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__cols h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--navy);
}
.footer__cols a {
  display: block;
  color: var(--text-2);
  font-size: 14.5px;
  padding: 5px 0;
}
.footer__cols a:hover { color: var(--navy); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  color: var(--text-mute);
  font-size: 13.5px;
}
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--text-mute); }
.footer__bottom a:hover { color: var(--navy); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .nav__links { gap: 4px; }
  .nav__link { padding: 8px 10px; font-size: 14.5px; }
  .hero__grid { gap: 40px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .brand__logo { height: 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .apps__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar { font-size: 12px; padding: 6px 0; }
  .topbar__msg { font-size: 12px; }
  .topbar__links { gap: 14px; }
  .topbar__links a { font-size: 12px; }

  .nav__inner { padding: 12px 18px; gap: 12px; }
  .brand__logo { height: 44px; }

  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero__lead { font-size: 16px; }
  .hero__bullets li { font-size: 14.5px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .section { padding: 56px 0; }
  .section__head { margin-bottom: 36px; }
  .section__head h2 { font-size: clamp(24px, 6.5vw, 30px); }
  .section__head p { font-size: 15.5px; }

  .types { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }

  .placeholder--hero { min-height: 240px; padding: 32px 20px; }
  .placeholder--lg { min-height: 240px; padding: 40px 20px; }
  .placeholder--apps { min-height: 220px; }
  .placeholder__icon { font-size: 32px; }

  .trust__logos { gap: 20px; font-size: 14.5px; }

  .footer { padding: 48px 0 20px; }
  .footer__inner { padding-bottom: 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__bottom { font-size: 12.5px; flex-direction: column; align-items: flex-start; }

  .cta { padding: 60px 0; }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; }
}

@media (max-width: 380px) {
  .footer__cols { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .topbar__links { display: none; }
}
