/* =====================================================================
   LYFHOST — Design System
   Web Hosting & Domains · A Lyfsoft Technologies company
   Palette: Indigo (#4F46E5) → Cyan (#06B6D4), Slate neutrals
   ===================================================================== */

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand:        #4F46E5;
  --brand-dark:   #4338CA;
  --brand-light:  #6366F1;
  --brand-pale:   #EEF2FF;
  --brand-border: rgba(79, 70, 229, 0.22);

  /* Accent (cyan) */
  --accent:       #06B6D4;
  --accent-dark:  #0891B2;
  --accent-light: #22D3EE;
  --accent-pale:  #ECFEFF;

  /* State */
  --success:      #10B981;
  --success-pale: #ECFDF5;
  --warning:      #F59E0B;
  --danger:       #EF4444;

  /* Neutral (slate) */
  --ink:        #0F172A;
  --ink-2:      #1E293B;
  --ink-3:      #334155;
  --muted:      #64748B;
  --muted-2:    #94A3B8;
  --line:       #E2E8F0;
  --line-2:     #EFF2F7;
  --bg:         #FFFFFF;
  --bg-2:       #F8FAFC;
  --bg-3:       #F1F5F9;

  /* Effects */
  --grad:        linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --grad-dark:   linear-gradient(135deg, #4338CA 0%, #0E7490 100%);
  --grad-soft:   linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(6,182,212,0.08) 100%);
  --grad-ink:    linear-gradient(160deg, #0F172A 0%, #1E293B 100%);

  --shadow-xs:  0 1px 3px rgba(15,23,42,0.06);
  --shadow-sm:  0 2px 10px rgba(15,23,42,0.07);
  --shadow-md:  0 10px 30px rgba(15,23,42,0.10);
  --shadow-lg:  0 24px 60px rgba(15,23,42,0.14);
  --shadow-brand: 0 12px 34px rgba(79,70,229,0.32);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --container: 1200px;
  --header-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: all 0.22s var(--ease);
}

/* ── Reset & base ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

a { text-decoration: none; color: inherit; transition: var(--t); }
img, svg { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: rgba(79,70,229,0.16); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-3); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; border: 2px solid var(--bg-3); }
::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }

:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 2px; border-radius: 4px; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.bg-soft  { background: var(--bg-2); }
.bg-pale  { background: var(--brand-pale); }
.bg-ink   { background: var(--grad-ink); color: #fff; }
.text-center { text-align: center; }

/* ── Typography helpers ──────────────────────────────────────────── */
.display { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 900; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.06; }
.lead { font-size: 1.075rem; color: var(--muted); line-height: 1.8; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.muted { color: var(--muted); }

/* Section header */
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 900; letter-spacing: -0.03em; }
.section-sub { font-size: 1.03rem; color: var(--muted); line-height: 1.75; margin-top: 14px; }

/* Eyebrow / label tag */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-pale);
  border: 1px solid var(--brand-border);
  padding: 7px 14px; border-radius: var(--r-full); margin-bottom: 18px;
}
.tag.cyan    { color: var(--accent-dark); background: var(--accent-pale); border-color: rgba(6,182,212,0.22); }
.tag.green   { color: #047857; background: var(--success-pale); border-color: rgba(16,185,129,0.22); }
.tag.amber   { color: #B45309; background: #FFFBEB; border-color: rgba(245,158,11,0.25); }
.tag.light   { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.92rem; line-height: 1;
  padding: 14px 26px; border-radius: var(--r-full);
  transition: var(--t); white-space: nowrap; cursor: pointer;
  border: 1.5px solid transparent;
}
.btn i { font-size: 0.85em; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(79,70,229,0.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand-border); }
.btn-outline:hover { background: var(--brand-pale); border-color: var(--brand); }
.btn-ghost { background: var(--bg-3); color: var(--ink); }
.btn-ghost:hover { background: var(--line); }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }
.btn-ghost-white { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ── Topbar ──────────────────────────────────────────────────────── */
.topbar { background: var(--ink); color: rgba(255,255,255,0.78); font-size: 0.8rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar a { color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 18px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { width: 26px; height: 26px; justify-content: center; border-radius: 6px; }
.topbar-right a:hover { background: rgba(255,255,255,0.12); }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

/* ── Header / Navbar ─────────────────────────────────────────────────
   CLAUDE.md scroll rules applied:
   - Fully opaque background (no rgba alpha, no backdrop-filter)
   - No transition on the header itself; states switch instantly
   - No transform/filter/perspective on header (keeps fixed drawer anchored to viewport)
   - z-index: header 50, overlay 70, header.menu-open 90 (set on <body>)        */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
body.menu-open .site-header { z-index: 90; }

.nav-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand-text { font-family: 'Plus Jakarta Sans'; font-size: 1.35rem; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.brand-text span { color: var(--brand); }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-2);
  padding: 10px 14px; border-radius: var(--r-sm);
}
.nav-link i.fa-chevron-down { font-size: 0.62rem; transition: transform 0.2s var(--ease); }
.nav-link:hover { color: var(--brand); background: var(--brand-pale); }
.nav-link.active { color: var(--brand); }
.nav-link.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px;
}

/* Dropdowns */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 270px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 60;
}
.nav-item.dd-hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega { min-width: 600px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; left: 50%; transform: translateX(-50%) translateY(8px); }
.nav-item.dd-hover > .mega { transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: var(--r-sm); color: var(--ink-2);
}
.dropdown a:hover { background: var(--bg-2); }
.dropdown a strong { font-size: 0.88rem; font-weight: 700; color: var(--ink); display: block; }
.dropdown a small { font-size: 0.76rem; color: var(--muted); }
.d-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-pale); color: var(--brand); font-size: 1rem;
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login { font-size: 0.9rem; font-weight: 600; color: var(--ink-2); padding: 8px 10px; }
.nav-login:hover { color: var(--brand); }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }

