/* â”€â”€â”€ CSS Custom Properties â”€â”€â”€ */
:root {
  --blue-900: #0F1F45;
  --blue-800: #1A3268;
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;

  --green-500: #22C55E;
  --green-600: #16A34A;

  --gray-900: #0F172A;
  --gray-800: #1E293B;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-400: #94A3B8;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50:  #F8FAFC;

  --white: #FFFFFF;

  --font-display: 'DM Sans', sans-serif;
  --font-body:    "DM Sans", sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(15,31,69,.06), 0 1px 2px rgba(15,31,69,.04);
  --shadow-md:  0 4px 20px rgba(15,31,69,.10);
  --shadow-lg:  0 12px 40px rgba(15,31,69,.14);
  --shadow-xl:  0 24px 64px rgba(15,31,69,.18);

  --transition: .3s cubic-bezier(.25,.8,.25,1);
}

/* â”€â”€â”€ Base Reset â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* â”€â”€â”€ Section Spacing â”€â”€â”€ */
.section-pad { padding: 96px 0; }

.mb-section { margin-bottom: 60px; }

/* â”€â”€â”€ Backgrounds â”€â”€â”€ */
.bg-light-alt { background: var(--gray-50); }

.bg-dark-blue {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}
.bg-dark-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37,99,235,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59,130,246,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* â”€â”€â”€ Typography â”€â”€â”€ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-eyebrow.light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--blue-400);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-body {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0;
}

.section-sub-body {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
}

.text-gradient {
  background: linear-gradient(120deg, var(--blue-600) 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(120deg, var(--blue-400) 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white-60 { color: rgba(255,255,255,.62) !important; }

/* â”€â”€â”€ Buttons â”€â”€â”€ */
.btn-primary-blue {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .01em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-primary-blue:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200, #BFDBFE);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline-blue:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-500);
}

.btn-white-on-blue {
  background: var(--white);
  color: var(--blue-700);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white-on-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: var(--blue-800);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn-cta-green {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(34,197,94,.35);
}
.btn-cta-green:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.45);
}

/* â”€â”€â”€ Navbar â”€â”€â”€ */
#mainNav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: var(--transition);
  z-index: 1000;
  padding: 14px 0;
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue-600) 0%, #7C3AED 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 17px;
}
.brand-accent { color: var(--blue-600); }

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 8px 17px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--blue-600) !important;
  background: var(--blue-50);
}

.btn-nav-ghost {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 20px;
  transition: var(--transition);
}
.btn-nav-ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }

.btn-nav-primary {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  transition: var(--transition);
}
.btn-nav-primary:hover { color: var(--white); opacity: .9; }

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 6px;
  background: transparent;
  display: flex; flex-direction: column; gap: 5px;
}
.toggler-bar {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 4px;
  transition: var(--transition);
}
.navbar-toggler:focus { box-shadow: none; }

