
/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --c-bg:          #F4F8FF;
  --c-white:       #FFFFFF;
  --c-navy:        #0F2557;
  --c-blue:        #2563EB;
  --c-blue-mid:    #3B82F6;
  --c-blue-light:  #DBEAFE;
  --c-blue-pale:   #EFF6FF;
  --c-slate:       #0D1B3E;
  --c-dark:        #080F24;
  --c-muted:       #64748B;
  --c-border:      #E2EAF8;
  --c-success:     #10B981;
  --c-warning:     #F59E0B;
  --c-danger:      #EF4444;
  --c-text:        #1E293B;

  --grad-hero:     linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 40%, #BFDBFE 100%);
  --grad-dark:     linear-gradient(135deg, #0F2557 0%, #1A3A8F 60%, #1E40AF 100%);
  --grad-accent:   linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  --grad-card:     linear-gradient(145deg, #FFFFFF 0%, #F0F6FF 100%);

  --shadow-sm:     0 1px 3px rgba(37,99,235,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(37,99,235,0.12), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 40px rgba(37,99,235,0.16), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-blue:   0 8px 32px rgba(37,99,235,0.28);

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --font-head:     'Inter', sans-serif;
  --font-body:     'Inter', sans-serif;

  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-navy);
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  background: var(--c-blue-pale);
  border: 1px solid var(--c-blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow.dark {
  color: #93C5FD;
  background: rgba(147,197,253,0.12);
  border-color: rgba(147,197,253,0.2);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title .highlight {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 17px;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.38);
  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-blue);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--c-blue);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--c-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 24px rgba(37,99,235,0.1);
}

.nav-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand .brand-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.nav-brand span { color: var(--c-blue); }

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--c-text);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link-custom:hover, .nav-link-custom:focus {
  color: var(--c-blue);
  background: var(--c-blue-pale);
}

.nav-cta {
  background: var(--grad-accent);
  color: #fff !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  box-shadow: var(--shadow-blue);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  background: var(--grad-accent) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  background: var(--grad-hero);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--c-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-navy);
  margin-bottom: 20px;
}
.hero-title .grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Domain Search Bar */
.domain-search-wrapper {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 20px;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  max-width: 580px;
}
.domain-search-wrapper:focus-within {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1), var(--shadow-lg);
}
.domain-search-wrapper .search-icon {
  color: var(--c-muted);
  font-size: 18px;
  flex-shrink: 0;
}
.domain-search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
  background: transparent;
}
.domain-search-wrapper input::placeholder { color: #94A3B8; font-weight: 400; }
.domain-search-wrapper .btn-search {
  background: var(--grad-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.domain-search-wrapper .btn-search:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(37,99,235,0.4); }

.domain-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  max-width: 580px;
}
.domain-suggestions span {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
}
.tld-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tld-chip:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

/* Search result card */
.search-result-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 16px;
  max-width: 580px;
  display: none;
  animation: slideUp 0.3s ease;
}
.search-result-card.show { display: block; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
}
.result-item:last-child { border-bottom: none; padding-bottom: 0; }
.result-domain { font-weight: 600; color: var(--c-navy); }
.result-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-available { background: #D1FAE5; color: #065F46; }
.badge-taken     { background: #FEE2E2; color: #991B1B; }
.result-price    { font-weight: 700; color: var(--c-blue); font-size: 14px; }

/* Hero Visual / Floating Card */
.hero-visual {
  position: relative;
}
.hero-dashboard {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--c-border);
  position: relative;
  z-index: 1;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dash-url-bar {
  flex: 1;
  background: var(--c-bg);
  border-radius: 8px;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  color: var(--c-muted);
  gap: 6px;
}
.dash-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--c-blue-pale);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.dash-stat .num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-blue);
  display: block;
}
.dash-stat .label {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 500;
}
.dash-domain-list .dl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 13px;
}
.dl-name { font-weight: 600; color: var(--c-navy); }
.dl-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}
.dl-active  { background: #D1FAE5; color: #065F46; }
.dl-expiring { background: #FEF3C7; color: #92400E; }
.dl-pending  { background: #E0E7FF; color: #3730A3; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.float-badge.b1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-badge.b2 { bottom: 20px; left: -30px; animation-delay: 1s; }
.float-badge .fi { font-size: 20px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust strip */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.stat-item .val {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-navy);
  display: block;
  line-height: 1;
}
.stat-item .desc {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
}

/* ── BRANDS STRIP ────────────────────────────────────────── */
#brands {
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}
.brand-label {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 500;
  white-space: nowrap;
}
.brands-scroll {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.brand-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #94A3B8;
  white-space: nowrap;
  transition: var(--transition);
}
.brand-logo:hover { color: var(--c-blue); }

/* ── ABOUT ───────────────────────────────────────────────── */
#about { background: var(--c-white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-bg {
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  background-size: cover !important;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-graphic {
  width: 100%;
  max-width: 380px;
}
.about-feature-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}
.about-feature-badge.ab1 { bottom: 32px; left: 32px; }
.about-feature-badge .ab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.about-check-list { list-style: none; padding: 0; margin: 0; }
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list .check-icon {
  width: 22px;
  height: 22px;
  background: var(--c-blue-pale);
  border-radius: 6px;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── SERVICES ────────────────────────────────────────────── */
#services { background: var(--c-bg); }

.service-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-blue-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.si-blue    { background: #EFF6FF; color: var(--c-blue); }
.si-purple  { background: #F5F3FF; color: #7C3AED; }
.si-green   { background: #ECFDF5; color: #059669; }
.si-orange  { background: #FFF7ED; color: #EA580C; }
.si-pink    { background: #FDF2F8; color: #DB2777; }
.si-teal    { background: #F0FDFA; color: #0D9488; }

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ── PRICING ─────────────────────────────────────────────── */
#pricing {
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-bg) 100%);
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.pricing-toggle-wrap span {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-muted);
}
.pricing-toggle-wrap span.active { color: var(--c-navy); }
.pricing-badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--c-blue-light);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  left: 3px; bottom: 3px;
  background: var(--c-blue);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--c-blue); }
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background: #fff;
}

.pricing-card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  background: var(--grad-dark);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}

