/* =========================================================
   WHC — Web Hosting Company  ·  Design System
   Blue / Green / White — Trust & Innovation
   ========================================================= */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand palette — trust blue + innovation green */
  --clr-primary: #1D4ED8;
  --clr-primary-lt: #3B82F6;
  --clr-primary-dk: #1E3A8A;
  --clr-accent: #059669;
  --clr-accent-lt: #10B981;
  --clr-success: #10B981;
  --clr-warning: #F59E0B;
  --clr-danger: #EF4444;

  /* Surfaces — light/white base */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --bg-footer: #0F172A;
  --bg-hero: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 40%, #0E7490 100%);
  --bg-section-alt: #F1F5F9;

  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-primary: #FFFFFF;
  --text-on-dark: #F1F5F9;

  /* Borders */
  --border-clr: #E2E8F0;
  --border-glow: rgba(29, 78, 216, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 40%, #0E7490 100%);
  --gradient-card: linear-gradient(135deg, rgba(29, 78, 216, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
  --gradient-cta: linear-gradient(135deg, #1D4ED8 0%, #059669 100%);
  --gradient-text: linear-gradient(135deg, #1D4ED8, #059669);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 30px rgba(29, 78, 216, 0.15);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--clr-primary-lt);
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--clr-primary-dk);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--clr-primary);
  color: #fff;
}

/* ---------- Scrollbar (WebKit) ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-primary-lt);
  border-radius: 4px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--bg-footer);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1060;
}

.top-bar a.text-light {
  color: var(--text-muted) !important;
  transition: color .2s;
}

.top-bar a.text-light:hover {
  color: #fff !important;
}

.top-bar .text-light i {
  color: var(--clr-primary-lt);
}

@media (min-width: 992px) {
  .navbar-whc {
    top: 36px;
  }

  .navbar-whc.scrolled {
    top: 0;
  }
}

/* ---------- Navbar ---------- */
.navbar-whc {
  background: var(--bg-nav);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--border-clr);
  padding: .85rem 0;
  transition: background .35s, box-shadow .35s, top .3s;
  z-index: 1050;
}

.navbar-whc.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
}

.navbar-whc .navbar-brand {
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -.5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-whc .navbar-brand span {
  -webkit-text-fill-color: var(--clr-accent);
}

.navbar-whc .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem 1rem !important;
  transition: color .25s;
}

.navbar-whc .nav-link:hover,
.navbar-whc .nav-link.active {
  color: var(--clr-primary) !important;
}

.navbar-whc .dropdown-menu {
  background: #FFFFFF;
  border: 1px solid var(--border-clr);
  border-radius: var(--radius-md);
  padding: .5rem;
  margin-top: .5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}

.navbar-whc .dropdown-item {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: .55rem 1rem;
  font-size: .9rem;
  transition: all .2s;
}

.navbar-whc .dropdown-item:hover {
  background: rgba(29, 78, 216, 0.06);
  color: var(--clr-primary);
}

.navbar-toggler {
  border: 1px solid var(--border-clr) !important;
  padding: .35rem .6rem;
}

.navbar-toggler-icon {
  filter: none;
}

/* ---------- Buttons ---------- */
.btn-gradient {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: .65rem 1.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity .3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.35);
  color: #fff;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-outline-glow {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  font-weight: 600;
  padding: .65rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease-out);
}

.btn-outline-glow:hover {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
  transform: translateY(-2px);
}

/* Hero-specific outline button (white on dark hero) */
.hero .btn-outline-glow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline-glow:hover {
  background: #fff;
  color: var(--clr-primary);
  border-color: #fff;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--gradient-hero);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #fff;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #93C5FD, #6EE7B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.hero .stat-box .stat-num {
  background: linear-gradient(135deg, #93C5FD, #6EE7B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .stat-box .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #93C5FD;
}

/* Page-level hero (inner pages) */
.page-hero {
  background: var(--gradient-hero);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
  opacity: .5;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  position: relative;
  color: #fff;
}

.page-hero .text-gradient {
  background: linear-gradient(135deg, #93C5FD, #6EE7B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.page-hero .breadcrumb {
  justify-content: center;
  position: relative;
}

.page-hero .breadcrumb-item a {
  color: #93C5FD;
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Glass Cards (now clean white cards) ---------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-clr);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .3s;
}

.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.glass-card:hover::before {
  background: var(--gradient-cta);
}

/* ---------- Service Cards ---------- */
.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.service-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  background: var(--gradient-card);
  color: var(--clr-primary);
  border: 1px solid var(--border-clr);
  transition: all .35s;
}

.service-card:hover .icon-wrap {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: .92rem;
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--clr-primary);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.04) 0%, #fff 30%);
}

.pricing-card .badge-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .35rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card .plan-name {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: .75rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .25rem;
  color: var(--text-primary);
}

