/* ===== HOSTINAP — Design System v3 ===== */

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

:root {
  --p900: #0c0730;
  --p800: #1a0e5e;
  --p700: #2d1f8a;
  --p600: #3d2db5;
  --p500: #4636c5;
  --p400: #6255e0;
  --p300: #8b7ef5;
  --p100: #eae8ff;
  --gold: #fbbf24;
  --gold-dk: #d97706;
  --green: #10b981;
  --text-1: #0f0c2e;
  --text-2: #3a3756;
  --text-3: #6b6890;
  --text-4: #6c6a80;   /* was #9b99b8 — failed WCAG AA at 2.75:1 */
  --bg: #fafafd;
  --bg2: #f3f2fa;
  --bg3: #eae8f5;
  --border: #e4e2f0;
  --white: #ffffff;
  --sh1: 0 1px 3px rgba(26,14,94,0.04);
  --sh2: 0 4px 16px rgba(26,14,94,0.08);
  --sh3: 0 12px 40px rgba(26,14,94,0.12);
  --sh4: 0 24px 64px rgba(26,14,94,0.18);
  --r1: 8px; --r2: 14px; --r3: 20px; --r4: 28px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-1);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: linear-gradient(135deg, var(--p800), var(--p600));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
}
.announce-bar a { color: var(--gold); font-weight: 700; margin-left: 6px; text-decoration: underline; text-underline-offset: 3px; }
.announce-bar .tag {
  background: var(--gold);
  color: var(--p800);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 8px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(228,226,240,0.7);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--sh3); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: flex; flex-shrink: 0; }
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.04em;
}
.logo-ap { color: var(--p500); }

.main-nav { display: flex; gap: 4px; flex: 1; align-items: center; }
.main-nav > a, .has-dropdown > a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--r1);
  transition: all 0.2s;
  position: relative;
}
.main-nav > a:hover, .has-dropdown:hover > a {
  color: var(--p500);
  background: var(--p100);
}

.has-dropdown { position: relative; }

/* Invisible bridge across the gap between the trigger and the panel.
   Without this the menu closes the moment the cursor leaves the link. */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 14px;
  display: none;
}
.has-dropdown:hover::after,
.has-dropdown.is-open::after { display: block; }

.has-dropdown .dropdown {
  /* visibility + opacity instead of display:none so it can animate,
     and so the panel stays interactive while fading in */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  box-shadow: var(--sh4);
  min-width: 300px;
  padding: 10px;
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* keep the parent link highlighted while its panel is open */
.has-dropdown.is-open > a { color: var(--p500); background: var(--p100); }

/* chevron flips when open */
.has-dropdown > a svg { transition: transform 0.2s ease; }
.has-dropdown:hover > a svg,
.has-dropdown.is-open > a svg { transform: rotate(180deg); }

/* on touch devices hover is unreliable — rely on the click handler */
@media (hover: none) {
  .has-dropdown:hover .dropdown { visibility: hidden; opacity: 0; pointer-events: none; }
  .has-dropdown.is-open .dropdown { visibility: visible; opacity: 1; pointer-events: auto; }
}

.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r1);
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--bg2); transform: translateX(4px); }
.dd-emoji { font-size: 18px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.dd-title { font-size: 14px; font-weight: 600; color: var(--text-1); }
.dd-sub { font-size: 12.5px; color: var(--text-4); margin-top: 2px; }

.header-right { display: flex; align-items: center; gap: 10px; }
.header-whatsapp {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: #25d366; color: #fff;
  transition: all 0.25s;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}
.header-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.4); }

.btn-client-area {
  background: linear-gradient(135deg, var(--p700), var(--p500));
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  box-shadow: 0 4px 14px rgba(45,31,138,0.35);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-client-area:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,31,138,0.45); }

