/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* =========================================================
   CSS CUSTOM PROPERTIES
========================================================= */
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-lighter: #dbeafe;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #d1fae5;
  --bg: #ffffff;
  --bg-soft: #f0f4ff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-soft: #1e293b;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Container strategy */
  --container-max: 1200px;
  --container-px: clamp(1rem, 4vw, 3rem);

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  --radius-card: 16px;
  --radius-btn:  10px;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font: var(--font-body);
  --transition: 0.2s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 16px 48px rgba(30,64,175,0.16);
  --shadow-img: 0 24px 64px rgba(0,0,0,0.14);
}

/* Container grows on wider screens */
@media (min-width: 1440px) { :root { --container-max: 1280px; } }
@media (min-width: 1920px) { :root { --container-max: 1440px; } }

html.dark {
  --primary: #3b82f6;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --bg: #0f172a;
  --bg-soft: #1e293b;
  --bg-alt: #1a2332;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 16px 48px rgba(59,130,246,0.28);
  --shadow-img: 0 24px 64px rgba(0,0,0,0.4);
}

/* =========================================================
   GLOBAL
========================================================= */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.3vw + 0.8rem, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Typography — all headings use clamp() */
h1 {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1rem, 0.5vw + 0.8rem, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
}
p { line-height: 1.65; }
.meta { font-size: 0.875rem; color: var(--text-muted); }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,64,175,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 12px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow .arrow { font-size: 1.1em; }

/* Section spacing */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */
#announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}
#announcement-bar a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
#announcement-bar a:hover { color: #fff; }
#announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
}
#announcement-close:hover { color: #fff; }

/* =========================================================
   NAVIGATION
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
html.dark .nav { background: rgba(15,23,42,0.92); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-md);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.dark-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
  line-height: 1;
}
.dark-toggle:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-soft); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.2rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px var(--space-md) var(--space-xl);
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  background: linear-gradient(150deg, #f0f4ff 0%, #dbeafe 50%, #f0fdf4 100%);
  padding: 96px 0;
  overflow: hidden;
}
html.dark .hero {
  background: linear-gradient(150deg, #0f172a 0%, #1e293b 50%, #0a1628 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,64,175,0.1);
  border: 1px solid rgba(30,64,175,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.hero h1 { margin-bottom: var(--space-md); color: var(--text); }
.hero-subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}
.domain-search {
  display: flex;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
  max-width: 480px;
  margin-bottom: var(--space-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
html.dark .domain-search {
  background: #1e293b;
  border-color: #334155;
}
.domain-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,64,175,0.12);
}
.domain-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  min-width: 0;
}
.domain-search input::placeholder { color: var(--text-muted); }
.domain-search .btn-primary { border-radius: 100px; margin: 4px; padding: 10px 22px; font-size: 0.9rem; }
.hero-trust {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-bottom: var(--space-lg);
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }
.hero-trust .check { color: #22c55e; font-weight: 700; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-img);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s ease;
  object-fit: cover;
}
.hero-image-wrap:hover img { transform: perspective(1000px) rotateY(0deg); }
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-float-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}
.hero-float-badge .badge-text { color: var(--text); line-height: 1.3; }
.hero-float-badge .badge-text small { display: block; color: var(--text-muted); font-weight: 400; font-size: 0.75rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(150deg, #f0f4ff 0%, #dbeafe 50%, #f0fdf4 100%);
  padding: 70px 0 60px;
  text-align: center;
}
html.dark .page-hero {
  background: linear-gradient(150deg, #0f172a 0%, #1e293b 50%, #0a1628 100%);
}
.page-hero .eyebrow { margin-bottom: var(--space-sm); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-md); }
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto var(--space-lg); }
.page-hero .hero-ctas { justify-content: center; }

/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item .ti-icon { font-size: 1rem; }

/* =========================================================
   HOW IT WORKS
========================================================= */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  opacity: 0.3;
}
.step-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-card h3 { margin-bottom: var(--space-xs); color: var(--text); }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }
.step-duration {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: var(--space-sm);
}

/* How It Works — image cards */
.step-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,64,175,0.15);
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.step-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-number-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(30,64,175,0.4);
  z-index: 2;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
  padding: 96px 0;
  background: var(--bg-alt);
}
html.dark .testimonials { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary-light);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================================
   FEATURE SECTIONS
