/* ============================================================
   SAGLOHOST — Premium Design System v3.0
   Deep Navy · Teal · Cyan · White
   ============================================================ */

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

:root {
  /* Brand Colors */
  --navy:       #0b1f3a;
  --navy-2:     #132d54;
  --navy-3:     #1a3a6e;
  --navy-4:     #0d2645;
  --teal:       #0a7fa8;
  --teal-2:     #0d8ebb;
  --cyan:       #12b4d6;
  --cyan-2:     #0fa3c5;
  --cyan-3:     #15cdf0;
  --cyan-light: rgba(18,180,214,.12);
  --white:      #ffffff;
  --off:        #f5f8fc;
  --off-2:      #eaf0f8;
  --off-3:      #dde7f2;
  --border:     #dde7f0;
  --border-2:   #c4d4e8;
  --grey:       #5a6f84;
  --grey-2:     #7a91a8;
  --grey-3:     #9db0c4;
  --text:       #1a2d3d;
  --text-2:     #324d66;
  --green:      #16a34a;
  --green-bg:   #dcfce7;
  --green-2:    #22c55e;
  --amber:      #f59e0b;

  /* Radius */
  --r:     8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-2xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --s-xs:  0 1px 3px rgba(10,31,58,.06);
  --s-sm:  0 2px 8px rgba(10,31,58,.08);
  --s:     0 4px 16px rgba(10,31,58,.10);
  --s-lg:  0 10px 32px rgba(10,31,58,.13);
  --s-xl:  0 20px 56px rgba(10,31,58,.16);
  --s-2xl: 0 32px 80px rgba(10,31,58,.20);
  --s-cyan: 0 8px 28px rgba(18,180,214,.30);

  /* Gradients */
  --hero-grad: linear-gradient(150deg, #061628 0%, #0a2040 20%, #0c3260 45%, #0b5a7a 70%, #0b7ea0 100%);
  --cta-grad:  linear-gradient(135deg, #0a2040 0%, #0b5a7a 50%, #0b7ea0 100%);
  --card-grad: linear-gradient(160deg, rgba(18,180,214,.06) 0%, rgba(255,255,255,0) 60%);

  /* Typography */
  --font: Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; }
input, select, textarea { font-family: var(--font); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ─── LAYOUT ─── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 28px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 56px 0; }
.section-off  { background: var(--off); }
.section-navy { background: var(--navy); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header.left { text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); background: rgba(18,180,214,.1); border: 1px solid rgba(18,180,214,.22);
  padding: 4px 14px; border-radius: var(--r-full); margin-bottom: 14px;
}
.section-header h2 {
  font-size: 34px; font-weight: 800; margin-bottom: 14px;
  letter-spacing: -.025em; line-height: 1.18;
}
.section-header h2 span { color: var(--cyan); }
.section-header p {
  color: var(--grey); font-size: 15.5px; max-width: 620px; margin: 0 auto; line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border: none; transition: all .22s ease; white-space: nowrap;
  cursor: pointer; letter-spacing: -.01em; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: rgba(255,255,255,.12); transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-cyan { background: var(--cyan); color: #fff; box-shadow: 0 4px 16px rgba(18,180,214,.28); }
.btn-cyan:hover { background: #0fa3c5; transform: translateY(-2px); box-shadow: var(--s-cyan); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: var(--s-lg); }

.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-2); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(18,180,214,.04); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

.btn-white { background: #fff; color: var(--navy); font-weight: 700; }
.btn-white:hover { background: var(--off); transform: translateY(-1px); box-shadow: var(--s); }

.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }

.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 15px; font-weight: 700; }
.btn-xl  { padding: 16px 40px; font-size: 16px; font-weight: 700; border-radius: var(--r-lg); }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { padding: 10px; aspect-ratio: 1; border-radius: var(--r); }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy-4);
  padding: 0 28px;
  font-size: 11.5px; color: rgba(255,255,255,.58);
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.topbar a { color: rgba(255,255,255,.78); transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-sep { opacity: .25; }
.topbar-badge {
  background: rgba(18,180,214,.18); border: 1px solid rgba(18,180,214,.28);
  color: var(--cyan); padding: 2px 10px; border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
}

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 600;
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(10,31,58,.12); border-bottom-color: transparent; }
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-logo img { height: 44px; }
.navbar-logo-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan); border-left: 2px solid var(--border); padding-left: 10px; line-height: 1.3;
}