.mobile-toggle {
  display: none; background: none; border: none;
  width: 28px; height: 20px; position: relative;
  margin-left: auto; padding: 0;
}
.mobile-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--text-1); border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-toggle span:nth-child(1) { top:0; }
.mobile-toggle span:nth-child(2) { top:9px; }
.mobile-toggle span:nth-child(3) { top:18px; }
.mobile-toggle.open span:nth-child(1) { top:9px; transform:rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity:0; }
.mobile-toggle.open span:nth-child(3) { top:9px; transform:rotate(-45deg); }

.mobile-nav-panel {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 28px 24px;
}
.mobile-nav-panel a { padding: 13px 0; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.mobile-nav-panel .sub-link { padding-left: 20px; font-weight: 500; color: var(--text-4); font-size: 14px; }
.mobile-nav-panel.open { display: flex; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-right { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero-gradient {
  position: relative; overflow: hidden;
  border-radius: var(--r4);
  padding: 80px 56px;
  background: linear-gradient(150deg, var(--p900) 0%, var(--p800) 30%, var(--p700) 65%, var(--p500) 100%);
  color: #fff;
  box-shadow: var(--sh4);
}
.hero-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 30px 30px;
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%,100% { opacity:0.6; }
  50% { opacity:1; }
}
.hero-gradient::after {
  content: '';
  position: absolute; top: -40%; right: -10%; width: 65%; height: 180%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(98,85,240,0.45) 0%, transparent 70%);
  animation: orb 12s ease-in-out infinite;
}
@keyframes orb { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-30px) scale(1.08);} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-split { display: flex; align-items: center; gap: 48px; position: relative; z-index: 1; }
.hero-text { flex: 1 1 400px; }
.hero-visual { flex: 1 1 320px; display: flex; justify-content: center; }

.hero-gradient h1 { font-size: clamp(32px, 5vw, 50px); color: #fff; margin: 0 0 18px; }
.hero-gradient p { font-size: clamp(15px, 2vw, 18px); opacity: 0.88; line-height: 1.7; margin: 0 0 28px; }
.accent { color: var(--gold); }

.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hero-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px; padding: 6px 14px; font-size: 12.5px; font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-chip svg { flex-shrink: 0; }

@media (max-width: 800px) {
  .hero-gradient { padding: 48px 28px; border-radius: var(--r3); }
  .hero-split { flex-direction: column; text-align: center; }
  .hero-split .hero-visual { display: none; }
  .hero-chips { justify-content: center; }
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-eyebrow {
  text-align: center; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--p500); margin-bottom: 10px;
}
.section-title { font-size: clamp(24px, 3.5vw, 34px); text-align: center; margin: 0 0 12px; }
.section-sub {
  text-align: center; color: var(--text-3); font-size: 16.5px;
  max-width: 580px; margin: 0 auto 44px; line-height: 1.7;
}
@media (max-width: 600px) { .section { padding: 48px 0; } }

/* ===== STATS ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--sh2);
}
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2,1fr); } }
.stat-item {
  background: var(--white);
  text-align: center;
  padding: 28px 20px;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--bg2); }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--p800), var(--p500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-4); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; max-width: 1040px; margin: 0 auto; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 32px 28px 28px;
  box-shadow: var(--sh1);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  /* no overflow:hidden — it would clip the "Most Popular" badge,
     which sits above the card's top edge */
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--p600), var(--p400));
  border-radius: var(--r3) var(--r3) 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh4); border-color: rgba(70,54,197,0.15); }
.card:hover::before { transform: scaleX(1); }
.card.featured { border: 2px solid var(--p500); box-shadow: var(--sh3); }
.card.featured { padding-top: 36px; }   /* room for the centred badge */
.card.featured::before { transform: scaleX(1); }

.card h3 { font-size: 18px; margin: 0 0 8px; }
.card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--text-1);
  margin: 16px 0 2px;
  line-height: 1.05;
}
/* The billing-toggle wrappers are spans too, so they must keep the full
   price size — without this they inherit the small "/mo" styling below. */