========================================================= */
.feature-section {
  padding: 96px 0;
  background: var(--bg);
}
.feature-section.alt { background: var(--bg-soft); }
html.dark .feature-section { background: var(--bg); }
html.dark .feature-section.alt { background: var(--bg-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.feature-section.alt .feature-grid { direction: rtl; }
.feature-section.alt .feature-grid > * { direction: ltr; }
.feature-text h2 { margin-bottom: var(--space-md); color: var(--text); }
.feature-text p { color: var(--text-muted); margin-bottom: var(--space-lg); font-size: 1.05rem; }
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-bullets li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-image-wrap { position: relative; }
.feature-image-wrap img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-img);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-image-wrap:hover img {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.feature-image-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(30,64,175,0.3);
}

/* =========================================================
   STATS BAR
========================================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-xl) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: var(--space-lg);
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label { font-size: 0.875rem; opacity: 0.8; }

/* =========================================================
   PRICING
========================================================= */
.pricing {
  padding: 90px 0;
  background: var(--bg-soft);
}
html.dark .pricing { background: var(--bg-soft); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.toggle-label.active { color: var(--text); font-weight: 600; }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch input:checked + .toggle-track { background: var(--primary); }
.toggle-track::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-track::before { transform: translateX(24px); }
.toggle-save {
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
html.dark .toggle-save { background: #14532d; color: #86efac; }

/* Pricing grid: 1 col default, 2 col ≥640px, 4 col ≥1024px */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-card);
  transform: translateY(-4px) scale(1.03);
}
.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-card-hover);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.plan-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--text); align-self: flex-start; margin-top: 6px; }
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--text-muted); }
.price-annual {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-md) 0;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.plan-features li .feat-check { color: var(--primary); font-weight: 700; flex-shrink: 0; }
.plan-features li .feat-x { color: var(--text-muted); flex-shrink: 0; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  width: 100%;
}
.plan-cta.solid { background: var(--primary); color: #fff; }
.plan-cta.solid:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(30,64,175,0.3);
  transform: translateY(-1px);
}
.plan-cta.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.plan-cta.outline:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.price-monthly { display: flex; }
.price-annual-val { display: none; }
.pricing-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================================
   COMPARISON TABLE
========================================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.85rem;
}
.comparison-table thead th:first-child { border-radius: 8px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 8px 0 0; }
.comparison-table td { color: var(--text); }
.comparison-table tr:hover td { background: var(--bg-soft); }
.comparison-table .check-yes { color: #22c55e; font-weight: 700; }
.comparison-table .check-no { color: #ef4444; }
.comparison-table .soelem-col { color: var(--primary); font-weight: 600; }
.comparison-table .highlight-row td { background: rgba(30,64,175,0.04); }

/* =========================================================
   FAQ
========================================================= */
.faq {
  padding: 96px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-md) var(--space-lg) var(--space-md) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================
   TRUST BADGES ROW
========================================================= */
.trust-badges-row {
  padding: var(--space-lg) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: default;
}
.trust-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(30,64,175,0.1);
}
.tb-icon { font-size: 1rem; line-height: 1; }

/* =========================================================
   TEAM STRIP
========================================================= */
.team-strip {
  padding: 96px 0;
  background: var(--bg);
}
html.dark .team-strip { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.team-text h2 { margin-bottom: var(--space-md); color: var(--text); }
.team-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; }
.team-image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-img);
}
.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.team-image-wrap:hover img { transform: scale(1.03); }

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.final-cta-overlay {
  background: rgba(10,5,20,0.82);
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}
.final-cta-overlay h2 {
  color: #f1f5f9;
  margin-bottom: var(--space-md);
}
.final-cta-overlay p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}
.final-cta-overlay .btn-primary { font-size: 1.05rem; padding: 18px 36px; }
.final-cta-note {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: #475569;
}

/* =========================================================
   FOOTER — 1 col → 2 col @640 → 5 col @1024
========================================================= */
.footer {
  background: #020617;
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid #1e293b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.footer-brand .logo { color: #f1f5f9; margin-bottom: var(--space-md); }
.footer-brand p { color: #64748b; font-size: 0.875rem; max-width: 280px; line-height: 1.65; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: var(--space-md);
}
.social-link {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1f5f9;
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #f1f5f9; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid #1e293b;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-bottom p { font-size: 0.8rem; color: #475569; }
.footer-legal { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.8rem;
  color: #475569;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: #94a3b8; }

/* =========================================================
   CARDS GRID (general — feature cards)
========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}
.card h3 { margin-bottom: var(--space-xs); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================================
   BLOG CARDS
========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-md);
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.blog-card-top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.blog-category {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
}
.blog-date { color: var(--text-muted); }
.blog-card h3 { margin-bottom: 8px; font-size: 1.05rem; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.875rem; flex: 1; margin-bottom: var(--space-md); }
.blog-card .link-arrow { margin-top: auto; }

/* =========================================================
   CONTACT & FORMS
========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.form-group { margin-bottom: var(--space-md); }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,64,175,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.875rem; margin-bottom: 4px; }
.contact-info-card a, .contact-info-card p { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; }
.contact-info-card a:hover { color: var(--primary); }

/* =========================================================
   LEGAL / CONTENT PAGES
========================================================= */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}
.legal-content h2 { font-size: 1.5rem; margin: var(--space-lg) 0 var(--space-sm); color: var(--text); }
.legal-content h3 { font-size: 1.1rem; margin: var(--space-md) 0 var(--space-xs); color: var(--text); }
.legal-content p { color: var(--text-muted); margin-bottom: var(--space-sm); }
.legal-content ul { color: var(--text-muted); padding-left: var(--space-md); margin-bottom: var(--space-sm); }
.legal-content ul li { margin-bottom: 6px; }
.legal-last-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--primary);
}