/* â”€â”€â”€ Hero â”€â”€â”€ */
.hero-section {
  background: linear-gradient(160deg, #F0F7FF 0%, #FFFFFF 55%, #F5F3FF 100%);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #DBEAFE 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #EDE9FE 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.min-vh-hero { min-height: calc(100vh - 68px); padding: 150px 0 40px; }

/* Hero Content */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: linear-gradient(to right, #EFF6FF, #EDE9FE);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,.5); }
  50% { box-shadow: 0 0 0 5px rgba(59,130,246,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.headline-gradient {
  background: linear-gradient(120deg, var(--blue-600) 0%, #7C3AED 50%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Domain Search Bar */
.domain-search-bar {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.domain-search-bar:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12), var(--shadow-lg);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}
.search-icon { color: var(--gray-400); font-size: 17px; flex-shrink: 0; }

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  background: transparent;
}
.search-input::placeholder { color: var(--gray-400); }

.tld-select-wrap {
  border-left: 1px solid var(--gray-200);
  padding-left: 12px;
}
.tld-select {
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-700);
  background: transparent;
  cursor: pointer;
  padding: 4px 6px;
}

.btn-search {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  align-items: center;
  border: none;
  border-radius: 0;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-search:hover { color: var(--white); opacity: .92; }

/* Search Result */
.search-result {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  min-height: 24px;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 0;
  transition: var(--transition);
}
.search-result.available {
  color: var(--green-600);
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.search-result.taken {
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.search-result.loading { color: var(--gray-600); padding: 10px 16px; }

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -8px;
  object-fit: cover;
}
.trust-text { font-size: 13.5px; color: var(--gray-600); }
.trust-stars { color: #F59E0B; font-size: 13px; letter-spacing: .05em; }

/* Hero Visual / Card Stack */
.hero-visual { padding-left: 32px; position: relative; }
.hero-card-stack { position: relative; display: inline-block; width: 100%; max-width: 460px; }

.hcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.hcard-main { width: 100%; }

.hcard-header {
  background: var(--gray-900);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.hcard-dot { width: 11px; height: 11px; border-radius: 50%; }
.hcard-dot.green { background: #22C55E; }
.hcard-dot.yellow { background: #F59E0B; }
.hcard-dot.red { background: #EF4444; }
.hcard-label { font-family: var(--font-body); font-size: 12px; color: var(--gray-400); margin-left: 4px; }

.hcard-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.domain-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-display);
}
.domain-row.available { background: #F0FDF4; }
.domain-row.taken { background: var(--gray-50); }
.domain-row .bi-check-circle-fill { color: var(--green-500); font-size: 16px; }
.domain-row .bi-x-circle-fill { color: var(--gray-400); font-size: 16px; }
.domain-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.domain-name strong { color: var(--gray-900); }
.domain-badge {
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 100px;
}
.badge-avail { background: #DCFCE7; color: #166534; }
.badge-taken { background: var(--gray-200); color: var(--gray-600); }
.domain-price { font-size: 13px; font-weight: 700; color: var(--blue-700); margin-left: auto; white-space: nowrap; }
.hdc-btn{
    background: var(--green-500);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition)
}
.hdc-btn:hover{
    background: var(--green-600);
}
.hcard-floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  min-width: 160px;
  animation: float-card 4s ease-in-out infinite;
}
.hcard-stat { bottom: 103px; left: -50px; animation-delay: 0s; }
.hcard-dns { top: 0; right: -30px; animation-delay: 2s; }
.stat-icon { font-size: 22px; color: var(--blue-500); }
.stat-val { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.stat-lbl { font-size: 11px; color: var(--gray-500); font-weight: 500; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* â”€â”€â”€ Hero Stats Bar â”€â”€â”€ */
.hero-stats-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gray-200);
}
.scount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1.1;
}
.slabel {
  display: block;
  font-size: 14.5px;
  color: var(--gray-500);
  font-weight: 500;
}

/* â”€â”€â”€ About â”€â”€â”€ */
.about-visual {
  position: relative;
  padding: 20px 20px 20px 20px;
}

.about-bg-card {
  position: absolute;
  inset: 0 30px 30px -20px;
  background: linear-gradient(135deg, var(--blue-50) 0%, #EDE9FE 100%);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.about-feature-list {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.af-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50) 0%, #EDE9FE 100%);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
  font-size: 20px;
  flex-shrink: 0;
}

.af-title { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.af-sub { font-size: 13px; color: var(--gray-500); }

.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, #7C3AED 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-family: var(--font-display);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-badge i { font-size: 24px; opacity: .9; }

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  margin-top: 8px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.astat-val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--blue-600); line-height: 1;
}
.astat-lbl { font-size: 12px; color: var(--gray-500); font-weight: 500; margin-top: 4px; }
.astat-divider { width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0; }

/* â”€â”€â”€ Services â”€â”€â”€ */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--blue-300, #93C5FD);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--sc-color) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--sc-color);
  margin-bottom: 18px;
  transition: var(--transition);
}
/* .service-card:hover .sc-icon-wrap {
  background: var(--sc-color);
  color: var(--white);
} */

.sc-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.sc-body { font-size: 16px; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.sc-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.sc-link:hover { gap: 8px; }

/* â”€â”€â”€ Pricing â”€â”€â”€ */
.billing-toggle { display: flex; align-items: center; justify-content: center; }
.toggle-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex; align-items: center; gap: 8px;
}
.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: #DCFCE7;
  color: #166534;
  padding: 2px 9px;
  border-radius: 100px;
}
.switch { position: relative; width: 48px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0;
  background: var(--gray-300, #CBD5E1);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .slider { background: var(--blue-600); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-featured {
  background: linear-gradient(155deg, var(--blue-700) 0%, #4F46E5 100%);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(37,99,235,.4);
}
.pricing-featured:hover { transform: scale(1.06); }

.pc-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F59E0B, #EF4444);
  color: var(--white);
  font-size: 11.5px; font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.pc-tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.pricing-featured .pc-tag { color: rgba(255,255,255,.7); }

.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.pc-currency { font-size: 22px; font-weight: 700; color: var(--gray-900); padding-bottom: 4px; }
.pc-amount { font-size: 54px; font-weight: 800; color: var(--gray-900); line-height: 1; letter-spacing: -.03em; }
.pc-per { font-size: 14px; color: var(--gray-500); padding-bottom: 8px; font-weight: 500; }
.pricing-featured .pc-currency,
.pricing-featured .pc-amount { color: var(--white); }
.pricing-featured .pc-per { color: rgba(255,255,255,.6); }

.pc-desc { font-size: 13.5px; color: var(--gray-500); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.pricing-featured .pc-desc { color: rgba(255,255,255,.65); border-bottom-color: rgba(255,255,255,.2); }

.pc-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.pc-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.pc-features li .bi { font-size: 16px; flex-shrink: 0; }
.pc-features li .bi-check2 { color: var(--green-500); }
.pc-features li.disabled { color: var(--gray-400); }
.pc-features li .bi-x { color: var(--gray-400); }
.pricing-featured .pc-features li { color: rgba(255,255,255,.85); }
.pricing-featured .pc-features li .bi-check2 { color: #86EFAC; }
.pricing-featured .pc-features li.disabled { color: rgba(255,255,255,.35); }

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 15px;
  color: var(--gray-600);
}

/* â”€â”€â”€ How It Works â”€â”€â”€ */
.hiw-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.hiw-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.hiw-card-accent {
  background: linear-gradient(145deg, rgba(37,99,235,.35) 0%, rgba(124,58,237,.25) 100%);
  border-color: rgba(59,130,246,.4);
}

.hiw-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -.04em;
}

.hiw-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 20px;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hiw-body { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0; }

.hiw-cta { padding-top: 20px; }

/* â”€â”€â”€ Why Section Dashboard â”€â”€â”€ */
.why-check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.wc-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.wc-item .bi { font-size: 20px; line-height: 1; color: var(--blue-600); }

.why-dashboard { position: relative; display: inline-block; width: 100%; max-width: 520px; }

.wd-card-main {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.wd-header {
  background: var(--gray-900);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display);
}
.wd-title { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.wd-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #4ADE80;
}
.live-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.wd-metrics { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.wdm { display: flex; align-items: center; gap: 12px; }
.wdm-label { font-size: 13px; color: var(--gray-600); width: 140px; flex-shrink: 0; font-weight: 500; }
.wdm-bar { flex: 1; height: 8px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.wdm-fill { height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--blue-600)); border-radius: 100px; transition: width 1.5s ease; }
.wdm-fill.fast { background: linear-gradient(90deg, #0EA5E9, #38BDF8); }
.wdm-fill.green { background: linear-gradient(90deg, #22C55E, #16A34A); }
.wdm-val { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gray-900); width: 48px; text-align: right; }

.wd-footer-badges {
  padding: 14px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex; gap: 12px; flex-wrap: wrap;
}
.wd-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 12px;
  border-radius: 100px;
}

.wd-floating {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
  animation: float-card 5s ease-in-out infinite;
}
.wd-float-1 { bottom: 30px; left: -40px; animation-delay: 0s; }
.wd-float-2 { top: 30px; right: -40px; animation-delay: 2.5s; }

/* â”€â”€â”€ Testimonials â”€â”€â”€ */
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.testi-featured {
  background: rgba(37,99,235,.3);
  border-color: rgba(59,130,246,.4);
}

.testi-stars { font-size: 16px; color: #FCD34D; margin-bottom: 14px; letter-spacing: .08em; }
.testi-text {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); object-fit: cover; }
.testi-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 12px; color: rgba(255,255,255,.5); }

/* Trust Logos */
.trust-logos-label { font-size: 13px; margin-bottom: 20px; }
.logos-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.logo-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.logo-pill:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue-300, #93C5FD) !important; }

.faq-btn {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  padding: 22px;
  border: none;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.faq-btn:not(.collapsed) {
  color: var(--blue-600);
  background: var(--blue-50);
}
/* .faq-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
} */

.faq-body {
  padding: 15px 20px;
  /* font-size: 14.5px; */
  color: var(--gray-600);
  line-height: 1.75;
}

/* â”€â”€â”€ Support CTA â”€â”€â”€ */
.support-cta-section { background: var(--gray-50); }

.support-cta-card {
  background: linear-gradient(135deg, var(--blue-900) 0%, #1E1B4B 60%, var(--blue-800) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.cta-bg-circles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-circle.c1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-circle.c2 { width: 300px; height: 300px; bottom: -100px; left: 100px; }

.cta-support-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cta-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.cta-opt:hover { background: rgba(255,255,255,.14); color: var(--white); }
.cta-opt i { font-size: 16px; color: var(--blue-400); }

.cta-action-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cta-action-label { font-size: 13px; margin-bottom: 14px; }
.cta-no-cc { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 14px; margin-bottom: 0; text-align: center; }

/* â”€â”€â”€ Footer â”€â”€â”€ */
.site-footer { background: var(--gray-900); }

.footer-top { padding: 72px 0 56px; }

.footer-brand { font-size: 20px; color: var(--white) !important; }

.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 300px; }

.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}
.fsocial:hover { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  color: rgba(255,255,255,.4);
}

/* â”€â”€â”€ Reveal Animations â”€â”€â”€ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 991.98px) {
  .hero-visual { display: none !important; }
  .hcard-stat, .hcard-dns { display: none; }
  .section-pad { padding: 72px 0; }
  .support-cta-card { padding: 40px 28px; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-3px); }
  .wd-float-1, .wd-float-2 { display: none; }
}

@media (max-width: 767.98px) {
  .min-vh-hero { min-height: auto; padding: 110px 0 32px; }
  .domain-search-bar { flex-direction: column; border-radius: var(--radius-md); }
  .search-input-wrap { padding: 14px 16px; }
  .tld-select-wrap { border-left: none; border-top: 1px solid var(--gray-200); padding: 10px 16px; width: 100%; }
  .btn-search { border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 14px; width: 100%; }
  .section-pad { padding: 56px 0; }
  .about-stats-row { flex-wrap: wrap; gap: 16px; }
  .astat-divider { display: none; }
  .cta-support-options { gap: 10px; }
  .support-cta-card { padding: 36px 20px; }
  .hero-stats-bar .col-6 { text-align: center; }
  .stat-item + .stat-item::before { display: none; }
  .billing-toggle { flex-wrap: wrap; gap: 12px; justify-content: center; }
}

/* â”€â”€â”€ Utility â”€â”€â”€ */
.mt-auto { margin-top: auto; }


  
    /* 
     * PRICING HERO SECTION STYLES (FIXED)
     */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

    .dm-pricing-hero {
        position: relative;
        padding: 100px 0 140px 0;
        background: #050b14; /* Very dark */
        font-family: 'Inter', sans-serif;
        color: #fff;
        overflow: hidden;
        border-top: 1px solid rgba(148, 163, 184, 0.05);
    }

    /* Dynamic Background */
    .dm-pricing-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: 
            radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
        z-index: 0;
    }

    .dm-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Header */
    .dm-ph-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .dm-ph-eyebrow {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        color: #818cf8;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .dm-ph-title {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .dm-ph-sub {
        font-size: 18px;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Grid */
    .dm-ph-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: stretch; /* KEY FIX: Forces equal height */
    }

    /* The Card */
    .dm-price-card {
        background: rgba(30, 41, 59, 0.4);
        border: 1px solid rgba(148, 163, 184, 0.1);
        border-radius: 24px;
        padding: 40px 32px;
        backdrop-filter: blur(20px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        /* KEY FIX: Flex Column to align content vertically */
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
        height: 100%; /* Fill grid cell height */
    }

    .dm-price-card:hover {
        transform: translateY(-10px);
        background: rgba(30, 41, 59, 0.6);
        border-color: rgba(99, 102, 241, 0.4);
    }

    /* === FEATURED CARD (Middle One) === */
    /* We target the 2nd child assuming limitTo: 3 */
    .dm-price-card:nth-child(2) {
        transform: scale(1.05);
        border-color: rgba(99, 102, 241, 0.5);
        background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
        box-shadow: 0 20px 50px -10px rgba(99, 102, 241, 0.3);
        z-index: 10;
    }

    .dm-price-card:nth-child(2):hover {
        transform: scale(1.08) translateY(-5px);
    }

    /* Ribbon for Featured Card */
    .dm-price-card:nth-child(2)::after {
        content: 'MOST POPULAR';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #6366f1, #a855f7);
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    }

    /* Content Styling */
    .dm-pc-name {
        font-size: 20px;
        font-weight: 700;
        color: #e2e8f0;
        margin-bottom: 20px;
        display: block;
    }

    .dm-pc-price-wrap {
        display: flex;
        align-items: baseline;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .dm-pc-currency {
        font-size: 24px;
        font-weight: 600;
        color: #94a3b8;
        margin-right: 4px;
    }

    .dm-pc-amount {
        font-size: 64px;
        font-weight: 900;
        color: #fff;
        letter-spacing: -2px;
        line-height: 1;
    }

    /* REMOVED .dm-pc-amount-text (/mo) */

    .dm-pc-desc {
        font-size: 15px;
        color: #94a3b8;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    /* Dynamic List Styling */
    .dm-price-card ul {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
        flex-grow: 1; /* KEY FIX: Pushes content below it to the bottom */
    }

    .dm-price-card li {
        font-size: 15px;
        color: #cbd5e1;
        margin-bottom: 16px;
        display: flex;
        align-items: flex-start;
        position: relative;
    }

    .dm-price-card li::before {
        content: '';
        min-width: 20px;
        height: 20px;
        background: rgba(16, 185, 129, 0.2);
        border: 1px solid #10b981;
        border-radius: 50%;
        margin-right: 12px;
        margin-top: 2px;
        position: relative;
    }

    /* Inner checkmark */
    .dm-price-card li::after {
        content: '\F26B';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 5px;
        top: 3px;
        font-size: 11px;
        color: #10b981;
    }

    /* Button Styling */
    .dm-pc-btn {
        display: block;
        width: 100%;
        padding: 18px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.3s ease;
        margin-top: auto; /* Ensures button stays at bottom */
    }

    /* Default Button (Ghost) */
    .dm-price-card:not(:nth-child(2)) .dm-pc-btn {
        background: transparent;
        border: 2px solid rgba(255,255,255,0.1);
        color: #fff;
    }

    .dm-price-card:not(:nth-child(2)) .dm-pc-btn:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.05);
    }

    /* Featured Button (Gradient) */
    .dm-price-card:nth-child(2) .dm-pc-btn {
        background: linear-gradient(135deg, #6366f1, #a855f7);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    }

    .dm-price-card:nth-child(2) .dm-pc-btn:hover {
        box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
        transform: translateY(-2px);
    }

    /* Trust Strip */
    .dm-trust-row {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        color: #64748b;
        font-size: 14px;
        font-weight: 600;
    }
    
    .dm-trust-row span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .dm-trust-row i {
        color: #6366f1;
        font-size: 18px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .dm-ph-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
        .dm-price-card:nth-child(2) {
            transform: scale(1); /* Remove scale on mobile */
            order: -1; /* Move to top */
        }
        .dm-price-card:nth-child(2)::after {
            top: 10px;
            left: 10px;
            transform: none;
        }
        .dm-ph-title {
            font-size: 32px;
        }
    }