.navbar-menu { display: flex; align-items: center; gap: 2px; }
.navbar-menu .nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(10,127,168,.07); }
.nav-caret { font-size: 8px; opacity: .4; transition: transform .2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); opacity: .8; }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--s-2xl);
  min-width: 240px; padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s; z-index: 700;
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--r-lg);
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: color .15s, background .15s;
}
.nav-dd-item:hover { color: var(--teal); background: var(--off); }
.nav-dd-icon {
  width: 34px; height: 34px; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(10,127,168,.1), rgba(18,180,214,.16));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.nav-dd-text strong { display: block; font-size: 13px; font-weight: 600; }
.nav-dd-text span   { display: block; font-size: 11.5px; color: var(--grey-2); }

.navbar-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none; border-radius: var(--r);
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all .25s; display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 0;
  background: #fff; z-index: 1100; padding: 0;
  overflow-y: auto; flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 10;
}
.mobile-nav-header img { height: 38px; }
.mobile-close-btn {
  width: 36px; height: 36px; border-radius: var(--r); background: var(--off);
  border: none; font-size: 18px; color: var(--grey); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-body { padding: 16px 24px; flex: 1; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 15px; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.mobile-nav-section { padding: 14px 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.mobile-nav-section-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 8px; }
.mobile-nav-section a { display: block; padding: 9px 0; font-size: 14px; font-weight: 500; color: var(--text-2); }
.mobile-nav-footer { padding: 20px 24px 32px; display: flex; flex-direction: column; gap: 10px; }

/* ─── HERO ─── */
.hero {
  background: var(--hero-grad);
  padding: 72px 28px 64px;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-pattern::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 85% 50%, rgba(18,180,214,.14) 0%, transparent 55%),
    radial-gradient(circle at 15% 70%, rgba(10,80,130,.4) 0%, transparent 40%);
}
.hero-bg-glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; background: radial-gradient(circle, rgba(18,180,214,.12) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}

.hero-inner {
  max-width: 920px; margin: 0 auto; position: relative; z-index: 2; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full); padding: 6px 18px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.88);
  margin-bottom: 22px; letter-spacing: .02em;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--cyan-3);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero h1 {
  color: #fff; font-size: 52px; font-weight: 900;
  margin-bottom: 16px; letter-spacing: -.04em; line-height: 1.1;
}
.hero h1 .accent { color: var(--cyan-3); }
.hero h1 .break { display: block; }

.hero-sub {
  color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 40px;
  line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* Domain search card */
.domain-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--r-2xl); padding: 28px 28px 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.32), 0 4px 16px rgba(0,0,0,.12);
  text-align: left; max-width: 700px; margin: 0 auto 28px;
}
.domain-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.domain-card-label::before {
  content: ''; width: 28px; height: 2px; background: var(--cyan); display: inline-block; border-radius: 2px;
}
.domain-search-row { display: flex; gap: 8px; margin-bottom: 16px; }
.domain-input {
  flex: 1; border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: 13px 18px; font-size: 15px; color: var(--text); outline: none;
  font-family: var(--font); font-weight: 500; transition: border-color .2s;
}
.domain-input:focus { border-color: var(--cyan); }
.domain-select {
  border: 2px solid var(--border); border-radius: var(--r-lg);
  padding: 13px 14px; font-size: 14px; font-weight: 600; color: var(--navy);
  background: var(--off); cursor: pointer; outline: none; transition: border-color .2s;
  appearance: none; min-width: 100px; text-align: center;
}
.domain-select:focus { border-color: var(--cyan); }
.btn-search-domain {
  background: var(--cyan); color: #fff; border: none;
  padding: 13px 22px; border-radius: var(--r-lg); font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: all .2s; font-family: var(--font);
  box-shadow: 0 4px 16px rgba(18,180,214,.35);
}
.btn-search-domain:hover { background: var(--cyan-2); transform: translateY(-1px); box-shadow: var(--s-cyan); }
.domain-prices { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.dp {
  font-size: 12.5px; color: var(--grey); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.dp strong { color: var(--navy); font-weight: 700; }
.dp::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; display: inline-block; opacity: .6; }

/* Hero trust pills */
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-full); padding: 7px 16px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.88);
}
.trust-pill-dot { width: 7px; height: 7px; background: var(--green-2); border-radius: 50%; flex-shrink: 0; }

