
/* ============================================================
   HOSTAZY — DESIGN SYSTEM
============================================================ */
:root {
  --brand: #1a3de4;
  --brand-dark: #1230c4;
  --brand-light: #e8eeff;
  --accent: #f5a623;
  --red: #e53935;
  --green: #10b981;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-50: #f0f4ff;
  --gray-100: #e4eaff;
  --gray-200: #c9d5ff;
  --text-900: #0a1628;
  --text-700: #1e3a5f;
  --text-500: #4b6080;
  --text-300: #8fa5c0;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(26,61,228,.06), 0 1px 2px rgba(26,61,228,.04);
  --shadow-md: 0 4px 20px rgba(26,61,228,.08), 0 2px 8px rgba(26,61,228,.05);
  --shadow-lg: 0 16px 48px rgba(26,61,228,.12), 0 4px 16px rgba(26,61,228,.08);
  --shadow-xl: 0 32px 80px rgba(26,61,228,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brand); color: white; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); color: var(--brand);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-label svg { width: 12px; height: 12px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; color: var(--text-900); margin-bottom: 14px;
}
.section-head p { color: var(--text-500); font-size: 1.05rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 12px 26px; border-radius: var(--radius-md); border: none;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12); opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--brand); color: white; box-shadow: 0 4px 16px rgba(26,61,228,.3); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,61,228,.4); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--brand); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 4px 16px rgba(245,166,35,.35); }
.btn-accent:hover { background: #e09400; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,61,228,.07);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,61,228,.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 5px 4px; background: var(--text-900);
}
.nav-logo-icon span {
  display: block; border-radius: 3px; height: 7px;
}
.nav-logo-icon span:nth-child(1) { background: #1a3de4; }
.nav-logo-icon span:nth-child(2) { background: #f5a623; }
.nav-logo-icon span:nth-child(3) { background: #e53935; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 800;
  color: var(--text-900); letter-spacing: -.5px;
}
.nav-logo-text span { color: var(--brand); }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  font-size: .92rem; font-weight: 600; color: var(--text-700);
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-link { color: var(--brand); background: var(--brand-light); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  padding: 16px; min-width: 480px; z-index: 1000;
  border: 1px solid var(--gray-100);
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drop-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-md);
  transition: var(--transition); cursor: pointer;
}
.drop-link:hover { background: var(--gray-50); }
.drop-link-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: var(--transition);
}
.drop-link:hover .drop-link-icon { background: var(--brand); }
.drop-link h4 { font-size: .9rem; font-weight: 700; color: var(--text-900); margin-bottom: 2px; }
.drop-link p { font-size: .8rem; color: var(--text-500); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login {
  font-size: .92rem; font-weight: 600; color: var(--text-700);
  padding: 8px 16px; border-radius: var(--radius-sm); background: none;
  border: none; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav-login:hover { color: var(--brand); background: var(--brand-light); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 42px; height: 42px; gap: 5px;
  background: none; border: 2px solid var(--gray-100); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.nav-hamburger span {
  width: 18px; height: 2px; background: var(--text-900); border-radius: 2px;
  transition: var(--transition); display: block;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(10,22,40,.5); backdrop-filter: blur(4px);
}
.mobile-menu.open { display: block; }
.mobile-drawer {
  position: absolute; top: 0; right: -320px; width: 300px; height: 100%;
  background: white; padding: 80px 24px 32px;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.mobile-menu.open .mobile-drawer { right: 0; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-radius: var(--radius-md); font-weight: 600;
  color: var(--text-900); font-size: .97rem; cursor: pointer;
  transition: var(--transition); margin-bottom: 4px;
  background: none; border: none; width: 100%; font-family: var(--font-body);
}
.mobile-nav-link:hover { background: var(--brand-light); color: var(--brand); }
.mobile-sub { display: none; padding: 4px 0 8px 16px; }
.mobile-sub.open { display: block; }
.mobile-sub-link {
  display: block; padding: 9px 14px; font-size: .88rem; color: var(--text-500);
  border-radius: var(--radius-sm); transition: var(--transition); font-weight: 500;
}
.mobile-sub-link:hover { color: var(--brand); background: var(--brand-light); }
.mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, #0d1f6e 0%, #1a3de4 45%, #2558ff 100%);
  min-height: 92vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 80px 0 60px;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-bg-orb.o1 {
  width: 600px; height: 600px; background: rgba(37,88,255,.4);
  top: -200px; right: -100px;
}
.hero-bg-orb.o2 {
  width: 400px; height: 400px; background: rgba(245,166,35,.12);
  bottom: -100px; left: 10%;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles::before, .hero-particles::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero-particles::before { width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.08); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-particles::after { width: 1100px; height: 1100px; border: 1px solid rgba(255,255,255,.04); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.2)} }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px;
  animation: fadeUp .6s ease .1s both;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 44px;
  line-height: 1.7; animation: fadeUp .6s ease .2s both;
}
.search-wrap {
  max-width: 640px; margin: 0 auto 28px;
  animation: fadeUp .6s ease .3s both;
}
.search-box {
  display: flex; background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.2);
}
.search-box input {
  flex: 1; border: none; outline: none; font-size: 1rem; font-weight: 500;
  padding: 18px 22px; font-family: var(--font-body); color: var(--text-900);
  background: transparent;
}
.search-box input::placeholder { color: var(--text-300); font-weight: 400; }
.search-tld {
  border: none; outline: none; background: var(--gray-50);
  padding: 0 16px; font-size: .95rem; font-weight: 600; color: var(--text-700);
  cursor: pointer; font-family: var(--font-body);
  border-left: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100);
}
.search-btn {
  background: var(--accent); border: none; color: white; font-weight: 800;
  font-size: 1rem; padding: 0 32px; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition); letter-spacing: .02em;
}
.search-btn:hover { background: #e09400; }
.domain-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; animation: fadeUp .6s ease .4s both; }
.domain-tag {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9); padding: 7px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; transition: var(--transition); cursor: pointer;
}
.domain-tag:hover { background: rgba(255,255,255,.22); }
.domain-tag.hot { background: var(--red); border-color: var(--red); color: white; }

