/* ===================================================
   X Hosting BD – Main Stylesheet
   ✏️ LOGO: .logo img src → images/logo.png
   ✏️ BANNER: .hero { background-image } → images/hero-bg.jpg
   =================================================== */

:root {
  --primary: #0057e7;
  --primary-dark: #0041b5;
  --primary-light: #3b82f6;
  --accent: #00c8ff;
  --accent2: #ff6b35;
  --dark: #0b1120;
  --dark2: #111827;
  --card-bg: #fff;
  --bg-light: #f4f7fd;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0057e7 0%, #00c8ff 100%);
  --gradient-dark: linear-gradient(135deg, #0b1120 0%, #0d2255 100%);
  --shadow: 0 4px 24px rgba(0,87,231,0.10);
  --shadow-lg: 0 12px 40px rgba(0,87,231,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-main: 'Hind Siliguri', sans-serif;
  --font-heading: 'Exo 2', sans-serif;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,87,231,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,87,231,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 1.5rem; }
.btn-search {
  background: var(--accent2);
  color: white;
  border: none;
  padding: 0 22px;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  height: 50px;
}
.btn-search:hover { background: #e55a25; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark2);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark2);
  color: #cdd5e0;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-left a, .topbar-right a {
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--accent); }
.topbar-left a i.fa-whatsapp { color: #25d366; }
.btn-register {
  background: var(--primary);
  color: var(--white) !important;
  padding: 4px 14px;
  border-radius: 5px;
  font-weight: 600;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }
.logo-text-fallback {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark2);
}
.logo-text-fallback .logo-x {
  color: var(--primary);
  font-size: 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a, .nav-links .dropbtn {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark2);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-links .dropbtn:hover,
.nav-links a.active { color: var(--primary); background: #f0f4ff; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 0;
}
.dropdown-menu a:hover { background: #f0f4ff; color: var(--primary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark2);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  /* ✏️ BANNER: 아래 background-image URL을 교체하세요 */
  background: var(--gradient-dark);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,87,231,0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,200,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,17,32,0.88) 0%, rgba(0,57,154,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,0.15);
  border: 1px solid rgba(0,200,255,0.4);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeDown 0.7s ease;
}
.hero-content h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  animation: fadeDown 0.8s ease;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeDown 1s ease;
  margin-top: 24px;
}

/* Domain Search in Hero */
.domain-search-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  animation: fadeDown 0.9s ease;
}
.domain-search-box h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.domain-input-row {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.domain-input-row input {
  flex: 1;
  padding: 0 16px;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-main);
}
.domain-input-row input::placeholder { color: rgba(255,255,255,0.45); }
.domain-input-row select {
  padding: 0 10px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
}
.domain-input-row select option { background: #111827; color: white; }
.domain-ext-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.domain-ext-list span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.domain-ext-list span:hover {
  background: rgba(0,200,255,0.2);
  border-color: var(--accent);
  color: var(--accent);
}
.domain-hint {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; }
.hero-wave path { fill: var(--white); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--gradient);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.stat-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 0.04; }
.ficon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}
.feature-card:hover .ficon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== PRICING ===== */
.tabs-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.92rem;
}
.tab-btn.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,87,231,0.3);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.featured {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,87,231,0.35);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: white;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.plan-badge.popular { background: #fbbf24; color: #1f2937; }
.plan-header { margin-bottom: 18px; }
.plan-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}
.plan-header p { font-size: 0.88rem; opacity: 0.7; }
.plan-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}
.plan-price sup { font-size: 1.4rem; vertical-align: super; }
.plan-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.plan-features li i.fa-check { color: #22c55e; font-size: 0.85rem; }
.plan-features li.disabled { opacity: 0.45; }
.plan-features li.disabled i { color: #ef4444; }
.plan-card.featured .plan-features li i.fa-check { color: #86efac; }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.pricing-note a { color: var(--primary); font-weight: 600; }

/* ===== DOMAIN SECTION ===== */
.domain-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.domain-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.domain-prices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.domain-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
  transition: all var(--transition);
}
.domain-price-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(0,200,255,0.3);
}
.domain-price-card.hot {
  border-color: rgba(0,200,255,0.35);
  background: rgba(0,200,255,0.07);
}
.hot-badge {
  position: absolute;
  top: -10px;
  background: var(--accent);
  color: var(--dark2);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
}
.domain-price-card .ext {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}
.domain-price-card .price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}
.domain-price-card a {
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition);
}
.domain-price-card a:hover { background: var(--primary-dark); }
.domain-search-center .domain-input-row {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; font-weight: 700; }
.reviewer small { color: var(--text-muted); font-size: 0.78rem; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.server-visual {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.server-visual i {
  font-size: 6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.pulse-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(0,87,231,0.2);
  animation: pulse 2.5s ease-out infinite;
}
.pulse-ring.delay { animation-delay: 1.25s; }
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.why-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.why-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.why-list li i { color: var(--primary); font-size: 1rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  color: #a0aec0;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo img { height: 44px; margin-bottom: 16px; }
.logo-text-fallback { display: flex; align-items: center; }
.brand-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  transition: all var(--transition);
  font-size: 0.95rem;
}
.social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #a0aec0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.contact-list li i { color: var(--accent); margin-top: 3px; width: 16px; }
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.payment-logos span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d1d5db;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom-inner a { color: var(--accent); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,87,231,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--transition);
  animation: waBounce 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-prices-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .nav-links .dropbtn { justify-content: space-between; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f9fafb;
    border-radius: 8px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 60px 0 100px; }
  .domain-input-row { flex-direction: column; border-radius: 8px; }
  .domain-input-row input { border-radius: 8px 8px 0 0; height: 48px; }
  .domain-input-row select { border-radius: 0; height: 44px; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .btn-search { border-radius: 0 0 8px 8px; height: 46px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .domain-prices-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .section-header h2 { font-size: 1.7rem; }
  .cta-inner h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .domain-prices-grid { grid-template-columns: 1fr 1fr; }
}