/* ─── VALUE STRIP ─── */
.value-strip {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.value-strip-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.value-item { display: flex; align-items: center; gap: 12px; }
.value-icon {
  width: 44px; height: 44px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(10,127,168,.1), rgba(18,180,214,.15));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  border: 1px solid rgba(18,180,214,.2); flex-shrink: 0;
}
.value-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.value-text span   { display: block; font-size: 12px; color: var(--grey); }

/* ─── HOSTING CATEGORIES ─── */
.hosting-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.hosting-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 26px; transition: all .25s; position: relative; overflow: hidden;
  cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.hosting-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.hosting-card:hover { box-shadow: var(--s-xl); transform: translateY(-6px); border-color: rgba(18,180,214,.35); }
.hosting-card:hover::before { transform: scaleX(1); }
.hosting-card.featured { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(18,180,214,.18); }
.hosting-card.featured::before { transform: scaleX(1); }

.hcard-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-full); letter-spacing: .04em;
}
.hcard-icon {
  width: 58px; height: 58px; border-radius: var(--r-xl); margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(10,127,168,.1), rgba(18,180,214,.18));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  border: 1px solid rgba(18,180,214,.2);
}
.hcard-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.hcard-desc  { font-size: 13.5px; color: var(--grey); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.hcard-price { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.hcard-price span { font-size: 13.5px; font-weight: 500; color: var(--grey); }
.hcard-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--teal);
  transition: gap .2s, color .2s;
}
.hosting-card:hover .hcard-link { gap: 10px; color: var(--cyan); }

/* ─── PRICING ─── */
.pricing-tabs {
  display: flex; justify-content: center; gap: 5px; margin-bottom: 32px; flex-wrap: wrap;
}
.ptab {
  padding: 9px 22px; border-radius: var(--r-full);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border); background: #fff; color: var(--grey);
  transition: all .2s;
}
.ptab:hover { border-color: var(--cyan); color: var(--cyan); }
.ptab.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.period-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 32px;
}
.period-label { font-size: 13px; font-weight: 600; color: var(--grey-2); transition: color .2s; }
.period-label.active { color: var(--navy); }
.toggle-wrap {
  width: 46px; height: 26px; background: var(--border); border-radius: var(--r-full);
  cursor: pointer; position: relative; transition: background .2s;
}
.toggle-wrap.on { background: var(--cyan); }
.toggle-thumb {
  width: 20px; height: 20px; background: #fff; border-radius: 50%;
  position: absolute; top: 3px; left: 3px;
  transition: transform .2s; box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.toggle-wrap.on .toggle-thumb { transform: translateX(20px); }
.period-save {
  background: var(--green-bg); color: var(--green); font-size: 11.5px;
  font-weight: 700; padding: 3px 10px; border-radius: var(--r-full);
}

.plans-tab-panel { display: none; }
.plans-tab-panel.active { display: block; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plans-grid-4 { grid-template-columns: repeat(4, 1fr); }

.plan-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 26px 28px; position: relative; transition: all .25s;
  display: flex; flex-direction: column;
}
.plan-card:hover { box-shadow: var(--s-xl); transform: translateY(-6px); border-color: var(--border-2); }
.plan-card.popular {
  border-color: var(--cyan); box-shadow: 0 8px 32px rgba(18,180,214,.18);
  background: linear-gradient(180deg, rgba(18,180,214,.04) 0%, #fff 70%);
}
.plan-card.popular:hover { box-shadow: 0 20px 56px rgba(18,180,214,.22); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-full);
  white-space: nowrap; letter-spacing: .04em;
}
.plan-tier {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  display: flex; align-items: center; gap: 7px; color: var(--grey); margin-bottom: 12px;
}
.tier-dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; }
.plan-card.popular .tier-dot { background: var(--cyan); }