.card .price > .price-monthly-val,
.card .price > .price-yearly-val {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
}
.card .price span span,
.card .price > span:not([class]) {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-4);
}
.card .price-yearly { font-size: 13px; color: var(--text-4); margin-bottom: 16px; }
.card ul { font-size: 14px; color: var(--text-3); line-height: 1; margin: 0 0 22px; }
.card ul li { padding: 7px 0 7px 24px; position: relative; border-bottom: 1px solid var(--bg2); }
.card ul li::before { content:''; position:absolute; left:0; top:12px; width:16px; height:16px; background: linear-gradient(135deg,#d1fae5,#a7f3d0); border-radius:50%; }
.card ul li::after { content:'✓'; position:absolute; left:3px; top:11px; font-size:10px; font-weight:700; color:var(--green); }
.card ul li:last-child { border-bottom: none; }

.btn-order {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--p700), var(--p500));
  color: #fff !important; padding: 14px;
  border-radius: 999px; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(45,31,138,0.25);
  transition: all 0.25s;
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,31,138,0.38); }

.badge-off {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 800;
  padding: 6px 18px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(251,191,36,0.55);
  letter-spacing: 0.04em; white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
  z-index: 3;   /* above the card's ::before accent bar */
}

/* plan-tag: subtle corner label for non-featured cards */
.plan-tag {
  position: absolute; top: 16px; right: 18px;
  background: var(--bg2); color: var(--text-4);
  font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ===== FEATURE BOXES ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; max-width: 1060px; margin: 0 auto; }
.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  box-shadow: var(--sh1);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--sh3); border-color: rgba(70,54,197,0.12); }
.feature-box .icon { margin-bottom: 16px; }
.feature-box h3 { font-size: 16px; margin: 0 0 10px; }
.feature-box p { font-size: 14.5px; color: var(--text-3); line-height: 1.7; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--p700), var(--p400));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(45,31,138,0.28);
  margin-bottom: 16px;
  transition: transform 0.25s;
}
.feature-box:hover .icon-badge { transform: scale(1.1) rotate(-4deg); }
.icon-badge.amber { background: linear-gradient(135deg, var(--gold), var(--gold-dk)); box-shadow: 0 6px 18px rgba(251,191,36,0.32); }
.icon-badge.green { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 6px 18px rgba(16,185,129,0.28); }

/* ===== HOW IT WORKS ===== */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; max-width: 900px; margin: 0 auto; position: relative; }
.steps-row::after {
  content: '';
  position: absolute; top: 30px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--p300), var(--gold), var(--p300));
  z-index: 0;
}
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p700), var(--p500));
  color: #fff; font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(45,31,138,0.3);
  border: 4px solid var(--bg);
  transition: transform 0.3s;
}
.step-item:hover .step-num { transform: scale(1.15); }
.step-item h3 { font-size: 15px; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-3); line-height: 1.6; }
@media (max-width: 700px) { .steps-row::after { display: none; } }

/* ===== DOMAIN STRIP ===== */
.domain-strip {
  background: linear-gradient(135deg, var(--bg2), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--r4);
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--sh2);
}
.domain-prices { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0 28px; }
.domain-chip {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 999px; padding: 10px 22px;
  font-size: 14px; font-weight: 600; color: var(--text-2);
  transition: all 0.2s; cursor: default;
  box-shadow: var(--sh1);
}
.domain-chip strong { color: var(--p700); margin-right: 3px; }
.domain-chip:hover { border-color: var(--p500); color: var(--p600); transform: translateY(-3px); box-shadow: var(--sh2); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); background: var(--white);
  border-radius: var(--r2); padding: 22px 24px; margin-bottom: 12px;
  box-shadow: var(--sh1); transition: all 0.2s;
}
.faq-item:hover { border-color: rgba(70,54,197,0.2); box-shadow: var(--sh2); }
.faq-item h3 { font-size: 15px; margin: 0 0 8px; color: var(--text-1); }
.faq-item p { font-size: 15px; color: var(--text-3); line-height: 1.7; }