/* Overlay (dim behind mobile drawer) */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  z-index: 70;
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; }

/* ── Hero (home) ─────────────────────────────────────────────────── */
.hero { position: relative; background: var(--grad-ink); color: #fff; overflow: hidden; padding: 92px 0 100px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.6; pointer-events: none; }
.hero-bg::before { content:''; position:absolute; width:520px; height:520px; border-radius:50%; top:-180px; right:-120px; background: radial-gradient(circle, rgba(79,70,229,0.55), transparent 65%); }
.hero-bg::after  { content:''; position:absolute; width:480px; height:480px; border-radius:50%; bottom:-200px; left:-120px; background: radial-gradient(circle, rgba(6,182,212,0.45), transparent 65%); }
.hero-grid-pattern { position:absolute; inset:0; z-index:0; opacity:0.4; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); }
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.07; }
.hero .gradient-text { background: linear-gradient(135deg, #818cf8 0%, #22d3ee 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; line-height: 1.75; max-width: 600px; margin: 18px auto 0; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.hero-trust i { color: var(--accent-light); }

/* ── Page hero (inner pages) ─────────────────────────────────────── */
.page-hero { position: relative; background: var(--grad-ink); color: #fff; overflow: hidden; padding: 56px 0 60px; }
.page-hero .hero-bg, .page-hero .hero-grid-pattern { opacity: 0.45; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; margin: 10px 0 12px; }
.page-hero p { color: rgba(255,255,255,0.76); font-size: 1.04rem; line-height: 1.7; max-width: 620px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.page-hero .hero-trust { justify-content: flex-start; margin-top: 26px; }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; font-weight: 600; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.breadcrumb span[aria-current] { color: var(--accent-light); }
/* Light variant for breadcrumbs on white page heros */
.breadcrumb.dark a { color: var(--muted); }
.breadcrumb.dark a:hover { color: var(--brand); }
.breadcrumb.dark i { color: var(--muted-2); }
.breadcrumb.dark span[aria-current] { color: var(--brand); }

/* ── Domain search ───────────────────────────────────────────────── */
.domain-search { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 10px; display: flex; gap: 8px; max-width: 640px; margin: 30px auto 0; }
.domain-search .di-wrap { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 16px; }
.domain-search .di-wrap i { color: var(--muted-2); }
.domain-search input { flex: 1; border: none; outline: none; padding: 16px 0; font-size: 1rem; color: var(--ink); background: transparent; }
.domain-search input::placeholder { color: var(--muted-2); }
.domain-search button { flex-shrink: 0; }
.domain-search.compact { box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.domain-tlds { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 18px; font-size: 0.84rem; }
.domain-tlds span { color: rgba(255,255,255,0.8); font-weight: 600; }
.domain-tlds b { color: var(--accent-light); }
/* result area */
.domain-result { max-width: 640px; margin: 16px auto 0; }
.domain-result-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-md); padding: 16px 20px; display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:10px; box-shadow: var(--shadow-xs); }
.domain-result-card .dr-name { font-weight: 800; color: var(--ink); }
.domain-result-card .dr-status { font-size:0.8rem; font-weight:700; }
.domain-result-card.avail .dr-status { color: var(--success); }
.domain-result-card.taken .dr-status { color: var(--danger); }
.domain-result-card .dr-price { font-weight: 800; color: var(--brand); }

/* ── Pricing cards ───────────────────────────────────────────────── */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 40px; }
.pt-label { font-size: 0.9rem; font-weight: 700; color: var(--muted); transition: var(--t); }
.pt-label.active { color: var(--ink); }
.pt-save { font-size: 0.7rem; font-weight: 700; color: var(--success); background: var(--success-pale); padding: 3px 9px; border-radius: var(--r-full); margin-left: 4px; }
.switch { position: relative; width: 52px; height: 28px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--line); border-radius: 99px; transition: var(--t); }
.switch .slider::before { content: ''; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-xs); transition: var(--t); }
.switch input:checked + .slider { background: var(--grad); }
.switch input:checked + .slider::before { transform: translateX(24px); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column;
  transition: var(--t);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-border); }