.plan-price {
  display: flex; align-items: flex-start; gap: 2px;
  margin-bottom: 4px; line-height: 1;
}
.price-cur { font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 8px; }
.price-amt { font-size: 52px; font-weight: 900; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.price-per { font-size: 16px; font-weight: 500; color: var(--grey); margin-top: 14px; }
.price-annual-note {
  font-size: 11.5px; color: var(--green); font-weight: 600; margin-bottom: 18px;
}
.price-annual-note.hide { display: none; }

.plan-divider { height: 1px; background: var(--border); margin: 18px 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 22px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-2); line-height: 1.5;
}
.plan-features li.muted { color: var(--grey-3); }
.feat-check { color: var(--cyan); font-weight: 700; flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.feat-cross  { color: var(--grey-3); font-weight: 700; flex-shrink: 0; font-size: 14px; }
.plan-note { font-size: 11.5px; color: var(--grey-3); text-align: center; margin-top: 12px; }

/* Guarantee strip */
.guarantee-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border);
}
.guar { display: flex; align-items: center; gap: 10px; }
.guar-icon { font-size: 22px; }
.guar-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.guar-text span   { display: block; font-size: 12px; color: var(--grey); }

/* ─── MIGRATION BAND ─── */
.migrate-band {
  background: linear-gradient(120deg, #07192e 0%, #0c3060 50%, #0a6080 100%);
  padding: 52px 28px; position: relative; overflow: hidden;
}
.migrate-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.migrate-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 32px; position: relative; z-index: 1;
}
.migrate-content { flex: 1; min-width: 280px; }
.migrate-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 6px;
}
.migrate-band h3 { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.migrate-band p  { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.migrate-checks { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.migrate-checks span {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500;
}
.migrate-checks span::before { content: '✓'; color: var(--cyan); font-weight: 700; }
.migrate-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.migrate-note { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── WHY SECTION ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content .eyebrow { margin-bottom: 16px; }
.why-content h2 { font-size: 34px; margin-bottom: 16px; letter-spacing: -.025em; }
.why-content p { color: var(--grey); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2); font-weight: 500;
}
.check-list li::before {
  content: '✓'; color: #fff; background: var(--cyan); width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.why-visual { position: relative; }
.why-box {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--r-2xl); padding: 32px;
  position: relative; overflow: hidden;
}
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.why-stat {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 20px; text-align: center; transition: all .2s;
}
.why-stat:hover { box-shadow: var(--s-lg); border-color: rgba(18,180,214,.3); transform: translateY(-2px); }
.why-stat-num { font-size: 32px; font-weight: 900; color: var(--cyan); letter-spacing: -.04em; display: block; }
.why-stat-label { font-size: 12px; color: var(--grey); font-weight: 500; }

/* ─── FEATURES SECTION ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 30px 24px; transition: all .25s; position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.feat-card:hover { box-shadow: var(--s-xl); border-color: rgba(18,180,214,.3); transform: translateY(-4px); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon-wrap {
  width: 54px; height: 54px; border-radius: var(--r-xl); margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(10,127,168,.1), rgba(18,180,214,.18));
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  border: 1px solid rgba(18,180,214,.2);
}
.feat-card h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; }
.feat-card p  { font-size: 13.5px; color: var(--grey); line-height: 1.75; margin-bottom: 16px; }
.feat-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--teal); font-weight: 700; transition: gap .2s, color .2s;
}
.feat-card:hover .feat-card-link { gap: 8px; color: var(--cyan); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: all .25s;
}
.testi-card:hover { box-shadow: var(--s-lg); border-color: rgba(18,180,214,.3); transform: translateY(-3px); }
.testi-stars { color: var(--amber); font-size: 14px; letter-spacing: 1px; }
.testi-text { font-size: 14px; color: var(--grey); line-height: 1.8; font-style: italic; flex: 1; }
.testi-text::before { content: '"'; font-size: 36px; color: var(--cyan); line-height: 0; vertical-align: -14px; margin-right: 2px; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--grey-2); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; background: #fff; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(18,180,214,.35); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: var(--navy);
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--off); }
.faq-arrow {
  font-size: 11px; color: var(--grey-2); transition: transform .25s; flex-shrink: 0;
  width: 28px; height: 28px; background: var(--off); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--cyan-light); color: var(--cyan); }
.faq-body { display: none; padding: 0 22px 20px; }
.faq-item.open .faq-body { display: block; }
.faq-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.faq-body p { font-size: 14px; color: var(--grey); line-height: 1.8; }

/* ─── PARTNERS BAR ─── */
.partners-bar {
  background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.partners-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; text-align: center; }
.partners-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 20px; }
.partners-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px 48px; }
.partners-logos span {
  font-size: 15px; font-weight: 800; color: var(--grey-3);
  letter-spacing: -.02em; opacity: .5; transition: opacity .2s;
}
.partners-logos span:hover { opacity: .8; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--cta-grad); padding: 72px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(18,180,214,.15) 0%, transparent 60%);
}
.cta-band-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 38px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.03em; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ─── FOOTER ─── */
.site-footer { background: #071525; padding: 64px 28px 28px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 52px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px;
}
.footer-brand img { height: 42px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.42); font-size: 13.5px; line-height: 1.8; max-width: 260px; }
.footer-tagline {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px; opacity: .8;
}
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.footer-socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 13px; font-weight: 700;
  transition: all .18s; border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.footer-socials a:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.footer-col h5 {
  color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.42); font-size: 13.5px; transition: color .15s; }