/* ===== CTA BOX ===== */
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--p800), var(--p600));
  border-radius: var(--r4);
  padding: 64px 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-box h2 { color: #fff; font-size: clamp(22px,3vw,30px); margin: 0 0 12px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; position: relative; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--white); color: var(--p700) !important;
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: all 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-primary.dark {
  background: linear-gradient(135deg, var(--p700), var(--p500)); color: #fff !important;
  box-shadow: 0 4px 14px rgba(45,31,138,0.3);
}
.btn-primary.dark:hover { box-shadow: 0 8px 24px rgba(45,31,138,0.42); }
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.9) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: all 0.25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--p500) !important;
  border: 1.5px solid var(--p500);
  padding: 13px 28px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: var(--p100); transform: translateY(-2px); }

/* ===== COUPON BADGE ===== */
.coupon-badge {
  display: inline-block; background: var(--white); color: var(--p800);
  font-weight: 800; font-size: 20px; padding: 16px 36px;
  border-radius: var(--r2); letter-spacing: 2px; margin-bottom: 18px;
  box-shadow: var(--sh3); border: 2px solid rgba(255,255,255,0.3);
  position: relative;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 28px;
  box-shadow: var(--sh1); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.testimonial-card::after {
  content: '\201C';
  position: absolute; top: -10px; right: 16px;
  font-size: 80px; color: var(--p100); font-family: Georgia,serif; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh3); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: var(--text-2); font-style: italic; line-height: 1.7; margin: 0 0 16px; position: relative; }
.testimonial-card .author { font-size: 13px; font-weight: 700; color: var(--text-4); }

/* ===== TRUST ROW ===== */
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.trust-row span {
  font-size: 12.5px; font-weight: 600; color: var(--text-4);
  border: 1px solid var(--border); padding: 8px 18px; border-radius: 999px;
  background: var(--white); letter-spacing: 0.02em;
  transition: all 0.2s;
}
.trust-row span:hover { border-color: var(--p400); color: var(--p600); transform: translateY(-2px); box-shadow: var(--sh1); }

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 2px dashed var(--border); border-radius: var(--r3);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 52px 24px;
  text-align: center; color: var(--text-4); font-size: 13px; min-height: 240px;
}
.image-placeholder svg { margin-bottom: 14px; opacity: 0.35; }

/* ===== FOOTER ===== */
.site-footer { background: linear-gradient(180deg, var(--p900) 0%, #080520 100%); color: #b8b6d0; margin-top: 80px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 28px 36px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p { font-size: 14px; color: #7c7aaa; margin: 18px 0; line-height: 1.8; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: #b8b6d0; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
}
.social-links a:hover { background: var(--p600); color: #fff; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(70,54,197,0.35); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 11px; color: #fff; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col a { display: block; font-size: 14px; color: #7c7aaa; margin-bottom: 12px; transition: all 0.2s; }
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); text-align: center; padding: 22px; font-size: 12px; color: #4a4872; }

@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ===== CONTENT PAGES ===== */
.page-content { max-width: 820px; margin: 0 auto; padding: 56px 28px; }
.page-content h1 { font-size: clamp(26px,4vw,34px); margin-bottom: 20px; }
.page-content h2 { font-size: 22px; margin-top: 40px; margin-bottom: 16px; }
.page-content p { color: var(--text-2); }
.placeholder-note {
  background: linear-gradient(135deg,#fffbeb,#fef3c7); border-left: 4px solid var(--gold-dk);
  border-radius: 0 var(--r1) var(--r1) 0; padding: 14px 18px; font-size: 13px; margin: 20px 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MISC ===== */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .card { padding: 24px 20px; }
  .feature-box { padding: 22px 20px; }
  .domain-strip { padding: 36px 24px; }
  .cta-box { padding: 44px 28px; }
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; max-width: 1040px; margin: 0 auto; }

.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 28px;
  box-shadow: var(--sh1); transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh3); border-color: rgba(70,54,197,0.15); }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.blog-cat {
  background: var(--p100); color: var(--p600);
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-read { font-size: 12px; color: var(--text-4); }
.blog-card h2 { font-size: 18px; line-height: 1.35; margin: 0 0 10px; }
.blog-card h2 a { transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--p500); }
.blog-card p { font-size: 14.5px; color: var(--text-3); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-4);
  border-top: 1px solid var(--bg2); padding-top: 16px;
}
.blog-read-link { color: var(--p500); font-weight: 700; transition: transform 0.2s; display: inline-block; }
.blog-read-link:hover { transform: translateX(3px); }