.pricing-plan {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-plan { color: #93C5FD; }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}
.pricing-card.featured .price-amount { color: #fff; }
.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.pricing-card.featured .price-currency { color: rgba(255,255,255,0.7); }
.price-period {
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.pricing-card.featured .price-period { color: rgba(255,255,255,0.6); }
.pricing-desc {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.12);
}

.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--c-text);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features .feat-check {
  color: var(--c-success);
  font-size: 16px;
  flex-shrink: 0;
}
.pricing-features .feat-x {
  color: var(--c-muted);
  font-size: 16px;
  flex-shrink: 0;
}

.btn-pricing {
  width: 100%;
  padding: 13px;
  display: block;
    text-align: center;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--c-blue);
  background: transparent;
  color: var(--c-blue);
  cursor: pointer;
  transition: var(--transition);
}
.btn-pricing:hover { background: var(--c-blue); color: #fff; }
.btn-pricing-featured {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  background: var(--grad-accent);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
}
.btn-pricing-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.6); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works {
  background: var(--c-navy);
  background-image: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
#how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.how-step-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.how-step-wrap::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(59,130,246,0.6) 0%, rgba(59,130,246,0.1) 100%);
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.2);
  border: 1.5px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #93C5FD;
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}
.how-step:hover .step-num {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.step-content {}
.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.how-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.how-domain-check {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.hdc-name { color: #fff; font-weight: 600; }
.hdc-price { color: #93C5FD; font-weight: 700; }
.hdc-btn {
  background: var(--grad-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.hdc-btn:hover { transform: scale(1.05); }

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--c-white); }

.faq-item {
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--c-blue-light); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--c-blue); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  background: #fff;
  transition: var(--transition);
}
.faq-question:hover { background: var(--c-blue-pale); }
.faq-item.open .faq-question { background: var(--c-blue-pale); }
.faq-q-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-navy);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--c-blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
      padding: 20px;
    font-size: 15px;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ── SUPPORT CTA ─────────────────────────────────────────── */
#support-cta {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
#support-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(37,99,235,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(59,130,246,0.08) 100%);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  text-align: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.support-channels {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  transition: var(--transition);
  cursor: pointer;
}
.channel-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}
.ch-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #93C5FD;
  flex-shrink: 0;
}
.ch-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ch-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}

.footer-brand-text {
  font-family: var(--font-head);
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-newsletter-input {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.footer-newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
}
.footer-newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-input button {
  background: var(--grad-accent);
  border: none;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-newsletter-input button:hover { opacity: 0.9; }

.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-blue  { color: var(--c-blue) !important; }
.text-navy  { color: var(--c-navy) !important; }
.text-white { color: #fff !important; }
.text-muted-custom { color: var(--c-muted) !important; }
.bg-blue-pale { background: var(--c-blue-pale) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 72px 0; }
  #hero { padding: 130px 0 72px; }
  .hero-visual { margin-top: 48px; }
  .float-badge.b1, .float-badge.b2 { display: none; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  #hero { padding: 110px 0 56px; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-item .val { font-size: 22px; }
  .domain-search-wrapper { flex-direction: column; align-items: stretch; padding: 12px; gap: 8px; }
  .domain-search-wrapper .btn-search { justify-content: center; }
  .how-step-wrap::before { display: none; }
  .cta-card { padding: 40px 24px; }
  .support-channels { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-badge { animation: none; }
  .hero-eyebrow .dot { animation: none; }
}