.footer-col ul a:hover { color: rgba(255,255,255,.85); }
.footer-contact-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  color: rgba(255,255,255,.42); font-size: 13.5px;
}
.footer-contact-row a { color: rgba(255,255,255,.42); transition: color .15s; }
.footer-contact-row a:hover { color: var(--cyan); }
.footer-contact-icon {
  width: 30px; height: 30px; background: rgba(255,255,255,.06); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 4px 10px; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.45);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(140deg, #0a1e38 0%, #0c3060 45%, #0b608a 80%, #0a7fa8 100%);
  padding: 60px 28px 56px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(18,180,214,.18) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  max-width: 1160px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}
.page-hero-content .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.88); margin-bottom: 16px; }
.page-hero-content h1 { color: #fff; font-size: 42px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.035em; line-height: 1.12; }
.page-hero-content p { color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-visual {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-2xl); padding: 32px; text-align: center;
}

/* ─── DOMAIN TLD GRID ─── */
.tld-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tld-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 22px 16px; text-align: center; transition: all .2s;
}
.tld-card:hover { border-color: var(--cyan); box-shadow: var(--s-lg); transform: translateY(-4px); }
.tld-ext   { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 8px; letter-spacing: -.02em; }
.tld-price { font-size: 21px; font-weight: 900; color: var(--cyan); }
.tld-period { font-size: 13px; color: var(--grey); font-weight: 400; }
.tld-renew { font-size: 11.5px; color: var(--grey-2); margin-top: 4px; }
.tld-card .btn { margin-top: 16px; font-size: 12.5px; }