/* Blog post page */
.blog-post { max-width: 760px; margin: 0 auto; padding: 40px 28px 0; }
.blog-post-header { margin-bottom: 36px; }
.blog-back { font-size: 13.5px; color: var(--p500); font-weight: 600; display: inline-block; margin-bottom: 20px; transition: transform 0.2s; }
.blog-back:hover { transform: translateX(-3px); }
.blog-post-header h1 { font-size: clamp(28px,4.5vw,40px); margin: 14px 0 12px; line-height: 1.2; }
.blog-byline { font-size: 13.5px; color: var(--text-4); }

.blog-body { font-size: 16.5px; line-height: 1.8; color: var(--text-2); }
.blog-body .lead { font-size: 18.5px; line-height: 1.75; color: var(--text-1); font-weight: 500; margin-bottom: 28px; }
.blog-body h2 { font-size: 23px; margin: 40px 0 16px; }
.blog-body p { margin-bottom: 20px; }
.blog-body ul { margin: 0 0 22px; padding-left: 0; }
.blog-body ul li { padding: 6px 0 6px 26px; position: relative; }
.blog-body ul li::before {
  content: ''; position: absolute; left: 4px; top: 15px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--p400);
}
.blog-body strong { color: var(--text-1); font-weight: 600; }

.blog-cta {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border); border-radius: var(--r3);
  padding: 32px; margin: 48px 0; text-align: center;
}
.blog-cta h3 { font-size: 19px; margin-bottom: 8px; }
.blog-cta p { font-size: 14.5px; color: var(--text-3); margin: 0; }

.blog-related { margin: 56px 0; }
.blog-related h3 { font-size: 20px; margin-bottom: 24px; text-align: center; }
.blog-related .blog-card h2 { font-size: 16px; }

@media (max-width: 600px) {
  .blog-post { padding: 28px 20px 0; }
  .blog-body { font-size: 16px; }
  .blog-body .lead { font-size: 17px; }
  .blog-cta { padding: 26px 20px; }
}

/* ============================================================
   v4 — CONVERSION UI PATTERNS
   Based on current hosting/SaaS pricing page conventions:
   billing toggle, comparison matrix, guarantee band,
   status strip, sticky mobile CTA.
   ============================================================ */

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 40px; flex-wrap: wrap;
}
.billing-toggle .bt-label {
  font-size: 14px; font-weight: 600; color: var(--text-4);
  transition: color 0.2s; cursor: pointer; user-select: none;
}
.billing-toggle .bt-label.active { color: var(--text-1); }
.bt-switch {
  position: relative; width: 56px; height: 30px;
  background: var(--p500); border-radius: 999px;
  cursor: pointer; transition: background 0.25s;
  flex-shrink: 0; border: none; padding: 0;
}
.bt-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.bt-switch.yearly::after { transform: translateX(26px); }
.bt-save {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46; font-size: 12px; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.02em;
}

/* price swap */
.price-yearly-val { display: none; }
body.billing-yearly .price-monthly-val { display: none; }
body.billing-yearly .price-yearly-val { display: inline; }
.price-note { font-size: 12.5px; color: var(--text-4); margin-bottom: 18px; min-height: 18px; }