.price-card.popular { border: 2px solid var(--brand); box-shadow: var(--shadow-md); }
.popular-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--grad); color: #fff; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-full);
  box-shadow: var(--shadow-brand);
}
.pc-name { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.pc-tag { font-size: 0.84rem; color: var(--muted); margin-top: 3px; }
.pc-price { display: flex; align-items: baseline; gap: 2px; margin: 18px 0 4px; }
.pc-price .curr { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.pc-price .amt { font-size: 2.9rem; font-weight: 900; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.pc-price .per { font-size: 0.9rem; color: var(--muted); margin-left: 3px; }
.pc-old { font-size: 0.85rem; color: var(--muted-2); }
.pc-old s { color: var(--muted-2); }
.pc-old b { color: var(--success); font-weight: 700; }
.pc-renew { font-size: 0.74rem; color: var(--muted-2); margin-top: 4px; }
.pc-features { margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--ink-3); }
.pc-features li i { color: var(--success); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.pc-cta { margin-top: auto; }

/* ── Feature grid ────────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; transition: var(--t);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-border); }
.feature-card .fc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.feature-card.center { text-align: center; }
.feature-card.center .fc-icon { margin-left: auto; margin-right: auto; }

/* Small inline feature row (with checks) */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.95rem; color: var(--ink-3); }
.check-list li i { color: var(--success); margin-top: 3px; flex-shrink: 0; }
.check-list.two { grid-template-columns: 1fr 1fr; }

/* ── Split / media section ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-media { position: relative; aspect-ratio: 16 / 11; }

/* ── Stat band ───────────────────────────────────────────────────── */
.stat-band { background: var(--grad); }
.stat-band .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-band .stat { padding: 30px 20px; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.16); }
.stat-band .stat:last-child { border-right: none; }
.stat-band .stat .num { font-size: 2.1rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.stat-band .stat .lbl { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.82); margin-top: 6px; }

/* Light stat row (on white) */
.stat-row-light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-row-light .stat { text-align: center; }
.stat-row-light .num { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-row-light .lbl { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* ── Steps / how it works ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 0 10px; }
.step .step-num { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; background: var(--brand-pale); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; }
.step h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 7px; }
.step p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 28px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: var(--line); }

/* ── Comparison table ────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
table.compare { width: 100%; border-collapse: collapse; min-width: 680px; background: #fff; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
table.compare thead th { background: var(--bg-2); font-weight: 800; color: var(--ink); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
table.compare td:not(:first-child), table.compare th:not(:first-child) { text-align: center; }
table.compare tbody tr:hover { background: var(--bg-2); }
table.compare td .yes { color: var(--success); }
table.compare td .no { color: var(--muted-2); }
table.compare .col-pop { background: var(--brand-pale); }

/* ── TLD pricing table ───────────────────────────────────────────── */
.tld-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tld-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; text-align: center; transition: var(--t); position: relative; }
.tld-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-border); }
.tld-card .tld { font-size: 1.6rem; font-weight: 900; color: var(--brand); letter-spacing: -0.02em; }
.tld-card .tld-price { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-top: 8px; }
.tld-card .tld-price small { font-size: 0.74rem; color: var(--muted); font-weight: 500; }
.tld-card .tld-renew { font-size: 0.72rem; color: var(--muted-2); margin-top: 2px; }
.tld-badge { position: absolute; top: 10px; right: 10px; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; background: var(--accent); padding: 3px 8px; border-radius: var(--r-full); }

/* ── Testimonials ────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: var(--t); }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: var(--warning); margin-bottom: 12px; font-size: 0.85rem; }
.testi-card p { font-size: 0.92rem; color: var(--ink-3); line-height: 1.75; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testi-who .tn { font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.testi-who .tr { font-size: 0.78rem; color: var(--muted); }

/* ── Logo / trust strip ──────────────────────────────────────────── */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.72; }
.logo-strip span { font-size: 1.35rem; font-weight: 800; color: var(--muted-2); letter-spacing: -0.02em; }