/* ─── BREADCRUMBS ─── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-sep { opacity: .3; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-input {
  border: 2px solid var(--border); border-radius: var(--r-lg); padding: 12px 16px;
  font-size: 14px; color: var(--text); outline: none; font-family: var(--font);
  transition: border-color .2s; width: 100%;
}
.form-input:focus { border-color: var(--cyan); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6f84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

.info-card {
  background: var(--off); border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 22px 20px; display: flex; gap: 16px; transition: all .2s;
}
.info-card:hover { box-shadow: var(--s); border-color: rgba(18,180,214,.3); }
.info-card-icon {
  width: 46px; height: 46px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-card h4 { font-size: 14px; margin-bottom: 5px; }
.info-card p  { font-size: 13px; color: var(--grey); line-height: 1.7; }
.info-card a  { color: var(--teal); transition: color .15s; }
.info-card a:hover { color: var(--cyan); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--s-xl); transform: translateY(-5px); border-color: rgba(18,180,214,.3); }
.blog-thumb {
  height: 180px; background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  position: relative; overflow: hidden;
}
.blog-thumb-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(18,180,214,.25) 0%, transparent 60%);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.blog-card h3 { font-size: 16px; line-height: 1.45; margin-bottom: 10px; flex: 1; }
.blog-card h3 a { color: var(--navy); transition: color .15s; }
.blog-card h3 a:hover { color: var(--cyan); }
.blog-excerpt { font-size: 13.5px; color: var(--grey); line-height: 1.75; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--grey-2); display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--border); padding-top: 14px; }

/* ─── ABOUT ─── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy-2), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800; color: #fff;
  border: 3px solid var(--border);
}
.team-name { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.team-role { font-size: 13px; color: var(--grey); }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 28px; text-align: center; transition: all .2s;
}
.value-card:hover { box-shadow: var(--s-lg); border-color: rgba(18,180,214,.3); transform: translateY(-3px); }
.value-card-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 13.5px; color: var(--grey); line-height: 1.75; }

/* ─── UPTIME BADGE SECTION ─── */
.uptime-section { background: var(--navy); padding: 52px 28px; }
.uptime-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.uptime-stat .num { font-size: 44px; font-weight: 900; color: var(--cyan); letter-spacing: -.04em; display: block; }
.uptime-stat .label { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 4px; }

/* ─── COMPARISON TABLE ─── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.compare-table thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .03em; }
.compare-table thead th:first-child { border-radius: var(--r) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--r) 0 0; }
.compare-table tbody tr:hover td { background: var(--off); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--cyan); font-weight: 700; font-size: 16px; }
.compare-table .cross { color: var(--border-2); font-size: 16px; }
.compare-table .feat-name { font-weight: 600; color: var(--text); }

/* ─── BADGES / CHIPS ─── */
.badge-new { background: var(--green-bg); color: var(--green); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.badge-hot { background: #fef2f2; color: #dc2626; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.badge-sa  { background: rgba(18,180,214,.1); color: var(--teal); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }

/* ─── STICKY MOBILE CTA ─── */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #fff; border-top: 2px solid var(--border); padding: 14px 20px;
  box-shadow: 0 -4px 24px rgba(10,31,58,.12);
}

/* ─── ANIMATIONS ─── */
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transform-origin: left; z-index: 9999; transform: scaleX(0); transition: transform .1s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .plans-grid  { grid-template-columns: 1fr 1fr; }
  .plans-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hosting-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tld-grid    { grid-template-columns: repeat(4, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr 1fr; }
  .why-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
  .uptime-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar .topbar-right { display: none; }
  .navbar-menu, .navbar-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero { padding: 52px 20px 48px; }
  .domain-search-row { flex-direction: column; }
  .domain-select { min-width: auto; }
  .section-header h2 { font-size: 27px; }
  .hosting-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .migrate-inner { flex-direction: column; }
  .uptime-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 30px; }
  .section { padding: 60px 0; }
  .sticky-mobile-cta { display: flex; gap: 10px; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-trust { gap: 8px; }
  .trust-pill { font-size: 11.5px; padding: 6px 12px; }
  .value-strip-inner { flex-direction: column; gap: 16px; }
  .plans-grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-xl { padding: 14px 28px; font-size: 14.5px; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
}