/* ===== COMPARISON MATRIX ===== */
.compare-wrap {
  max-width: 940px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); box-shadow: var(--sh2);
  overflow: hidden;
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare thead th {
  background: var(--bg2); padding: 18px 16px;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  color: var(--text-1); text-align: center; font-weight: 700;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 2;
}
table.compare thead th:first-child { text-align: left; }
table.compare thead th.pop { background: linear-gradient(180deg, var(--p100), var(--bg2)); position: relative; }
table.compare thead th .th-price { display: block; font-size: 12px; font-weight: 500; color: var(--text-4); margin-top: 3px; }
table.compare tbody tr:nth-child(even) { background: #fbfbfe; }
table.compare tbody tr:hover { background: var(--p100); }
table.compare td {
  padding: 14px 16px; font-size: 13.5px; text-align: center;
  border-bottom: 1px solid var(--border-light, #f0eff8); color: var(--text-2);
}
table.compare td:first-child { text-align: left; font-weight: 600; color: var(--text-1); }
table.compare tr.group-row td {
  background: var(--bg3); font-family: 'Poppins', sans-serif;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); text-align: left;
}
.tick { color: var(--green); font-weight: 800; font-size: 15px; }
.cross { color: #d1d0e0; font-weight: 700; font-size: 15px; }

/* ===== GUARANTEE BAND ===== */
.guarantee-band {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2px; background: var(--border);
  border-radius: var(--r3); overflow: hidden;
  max-width: 940px; margin: 0 auto; box-shadow: var(--sh1);
}
.guarantee-item {
  background: var(--white); padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: background 0.2s;
}
.guarantee-item:hover { background: var(--bg2); }
.guarantee-item .gi-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#d1fae5,#a7f3d0); color: #059669;
}
.guarantee-item .gi-icon.gold { background: linear-gradient(135deg,#fef3c7,#fde68a); color: var(--gold-dk); }
.guarantee-item .gi-icon.purple { background: var(--p100); color: var(--p600); }
.guarantee-item h4 { font-size: 14px; margin: 0 0 2px; }
.guarantee-item p { font-size: 12.5px; color: var(--text-4); margin: 0; line-height: 1.5; }

/* ===== STATUS STRIP ===== */
.status-strip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  box-shadow: var(--sh1);
}
.status-strip .sd {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); position: relative; flex-shrink: 0;
}
.status-strip .sd::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--green); opacity: 0.25;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.7); opacity: 0.45; }
  100% { transform: scale(1.7); opacity: 0; }
}
.status-strip a { color: var(--p500); font-weight: 700; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(26,14,94,0.1);
}
.sticky-cta a { flex: 1; text-align: center; padding: 13px; font-size: 14px; }
.sticky-cta .sc-wa {
  background: #25d366; color: #fff !important;
  border-radius: 999px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  flex: 0 0 52px; padding: 13px 0;
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ===== SECTION DIVIDER ===== */
.sec-divider {
  height: 1px; max-width: 1040px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 600px) {
  .billing-toggle { gap: 10px; }
  .guarantee-item { padding: 18px 16px; }
  table.compare thead th { padding: 14px 12px; font-size: 13px; }
  table.compare td { padding: 12px; font-size: 13px; }
}

/* ============================================================
   v5 — FULL-WIDTH HEROES + HERO CHECKLIST + SERVICE GRID
   ============================================================ */

/* ===== FULL-BLEED HERO ===== */
.hero-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  padding: 76px 0 80px;
  background: linear-gradient(150deg, var(--p900) 0%, var(--p800) 30%, var(--p700) 65%, var(--p500) 100%);
  color: #fff;
}
.hero-full::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 30px 30px;
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-full::after {
  content: '';
  position: absolute; top: -40%; right: -8%; width: 60%; height: 180%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(98,85,240,0.4) 0%, transparent 70%);
  animation: orb 12s ease-in-out infinite;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.hero-full h1 {
  font-size: clamp(30px, 4.8vw, 46px);
  color: #fff; margin: 0 0 16px;
}
.hero-full p { font-size: clamp(15px, 1.9vw, 17.5px); opacity: 0.9; line-height: 1.7; }

