:root {
  --navy: #0d1117;
  --navy-2: #111a27;
  --blue: #0998e3;
  --blue-2: #006bb8;
  --cyan: #51d4ff;
  --ink: #1d1d1d;
  --muted: #637184;
  --line: #d9e4ef;
  --surface: #eaeff3;
  --success: #137a4b;
  --warning: #b56a00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: #eaeff3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 5vw, 72px);
  background: rgba(13, 17, 23, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eaeff3;
  font-weight: 850;
  text-decoration: none;
}
.brand-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-2);
  color: #fff;
}
.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: #eaeff3;
  font-weight: 750;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover, .cart-link { color: var(--blue) !important; }
.hero {
  min-height: min(760px, calc(100vh - 20px));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(9, 152, 227, .28), transparent 30%),
    linear-gradient(90deg, rgba(13, 17, 23, .98) 0%, rgba(13, 17, 23, .92) 48%, rgba(13, 17, 23, .5) 78%, rgba(13, 17, 23, .28) 100%),
    url("/public/assets/images/hosting-hero.png") center right / cover no-repeat;
  color: #fff;
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 72px);
}
.hero-content { width: min(760px, 100%); display: grid; gap: 22px; }
.hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .98; letter-spacing: 0; }
.hero p { margin: 0; max-width: 670px; color: #d9e8f7; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.65; }
.hero-actions, .inline-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.button, button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button.primary, button.primary { border-color: var(--blue); background: var(--blue); color: var(--ink); }
.button.primary:hover, button.primary:hover { background: var(--blue-2); color: #fff; }
.button.light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.domain-strip {
  width: min(960px, 100%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px auto;
  gap: 8px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  font: inherit;
}
textarea { border-radius: 18px; }
.section { padding: clamp(46px, 7vw, 84px) clamp(16px, 5vw, 72px); background: var(--navy); }
.section.alt { background: #111820; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2, .page-title h1 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; }
.section-heading p, .page-title p { margin: 0; color: #b9c6d2; line-height: 1.7; }
.eyebrow { margin: 0 0 6px; color: var(--blue); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.plans-grid, .feature-grid, .faq-grid, .cart-grid { display: grid; gap: 18px; }
.plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cart-grid { grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr); align-items: start; }
.plan-card, .feature-card, .faq-card, .panel, .cart-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.plan-card { display: grid; gap: 16px; }
.plan-card h3, .feature-card h3, .faq-card h3 { margin: 0 0 8px; }
.plan-card p, .feature-card p, .faq-card p, .muted { color: var(--muted); line-height: 1.65; }
.price strong { display: block; font-size: 2rem; color: var(--navy); }
.price span { color: var(--muted); }
.feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 900; margin-right: 8px; }
.plan-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.page-title {
  padding: 56px clamp(16px, 5vw, 72px) 24px;
  background: radial-gradient(circle at 20% 20%, rgba(9,152,227,.22), transparent 32%), linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.page-title p { color: #cdddf0; max-width: 720px; }
.domain-result { margin-top: 18px; }
.notice {
  border: 1px solid #bfe3ff;
  background: #eef8ff;
  border-radius: 20px;
  padding: 14px;
  color: var(--navy);
}
.notice.warning { border-color: #ffdca3; background: #fff7e8; color: var(--warning); }
.notice.success { border-color: #afe6ca; background: #ecfff4; color: var(--success); }
.cart-item { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.cart-item h3 { margin: 0 0 4px; }
.summary-row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { font-size: 1.2rem; font-weight: 900; border-bottom: 0; }
label { display: grid; gap: 7px; color: var(--muted); font-size: .88rem; font-weight: 800; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
  gap: 24px;
  padding: 44px clamp(16px, 5vw, 72px);
  background: #0a0e13;
  color: #dceafd;
}
.site-footer a { display: block; color: #dceafd; text-decoration: none; margin: 8px 0; }
.site-footer h3 { margin: 0 0 8px; color: #fff; }
@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .plans-grid, .feature-grid, .faq-grid, .cart-grid, .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .domain-strip { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-nav { gap: 12px; font-size: .92rem; }
  .hero { min-height: auto; padding-top: 70px; }
  .plans-grid, .feature-grid, .faq-grid, .cart-grid, .site-footer, .form-grid { grid-template-columns: 1fr; }
  .plan-actions { grid-template-columns: 1fr; }
  .cart-item { align-items: stretch; flex-direction: column; }
}
