:root {
  --blue-50: #f4faff;
  --blue-100: #e6f3fb;
  --blue-200: #cfe8f7;
  --blue-300: #9fd2ef;
  --blue-400: #5eb6e4;
  --blue-500: #3498d8;
  --blue-600: #2480bf;
  --blue-700: #1c679c;
  --blue-800: #1a5278;
  --navy: #16344d;
  --ink: #1e3344;
  --muted: #5b7386;
  --line: #d7e7f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(28, 103, 156, 0.12);
  --radius: 18px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--blue-600); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* Top bar */
.topbar {
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 16px; flex-wrap: wrap; padding: 8px 0;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar a { color: var(--navy); }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215,231,242,.7);
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-weight: 800; letter-spacing: -0.03em;
  font-size: 22px;
}
.logo img.brand {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
}
footer.site .logo img.brand {
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  height: 36px;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(145deg, var(--blue-400), var(--blue-700));
  color: #fff; display: grid; place-items: center; font-size: 18px;
  box-shadow: 0 8px 18px rgba(52,152,216,.35);
}
.logo small { display: block; font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: -2px; }
nav.main { display: flex; gap: 18px; align-items: center; }
nav.main a { color: var(--navy); font-weight: 600; font-size: 14.5px; }
nav.main a:hover { color: var(--blue-600); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700; font-family: inherit;
  border-radius: 999px; padding: 12px 22px; font-size: 14px;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff; box-shadow: 0 10px 22px rgba(36,128,191,.28);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: #fff; color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
}
.btn-dark {
  background: var(--navy); color: #fff;
}
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(158,210,239,.45), transparent 60%),
    radial-gradient(700px 380px at 10% 90%, rgba(52,152,216,.12), transparent 55%),
    linear-gradient(180deg, #f7fbfe 0%, #eef6fc 100%);
  padding: 56px 0 90px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(94,182,228,.28); pointer-events: none;
}
.hero::before { width: 420px; height: 420px; right: -80px; top: -80px; }
.hero::after { width: 220px; height: 220px; left: 8%; bottom: 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue-700); font-weight: 700;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--blue-200);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08; letter-spacing: -0.04em; color: var(--navy);
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--blue-600); }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 26px; }
.domain-box {
  background: #fff; border-radius: 16px; padding: 8px;
  display: flex; gap: 8px; box-shadow: var(--shadow);
  border: 1px solid var(--line); max-width: 560px;
}
.domain-box input {
  flex: 1; border: 0; outline: 0; padding: 14px 16px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: transparent;
}
.hero-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.hero-photo {
  position: relative; justify-self: end; width: min(460px, 100%);
}
.hero-photo img {
  width: 100%; height: 560px; object-fit: cover; object-position: center top;
  border-radius: 28px; box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.8);
}
.float-card {
  position: absolute; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 14px 16px; display: flex; gap: 10px; align-items: center;
}
.float-card.uptime { left: -28px; bottom: 70px; }
.float-card.canada { right: -10px; top: 36px; }
.float-card b { display: block; font-size: 15px; color: var(--navy); }
.float-card span { font-size: 12px; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #3dcf8a; box-shadow: 0 0 0 6px rgba(61,207,138,.18); }

/* Service cards */
.services-overlap { margin-top: -48px; position: relative; z-index: 2; }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow);
}
.service-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-100); color: var(--blue-700);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 14px;
}
.service-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.service-card a { font-weight: 700; font-size: 14px; }

/* Sections */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.03em; color: var(--navy); margin-bottom: 10px; }
.section-head p { color: var(--muted); }
.soft { background: var(--blue-50); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-list { display: grid; gap: 18px; }
.feature-item { display: flex; gap: 14px; }
.feature-item .num {
  flex: 0 0 42px; height: 42px; border-radius: 12px;
  background: var(--blue-600); color: #fff; display: grid; place-items: center; font-weight: 800;
}
.feature-item h3 { font-size: 17px; color: var(--navy); }
.feature-item p { font-size: 14px; color: var(--muted); }
.panel {
  background: linear-gradient(165deg, #1c679c, #16344d);
  color: #fff; border-radius: 28px; padding: 42px 36px;
  min-height: 360px; display: flex; flex-direction: column; justify-content: space-between;
}
.panel h3 { font-size: 30px; letter-spacing: -0.03em; margin-bottom: 10px; }
.panel p { color: rgba(255,255,255,.8); }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.stats b { display: block; font-size: 26px; }
.stats span { font-size: 12px; color: rgba(255,255,255,.7); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px 24px;
}
.price-card.featured {
  background: linear-gradient(180deg, #f4faff, #fff);
  border-color: var(--blue-400);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.price-card .tag {
  display: inline-block; background: var(--blue-600); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}
.price-card h3 { font-size: 20px; color: var(--navy); }
.price-card .amount { font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; margin: 10px 0; }
.price-card .amount span { font-size: 15px; font-weight: 600; color: var(--muted); }
.price-card ul { list-style: none; margin: 18px 0 24px; }
.price-card li { padding: 7px 0 7px 22px; position: relative; font-size: 14px; color: var(--muted); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 800; }
.price-card .btn { width: 100%; }

/* Testimonials / CTA */
.cta-band {
  background: linear-gradient(120deg, var(--blue-600), var(--blue-800));
  color: #fff; border-radius: 28px; padding: 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { font-size: 32px; letter-spacing: -0.03em; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 6px; }

/* Footer */
footer.site { background: #123047; color: #d5e6f1; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 36px; }
footer.site h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
footer.site a, footer.site p { color: #b7cdda; font-size: 14px; display: block; margin-bottom: 8px; }
.legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; font-size: 13px; color: #8eabc0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Inner pages */
.page-hero { padding: 56px 0 36px; background: linear-gradient(180deg, #f7fbfe, #fff); }
.page-hero h1 { font-size: 40px; color: var(--navy); letter-spacing: -0.03em; }
.form { display: grid; gap: 12px; max-width: 560px; }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font: inherit; background: #fff;
}

@media (max-width: 980px) {
  nav.main { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .feature-grid, .price-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-photo img { height: 420px; }
  .float-card.uptime { left: 8px; }
  .price-card.featured { transform: none; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px; }
}