/* =========================================================
   DOMAIN SEARCH
========================================================= */
.domain-search-hero {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: var(--space-lg);
  max-width: 640px;
  margin: 0 auto;
}
.domain-search-hero form {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-md);
}
.domain-search-hero input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.domain-search-hero input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,64,175,0.1);
}
.tld-results { display: flex; flex-direction: column; gap: 8px; }
.tld-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  gap: 12px;
}
.tld-row .tld-name { font-weight: 700; font-size: 1rem; }
.tld-row .tld-price { color: var(--text-muted); font-size: 0.9rem; }
.tld-row .tld-status-available { color: #22c55e; font-weight: 600; font-size: 0.875rem; }
.tld-row .tld-status-taken { color: #ef4444; font-size: 0.875rem; }
.tld-row .tld-cta { flex-shrink: 0; }

/* =========================================================
   SECTION GENERAL UTILITIES
========================================================= */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-alt { background: var(--bg-alt); }

/* =========================================================
   REVEAL ANIMATION (js-loaded)
========================================================= */
body.js-loaded .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
body.js-loaded .reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   REAL RESULTS (legacy — kept for other possible use)
========================================================= */
.results-section { background: var(--bg-alt); padding: 80px 0; }
.results-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  margin: 40px 0;
}
.results-image-wrap img { width: 100%; display: block; }
.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-stat {
  text-align: center;
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
}
.result-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.result-stat .stat-label { font-size: 0.9rem; color: var(--text-muted); }

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */

/* ── 1280px — constrain inner elements ─────────────────── */
@media (max-width: 1280px) {
  .feature-grid { gap: var(--space-xl); }
}

/* ── 1024px — laptop ────────────────────────────────────── */
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: translateY(0) scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px) scale(1); }
}

/* ── 640px — force 2-col pricing ───────────────────────── */
@media (min-width: 640px) and (max-width: 1023px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px — tablet ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav: hide desktop links, show hamburger */
  .nav-links, .nav-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: block; }

  /* Hero: single column */
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-xl); }
  .hero-subhead { margin: 0 auto var(--space-lg); }
  .domain-search { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-float-badge { left: 10px; bottom: -10px; }
  .hero { padding: 64px 0; }

  /* Trust strip */
  .trust-strip-inner { gap: var(--space-md); }

  /* How it works */
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .steps-grid::before { display: none; }

  /* Feature sections */
  .feature-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .feature-section.alt .feature-grid { direction: ltr; }
  .feature-image-wrap { order: -1; }

  /* Stats bar */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing single col */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }

  /* Team strip */
  .team-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .team-text p { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Domain search form */
  .domain-search-hero form { flex-direction: column; }

  /* Results stats */
  .results-stats { grid-template-columns: 1fr; }
}

/* ── 640px — phablet ────────────────────────────────────── */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 480px — large phone ────────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; padding: 0 var(--space-md); }
  .trust-badges-inner { gap: 8px; }
  .trust-badge { font-size: 0.8rem; padding: 7px 14px; }
  .hero-float-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CRO IMPROVEMENTS — April 2026
========================================================= */

/* 1. Hero social proof */
.hero-social-proof {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0.8;
}

/* 2. Price lock banner */
.price-lock-banner {
  background: linear-gradient(135deg, rgba(30,64,175,0.08), rgba(16,185,129,0.08));
  border: 1px solid rgba(30,64,175,0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}
.price-lock-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-lock-inner svg {
  color: var(--primary);
  flex-shrink: 0;
}
.price-lock-inner strong {
  font-size: 0.95rem;
  display: block;
}
.price-lock-inner span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* 3. Mobile sticky CTA bar */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }
  .mobile-sticky-cta .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
  }
}

/* 4. Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 60px;
  }
}
.cookie-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* 5. Trustpilot external link */
.trust-external {
  text-align: center;
  margin-top: 40px;
}
.trust-external p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.trustpilot-link {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}
.trustpilot-link:hover {
  background: rgba(30,64,175,0.05);
  border-color: var(--primary);
}
