/* ============================================
   TOPUP HOSTING - MAIN STYLESHEET
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1A7FE8; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --blue: #1A7FE8;
  --blue-dark: #1265C0;
  --blue-light: #E8F2FD;
  --black: #1A1A1A;
  --hero-bg: #0D1B2E;
  --gray-bg: #F7F8FA;
  --border: #E5E7EB;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --white: #ffffff;
  --green: #2E9E5B;
  --green-light: #E8F7EE;
  --radius: 10px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo span { color: var(--blue); }
.site-logo small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--blue); background: var(--blue-light); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-login {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 6px 14px;
  text-decoration: none;
}
.btn-nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-nav-cta:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; text-decoration: none; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); color: var(--blue-dark); text-decoration: none; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ============================================
   PAGE HERO (shared across all pages)
   ============================================ */
.page-hero {
  background: var(--hero-bg);
  padding: 64px 24px 52px;
  text-align: center;
}
.page-hero-pill {
  display: inline-block;
  background: rgba(26,127,232,0.2);
  color: #6CB8FF;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,127,232,0.35);
  letter-spacing: 0.5px;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p {
  font-size: 17px;
  color: #9EB4CC;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #9EB4CC;
}
.trust-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(26,127,232,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-dot-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============================================
   SECTION LAYOUT
   ============================================ */
.section { padding: 64px 24px; }
.section-gray { padding: 64px 24px; background: var(--gray-bg); }
.section-dark { padding: 64px 24px; background: var(--hero-bg); }
.section-label {
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.stat-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 28px; font-weight: 700; color: var(--blue); }
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* ============================================
   CARDS - GENERIC
   ============================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(26,127,232,0.08); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.card-title { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.card-link { font-size: 13px; color: var(--blue); margin-top: 12px; display: block; font-weight: 500; }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }

/* ============================================
   PLAN CARDS
   ============================================ */
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.featured { border: 2px solid var(--blue); }
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-type {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}
.plan-name { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.plan-tagline { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.5; }
.plan-price-wrap { margin-bottom: 6px; }
.plan-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.plan-price sup { font-size: 18px; font-weight: 600; vertical-align: super; }
.plan-price sub { font-size: 14px; font-weight: 400; color: var(--text-secondary); }
.plan-renews { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.plan-btn {
  width: 100%;
  padding: 11px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--black);
  margin-bottom: 20px;
  transition: all 0.15s;
}
.plan-btn:hover { border-color: var(--blue); color: var(--blue); }
.plan-card.featured .plan-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
.plan-card.featured .plan-btn:hover { background: var(--blue-dark); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 18px; }
.plan-features { list-style: none; flex: 1; }
.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid #F3F4F6;
}
.plan-feature-item:last-child { border-bottom: none; }
.feature-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.feature-cross {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1;
}
.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================================
   WHY CARDS
   ============================================ */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.why-title { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.why-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.testi-stars { color: #F5A623; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.testi-text { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--black); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--hero-bg);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-banner p {
  font-size: 17px;
  color: #9EB4CC;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-toggle {
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-answer { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.featured-col {
  background: var(--blue-light);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.compare-table td {
  padding: 11px 16px;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}
.compare-table td:first-child { text-align: left; color: var(--black); font-weight: 500; }
.compare-table tr:nth-child(even) td { background: #FAFAFA; }
.compare-table .cat-row td {
  background: var(--gray-bg) !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary) !important;
  font-weight: 600 !important;
}
.compare-check { color: var(--green); font-weight: 600; }
.compare-dash { color: var(--text-muted); }

/* ============================================
   FORM STYLES
   ============================================ */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-title { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  color: var(--black);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,127,232,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--blue-dark); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ============================================
   HOMEPAGE SPECIFIC
   ============================================ */
.home-hero { background: var(--hero-bg); padding: 80px 24px 64px; text-align: center; }
.home-hero h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.home-hero h1 span { color: var(--blue); }
.home-hero p { font-size: 18px; color: #9EB4CC; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero-badge {
  display: inline-block;
  background: rgba(26,127,232,0.2);
  color: #6CB8FF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(26,127,232,0.35);
}

/* SPEC PILLS (VPS) */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.spec-pill {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.spec-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-weight: 600; }
.spec-value { font-size: 14px; font-weight: 700; color: var(--black); }

/* TLD GRID (DOMAINS) */
.tld-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.tld-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.tld-card:hover { border-color: var(--blue); }
.tld-ext { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.tld-price { font-size: 14px; font-weight: 600; color: var(--black); }
.tld-renew { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.tld-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  margin-top: 8px;
}
.tld-badge.popular { background: #FEF3E8; color: #9E5E0E; }

/* DOMAIN SEARCH BAR */
.domain-search-wrap {
  max-width: 580px;
  margin: 0 auto 20px;
}
.domain-search-bar {
  display: flex;
  border: 2px solid var(--blue);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}
.domain-search-bar input {
  flex: 1;
  padding: 16px 18px;
  font-size: 16px;
  border: none;
  outline: none;
  color: var(--black);
  background: transparent;
}
.domain-search-bar button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.domain-search-bar button:hover { background: var(--blue-dark); }
.domain-search-hint { text-align: center; font-size: 13px; color: #9EB4CC; }
.tld-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.tld-pill {
  background: rgba(255,255,255,0.08);
  color: #9EB4CC;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.tld-pill.hot { background: rgba(26,127,232,0.2); color: #6CB8FF; border-color: rgba(26,127,232,0.4); }

/* SSL VALIDATION BADGES */
.ssl-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 12px; margin-bottom: 12px; }
.ssl-dv { background: var(--blue-light); color: var(--blue-dark); }
.ssl-ov { background: var(--green-light); color: #2E7A4E; }
.ssl-ev { background: #FEF3E8; color: #9E5E0E; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step-title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

/* CHANNEL CARDS (CONTACT) */
.channel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.channel-icon { font-size: 32px; margin-bottom: 14px; }
.channel-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.channel-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.channel-action { font-size: 14px; font-weight: 600; color: var(--blue); }
.channel-avail { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* INFO CARDS (CONTACT) */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 14px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
}
.info-row:last-child { border-bottom: none; }
.info-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px; }
.info-label { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.info-val { font-size: 14px; color: var(--black); font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #F3F4F6; font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-secondary); }
.hours-time { font-weight: 600; color: var(--black); }
.hours-badge { background: var(--green-light); color: #2E7A4E; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 10px; }

/* ABOUT PAGE */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.story-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.story-visual {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.story-year { font-size: 56px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.story-year-lbl { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.milestone { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); text-align: left; }
.milestone:last-child { border-bottom: none; }
.m-year { font-size: 13px; font-weight: 700; color: var(--blue); min-width: 38px; padding-top: 1px; }
.m-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.team-name { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--text-secondary); }
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.cert-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cert-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.cert-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #111827;
  padding: 56px 24px 28px;
  color: #9CA3AF;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .site-logo { color: #fff; font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #6B7280; margin-bottom: 16px; }
.footer-phone { font-size: 15px; font-weight: 600; color: #fff; }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: #6B7280; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4B5563;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #4B5563; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--blue); }

/* ============================================
   BILLING TOGGLE
   ============================================ */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.billing-toggle-label { font-size: 14px; color: #9EB4CC; font-weight: 500; }
.billing-toggle-label.active { color: #fff; font-weight: 600; }
.billing-toggle {
  width: 48px;
  height: 26px;
  background: var(--blue);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.billing-toggle-knob {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
}
.billing-toggle.annual .billing-toggle-knob { left: 25px; }
.save-pill {
  background: rgba(46,158,91,0.2);
  color: #5FD08A;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46,158,91,0.3);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .home-hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .story-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: flex; }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .home-hero h1 { font-size: 30px; }
  .hero-trust { gap: 14px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-banner h2 { font-size: 26px; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.screen-reader-text { position: absolute; left: -9999px; }