/* floating cards in hero */
.hero-float-card {
  position: absolute; background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: .85rem; font-weight: 600;
  animation: floatAnim 4s ease-in-out infinite;
}
.hero-float-card .icon { font-size: 1.4rem; }
.hero-float-card.f1 { left: 4%; top: 30%; animation-delay: 0s; }
.hero-float-card.f2 { left: 3%; bottom: 22%; animation-delay: 1.5s; }
.hero-float-card.f3 { right: 3%; top: 28%; animation-delay: .8s; }
.hero-float-card.f4 { right: 3%; bottom: 22%; animation-delay: 2.2s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============================================================
   HOSTING OVERVIEW (3 cards below hero)
============================================================ */
.hosting-overview { padding: 0 0 64px; background: var(--off-white); }
.overview-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--gray-100); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  margin-top: -1px;
}
.ov-card {
  background: white; padding: 40px 32px;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.ov-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.ov-card:hover::before { transform: scaleX(1); }
.ov-card:hover { background: var(--gray-50); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ov-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px; transition: var(--transition);
}
.ov-card:hover .ov-icon { background: var(--brand); }
.ov-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.ov-card p { color: var(--text-500); font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.ov-link { color: var(--brand); font-size: .88rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.ov-link:hover { gap: 10px; }

/* ============================================================
   PRICING
============================================================ */
.pricing { padding: 100px 0; background: white; }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 56px; }
.toggle-bar {
  display: inline-flex; background: var(--gray-50);
  border: 1px solid var(--gray-100); border-radius: 50px; padding: 5px; gap: 4px;
  align-items: center;
}
.toggle-tab {
  border: none; background: none; padding: 10px 28px; border-radius: 50px;
  font-size: .92rem; font-weight: 600; cursor: pointer; color: var(--text-500);
  font-family: var(--font-body); transition: var(--transition);
}
.toggle-tab.active { background: var(--brand); color: white; box-shadow: 0 4px 12px rgba(26,61,228,.25); }
.save-chip {
  background: rgba(16,185,129,.12); color: var(--green);
  font-size: .78rem; font-weight: 700; padding: 5px 12px;
  border-radius: 50px; border: 1px solid rgba(16,185,129,.2); margin-left: 8px;
}
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card {
  border: 2px solid var(--gray-100); border-radius: var(--radius-xl);
  padding: 36px 30px; transition: var(--transition); position: relative;
  background: white;
}
.plan-card:hover { transform: translateY(-6px); border-color: var(--brand); box-shadow: var(--shadow-xl); }
.plan-card.featured {
  background: linear-gradient(155deg, #1230c4 0%, #1a3de4 40%, #2558ff 100%);
  border-color: transparent; transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; font-size: .75rem; font-weight: 800;
  padding: 5px 18px; border-radius: 50px; letter-spacing: .05em;
  text-transform: uppercase; white-space: nowrap;
}
.plan-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
  background: var(--brand-light);
}
.plan-card.featured .plan-icon-wrap { background: rgba(255,255,255,.15); }
.plan-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin-bottom: 5px; }
.plan-card.featured h3 { color: white; }
.plan-tag { font-size: .83rem; color: var(--text-500); margin-bottom: 24px; }
.plan-card.featured .plan-tag { color: rgba(255,255,255,.7); }
.price-row { margin-bottom: 26px; }
.price-amount {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
  line-height: 1; color: var(--text-900);
}
.plan-card.featured .price-amount { color: white; }
.price-amount sup { font-size: 1.3rem; font-weight: 700; vertical-align: 10px; }
.price-amount sub { font-size: 1rem; font-weight: 500; vertical-align: 0; }
.price-note { font-size: .82rem; color: var(--text-300); margin-top: 4px; }
.plan-card.featured .price-note { color: rgba(255,255,255,.6); }
.plan-btn {
  display: block; width: 100%; text-align: center; padding: 14px;
  border-radius: var(--radius-md); font-weight: 700; font-size: .97rem;
  font-family: var(--font-body); border: none; cursor: pointer;
  transition: var(--transition); margin-bottom: 28px; text-decoration: none;
}
.plan-card:not(.featured) .plan-btn { background: var(--brand); color: white; }
.plan-card:not(.featured) .plan-btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
.plan-card.featured .plan-btn { background: white; color: var(--brand); }
.plan-card.featured .plan-btn:hover { background: var(--gray-50); }
.plan-features { list-style: none; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: .88rem; color: var(--text-700);
  border-bottom: 1px solid var(--gray-50);
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.08); }
.feat-check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.plan-card.featured .feat-check { color: #6ee7b7; }
.expand-btn {
  display: flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: .85rem; font-weight: 700; color: var(--brand);
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition);
}
.plan-card.featured .expand-btn { color: rgba(255,255,255,.8); }