/* ── FAQ accordion ───────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: border-color 0.2s var(--ease); }
.faq-item.open { border-color: var(--brand-border); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-size: 0.98rem; font-weight: 700; color: var(--ink); text-align: left; }
.faq-q i { flex-shrink: 0; color: var(--brand); transition: transform 0.25s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ── Locations / map ─────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.loc-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 12px; text-align: center; transition: var(--t); }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--brand-border); }
.loc-card .loc-flag { font-size: 1.6rem; color: var(--brand); margin-bottom: 8px; }
.loc-card .loc-country { font-weight: 800; font-size: 0.9rem; }
.loc-card .loc-city { font-size: 0.78rem; color: var(--muted); }

/* ── CTA section ─────────────────────────────────────────────────── */
.cta { position: relative; background: var(--grad); overflow: hidden; padding: 72px 0; }
.cta-pattern { position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px); background-size: 22px 22px; }
.cta-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 65%); top: -200px; right: -120px; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 900; }
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin: 14px auto 0; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── Forms ───────────────────────────────────────────────────────── */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-2); color: var(--ink); transition: var(--t); font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.lf-msg { font-size: 0.85rem; font-weight: 600; text-align: center; margin-top: 10px; }

/* Info cards (contact) */
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); transition: var(--t); }
.info-card:hover { box-shadow: var(--shadow-sm); border-color: var(--brand-border); }
.info-card .ic-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-pale); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.info-card .ic-label { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.info-card .ic-value { font-weight: 800; color: var(--ink); font-size: 0.98rem; }

/* ── Prose (legal/content pages) ─────────────────────────────────── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.prose p { color: var(--ink-3); line-height: 1.85; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-3); line-height: 1.7; }
.prose ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--brand); font-size: 0.8rem; }
.prose a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.prose .updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--grad-ink); color: rgba(255,255,255,0.66); }
.footer-main { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: var(--accent-light); }
.footer-tagline { font-size: 0.9rem; line-height: 1.75; margin: 16px 0 18px; max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 0.88rem; display: inline-flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.66); }
.footer-contact a i { color: var(--accent-light); margin-top: 4px; width: 16px; }
.footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); }
.footer-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-col-title { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.66); }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-pay { display: flex; gap: 12px; font-size: 1.5rem; color: rgba(255,255,255,0.5); }
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-badge { font-size: 0.76rem; display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); }
.footer-badge i { color: var(--success); }

/* ── Back to top ─────────────────────────────────────────────────── */
.btt { position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--t); z-index: 40; }
.btt.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt:hover { transform: translateY(-3px); }

/* ── Floating WhatsApp ───────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 26px; left: 26px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-md); z-index: 40; transition: var(--t); }
.wa-float:hover { transform: scale(1.08); }

/* ── AOS fallback (in case CDN fails, content still visible) ──────── */
[data-aos]:not(.aos-animate) { opacity: 1; }

/* ── Utilities ───────────────────────────────────────────────────── */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hide-mobile { } .show-mobile { display: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .price-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tld-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  /* Mobile drawer */
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: 0;
    width: min(360px, 86vw); height: 100vh; height: 100dvh;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 84px 0 30px; margin: 0;
    transform: translateX(100%); transition: transform 0.32s var(--ease);
    overflow-y: auto; box-shadow: -10px 0 40px rgba(15,23,42,0.18);
    z-index: 80;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: 15px 26px; border-radius: 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--brand-pale); }
  .nav-link i.fa-chevron-down { transition: transform 0.25s var(--ease); }
  .nav-item.dd-open > .nav-link i.fa-chevron-down { transform: rotate(180deg); }
  /* Mobile dropdown — collapsible */
  .dropdown, .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; min-width: 0; width: 100%;
    padding: 0; display: none; background: var(--bg-2);
    grid-template-columns: 1fr;
  }
  .nav-item.dd-open > .dropdown, .nav-item.dd-open > .mega { display: block; }
  .dropdown a { padding: 13px 26px 13px 36px; border-radius: 0; }
  .d-icon { width: 30px; height: 30px; font-size: 0.85rem; }
  /* Mobile menu actions inside drawer */
  .nav-mob-cta { display: flex; flex-direction: column; gap: 10px; padding: 22px 26px; margin-top: auto; }
  .nav-mob-cta .btn { width: 100%; }

  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .step:not(:last-child)::after { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (min-width: 993px) {
  .nav-mob-cta { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .price-grid, .price-grid.cols-4 { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .feature-grid, .feature-grid.cols-3, .feature-grid.cols-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .check-list.two { grid-template-columns: 1fr; }
  .stat-band .stat-row, .stat-row-light { grid-template-columns: 1fr 1fr; }
  .stat-band .stat:nth-child(2) { border-right: none; }
  .stat-band .stat { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .tld-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .domain-search { flex-direction: column; }
  .domain-search button { width: 100%; }
  .topbar-left a:not(:first-child), .topbar-divider { display: none; }
  .hero { padding: 64px 0 70px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tld-grid, .loc-grid { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