.pricing-card .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card .price .period {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card .feature-list li {
  padding: .45rem 0;
  color: var(--text-secondary);
  font-size: .9rem;
  border-bottom: 1px solid var(--border-clr);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.pricing-card .feature-list li:last-child {
  border-bottom: none;
}

.pricing-card .feature-list li i {
  color: var(--clr-success);
  font-size: .85rem;
  flex-shrink: 0;
}

/* Pricing Toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--border-clr);
  border-radius: var(--radius-xl);
  padding: .35rem;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
}

.pricing-toggle .toggle-option {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all .3s;
}

.pricing-toggle .toggle-option.active {
  background: var(--gradient-cta);
  color: #fff;
}

.pricing-toggle .badge-save {
  background: rgba(16, 185, 129, 0.12);
  color: var(--clr-success);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 4px;
}

/* ---------- Feature / Stats row ---------- */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box .stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box .stat-label {
  color: var(--text-secondary);
  font-size: .88rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item .fi-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid var(--border-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-primary);
}

.feature-item h6 {
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: .88rem;
  margin: 0;
}

/* ---------- Domain Search Bar ---------- */
.domain-search {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: .5rem;
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.domain-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: .75rem 1rem;
  outline: none;
}

.domain-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.domain-search .btn-gradient {
  border-radius: var(--radius-md);
}

/* TLD Grid */
.tld-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.tld-card .tld-name {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.tld-card .tld-price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: .5rem;
  color: var(--text-primary);
}

.tld-card .tld-price small {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .8rem;
}

/* ---------- Tabs (Hosting) ---------- */
.hosting-tabs .nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: .75rem 1.5rem;
  transition: all .3s;
}

.hosting-tabs .nav-link.active {
  color: var(--clr-primary);
  background: #fff;
  border-color: var(--border-clr) var(--border-clr) transparent;
}

.hosting-tabs .nav-link:hover:not(.active) {
  color: var(--clr-primary);
}

/* ---------- Comparison Table ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border-clr);
  font-size: .9rem;
}

.compare-table thead th {
  background: var(--bg-section-alt);
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .5px;
}

.compare-table thead th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.compare-table tbody td {
  color: var(--text-secondary);
}

.compare-table tbody tr:hover td {
  background: rgba(29, 78, 216, 0.02);
}

.compare-table .check {
  color: var(--clr-success);
}

.compare-table .cross {
  color: var(--text-muted);
  opacity: .4;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  padding: 2rem;
}

.testimonial-card .stars {
  color: var(--clr-warning);
  margin-bottom: .75rem;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-primary);
}

.testimonial-card .role {
  color: var(--text-muted);
  font-size: .82rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: 50%;
}

.cta-banner h2 {
  font-weight: 800;
  color: #fff;
}

.cta-banner p {
  opacity: .9;
  max-width: 550px;
  margin: .75rem auto 1.5rem;
  color: #fff;
}

.cta-banner .btn {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
  border: none;
  padding: .75rem 2rem;
  border-radius: var(--radius-sm);
  transition: transform .3s, box-shadow .3s;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--border-clr);
  border-radius: var(--radius-md) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(29, 78, 216, 0.04);
  color: var(--clr-primary);
}

.faq-accordion .accordion-body {
  color: var(--text-secondary);
  font-size: .92rem;
  padding-top: 0;
}

/* ---------- Contact Form ---------- */
.form-dark .form-control,
.form-dark .form-select {
  background: #fff;
  border: 1px solid var(--border-clr);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  transition: border-color .3s;
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
  background: #fff;
  color: var(--text-primary);
}

.form-dark .form-control::placeholder {
  color: var(--text-muted);
}

.form-dark .form-label {
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-secondary);
  margin-bottom: .35rem;
}

/* ---------- Footer (stays dark for contrast) ---------- */
.footer {
  background: var(--bg-footer);
  border-top: none;
  padding: 4rem 0 0;
  color: #fff;
}

.footer h6 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: .5rem;
}

.footer ul li a {
  color: #94A3B8;
  font-size: .88rem;
  transition: color .25s, padding-left .25s;
}

.footer ul li a:hover {
  color: #93C5FD;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: .82rem;
  color: #64748B;
}

.footer .social-icons a {
  color: #94A3B8;
  font-size: 1.15rem;
  margin-right: 1rem;
  transition: color .25s, transform .25s;
}

.footer .social-icons a:hover {
  color: #93C5FD;
  transform: translateY(-2px);
}

/* Newsletter in footer */
.newsletter-form {
  display: flex;
  gap: .5rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: .6rem 1rem;
  font-size: .88rem;
}

.newsletter-form input::placeholder {
  color: #94A3B8;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #93C5FD;
}

.footer .text-secondary {
  color: #94A3B8 !important;
}

.footer .text-gradient {
  background: linear-gradient(135deg, #93C5FD, #6EE7B7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Helpers ---------- */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .5rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  background: rgba(29, 78, 216, 0.06);
  padding: .3rem .8rem;
  border-radius: 4px;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease-out);
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ---------- Animate on Scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-glow {
  border-color: var(--border-glow) !important;
}

.bg-dark-subtle {
  background: var(--bg-section-alt);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero {
    min-height: 70vh;
    padding-top: 5rem;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }

  .navbar-whc .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: .75rem;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-lg);
  }

  .pricing-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .domain-search {
    flex-direction: column;
  }

  .domain-search .btn-gradient {
    width: 100%;
    margin-top: .5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}