/* trust line under H1 */
.hero-trustline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.hero-trustline svg { flex-shrink: 0; }

/* ===== HERO BENEFIT CHECKLIST (two columns) ===== */
.hero-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 28px;
  margin: 26px 0 30px;
  max-width: 620px;
}
.hero-checklist li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.hero-checklist li svg { flex-shrink: 0; margin-top: 3px; }
@media (max-width: 700px) {
  .hero-checklist { grid-template-columns: 1fr; gap: 9px; margin: 22px 0 26px; }
}

/* hero with visual alongside */
.hero-cols {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}
@media (max-width: 900px) {
  .hero-cols { grid-template-columns: 1fr; gap: 32px; }
  .hero-cols .hero-art { display: none; }
}

/* ===== RELATED SERVICES GRID ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px; max-width: 1060px; margin: 0 auto;
}
.svc-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 24px;
  box-shadow: var(--sh1);
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.svc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh3);
  border-color: rgba(70,54,197,0.22);
}
.svc-item h3 {
  font-size: 15.5px; margin: 0 0 7px;
  display: flex; align-items: center; gap: 8px;
}
.svc-item h3 .svc-arrow {
  color: var(--p400); font-size: 15px;
  transition: transform 0.25s; display: inline-block;
}
.svc-item:hover h3 .svc-arrow { transform: translateX(4px); }
.svc-item p { font-size: 13px; color: var(--text-3); margin: 0; line-height: 1.65; }
.svc-tag {
  position: absolute; top: 16px; right: 18px;
  background: var(--p100); color: var(--p600);
  font-size: 10.5px; font-weight: 800;
  padding: 3px 9px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ===== CERTIFICATION BAR ===== */
.cert-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 12px 20px;
  box-shadow: var(--sh1); transition: all 0.22s;
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--sh2); border-color: rgba(70,54,197,0.2); }
.cert-badge .cb-ico {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--p100); color: var(--p600);
}
.cert-badge .cb-ico.gold { background: #fef3c7; color: var(--gold-dk); }
.cert-badge .cb-ico.green { background: #d1fae5; color: #059669; }
.cert-badge strong { display: block; font-size: 13px; color: var(--text-1); font-family: 'Poppins',sans-serif; }
.cert-badge span { display: block; font-size: 11.5px; color: var(--text-4); }

/* ===== HEADER PHONE ===== */
.header-phone {
  display: flex; flex-direction: column;
  line-height: 1.25; margin-right: 4px;
  text-align: right;
}
.header-phone .hp-label { font-size: 10.5px; color: var(--text-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.header-phone .hp-num { font-size: 14px; font-weight: 800; color: var(--text-1); font-family: 'Poppins',sans-serif; }
.header-phone:hover .hp-num { color: var(--p500); }
@media (max-width: 1100px) { .header-phone { display: none; } }

/* first section after a full hero shouldn't double up on padding */
.hero-full + .container > .section:first-child { padding-top: 56px; }


/* ===== ACCESSIBILITY ===== */
/* Visually hidden but readable by screen readers — used on form labels
   where the visual design relies on placeholders. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* Visible focus ring for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--p400);
  outline-offset: 2px;
  border-radius: var(--r1);
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== TESTIMONIAL EXTRAS ===== */
.testimonial-card figure, .testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p {
  font-size: 14.5px; color: var(--text-2); font-style: italic;
  line-height: 1.75; margin: 0 0 16px; position: relative;
}
.testimonial-card .author-meta {
  display: block; font-weight: 500; font-size: 12.5px;
  color: var(--text-4); margin-top: 3px;
}
.review-source {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 26px; font-size: 13.5px; color: var(--text-3);
}
.review-source a { color: var(--p500); font-weight: 600; }
.review-source svg { flex-shrink: 0; }