/* ============================================================
   SERVICES
============================================================ */
.services { padding: 100px 0; background: var(--text-900); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(26,61,228,.4) 0%, transparent 70%);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.srv-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 32px 26px;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,228,.3), rgba(37,88,255,.1));
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover { background: rgba(255,255,255,.08); transform: translateY(-6px); border-color: rgba(26,61,228,.5); }
.srv-card:hover::before { opacity: 1; }
.srv-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(26,61,228,.3); border: 1px solid rgba(26,61,228,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1;
  transition: var(--transition);
}
.srv-card:hover .srv-icon { background: var(--brand); border-color: var(--brand); }
.srv-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 10px; position: relative; z-index: 1; }
.srv-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.65; margin-bottom: 18px; position: relative; z-index: 1; }
.srv-link { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); position: relative; z-index: 1; }
.srv-link:hover { color: white; gap: 10px; }
.more-btn-wrap { text-align: center; margin-top: 48px; position: relative; z-index: 2; }

/* ============================================================
   WHY HOSTAZY
============================================================ */
.why { padding: 100px 0; background: var(--off-white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 18px; color: var(--text-900);
}
.why-left p { color: var(--text-500); line-height: 1.75; font-size: 1rem; margin-bottom: 32px; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
  background: white; border-radius: var(--radius-lg); padding: 24px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition);
}
.stat-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--brand); line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: .85rem; color: var(--text-500); font-weight: 500; }
.why-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card {
  background: white; border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: var(--transition); text-align: center;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--text-500); font-size: .85rem; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { padding: 100px 0; background: white; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--gray-50); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--gray-100); transition: var(--transition); position: relative;
}
.testi-card.featured { background: linear-gradient(145deg, #1a3de4, #2558ff); border-color: transparent; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: .92rem; line-height: 1.75; color: var(--text-700); margin-bottom: 24px; font-style: italic; }
.testi-card.featured .testi-text { color: rgba(255,255,255,.88); }
.testi-author-row { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: white; flex-shrink: 0;
}
.testi-info h5 { font-weight: 700; font-size: .9rem; color: var(--text-900); }
.testi-info span { font-size: .8rem; color: var(--text-400); }
.testi-card.featured .testi-info h5 { color: white; }
.testi-card.featured .testi-info span { color: rgba(255,255,255,.65); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-section { padding: 0 0 80px; }
.cta-card {
  background: linear-gradient(135deg, #0d1f6e 0%, #1a3de4 50%, #2558ff 100%);
  border-radius: var(--radius-xl); padding: 70px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-card::after {
  content: ''; position: absolute; right: 80px; bottom: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(245,166,35,.1);
}
.cta-card h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800; color: white; max-width: 420px; line-height: 1.25;
  position: relative; z-index: 1;
}
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--text-900); color: white; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.75; margin: 16px 0 22px; max-width: 270px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 10px; text-decoration: none; transition: var(--transition); }
.footer-contact-item:hover { color: white; }
.footer-contact-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
footer h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin-bottom: 20px; color: white; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: white; gap: 8px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 11px 14px; color: white;
  font-size: .88rem; font-family: var(--font-body); outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--brand); background: rgba(26,61,228,.2); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  background: var(--brand); border: none; border-radius: var(--radius-sm);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: var(--transition); flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--brand-dark); transform: scale(1.05); }
.socials-row { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 800;
  transition: var(--transition); text-decoration: none;
}
.social-icon:hover { background: var(--brand); border-color: var(--brand); color: white; transform: translateY(-3px); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.65); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: white; }
.payment-badges { display: flex; gap: 8px; }
.pay-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 5px 12px;
  font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-float-card { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-card { padding: 50px 40px; flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .overview-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: .97rem; }
  .search-box { flex-wrap: wrap; border-radius: var(--radius-md); }
  .search-box input { min-width: 100%; padding: 15px 18px; }
  .search-tld { border-left: none; border-top: 1px solid var(--gray-100); padding: 12px 16px; }
  .search-btn { flex: 1; padding: 14px; min-height: 50px; border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .cta-card { padding: 40px 28px; border-radius: var(--radius-lg); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .pricing, .services, .why, .testimonials { padding: 70px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-row { grid-template-columns: 1fr; }
  .domain-tags { gap: 8px; }
  .domain-tag { font-size: .78rem; padding: 6px 12px; }
}
