/* ==========================================================================
   DomainHost — Global Stylesheet
   Theme: "Cosmic Tech" — deep indigo/violet header w/ animated gradient,
   electric cyan + coral accents, clean white content canvas.
   ========================================================================== */

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

html { scroll-behavior: smooth; }

img, svg { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

button, input, textarea, select { font: inherit; color: inherit; }

button { cursor: pointer; border: none; background: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette — Cosmic Tech */
  --navy-950: #0a0e27;
  --navy-900: #0f1638;
  --indigo-900: #1e1b4b;
  --indigo-700: #3730a3;
  --indigo-600: #4338ca;
  --indigo-500: #4f46e5;
  --violet-500: #7c3aed;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --coral-500: #fb7185;
  --coral-400: #fb923c;
  --amber-500: #f97316;

  --text-900: #131328;
  --text-700: #3a3a55;
  --text-500: #6b6b85;
  --text-300: #a4a4bd;

  --bg-0: #ffffff;
  --bg-50: #f7f7fc;
  --bg-100: #eef0fa;
  --border: #e3e4f1;

  --gradient-brand: linear-gradient(135deg, var(--indigo-500) 0%, var(--violet-500) 50%, var(--cyan-400) 100%);
  --gradient-cta: linear-gradient(135deg, var(--coral-500) 0%, var(--amber-500) 100%);
  --gradient-dark: linear-gradient(120deg, var(--navy-950), var(--indigo-900), var(--indigo-700), var(--navy-900));

  --shadow-sm: 0 2px 8px rgba(20, 20, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 20, 60, 0.1);
  --shadow-lg: 0 20px 50px rgba(20, 20, 60, 0.16);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1220px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-700);
  background: var(--bg-0);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-900);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1em; }

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

section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-600);
  background: var(--bg-100);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--text-500); font-size: 1.05rem; margin-top: 14px; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 10px 24px rgba(251, 113, 133, 0.35);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(251, 113, 133, 0.45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(79, 70, 229, 0.4); }
.btn-ghost {
  background: var(--bg-100);
  color: var(--indigo-600);
}
.btn-ghost:hover { background: var(--border); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--navy-950);
  color: var(--text-300);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar a:hover { color: var(--cyan-300); }
.topbar-right a { display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   ANIMATED HEADER + MEGA MENU
   ========================================================================== */
.site-header {
  position: relative;
  background: var(--gradient-dark);
  background-size: 300% 300%;
  animation: gradientShift 16s ease infinite;
  overflow: visible;
  isolation: isolate;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.site-header::before {
  width: 220px; height: 220px;
  background: var(--cyan-400);
  top: -110px; left: -60px;
  animation: floatBlob 12s ease-in-out infinite;
}
.site-header::after {
  width: 190px; height: 190px;
  background: var(--coral-500);
  bottom: -100px; right: 5%;
  animation: floatBlob 14s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.15); }
}

.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.logo .logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--gradient-cta);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(251, 146, 60, 0.5);
  position: relative;
}
.logo .logo-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 14px;
  border: 1.5px solid rgba(34, 211, 238, 0.6);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
.logo span.dim { color: var(--cyan-300); font-weight: 600; }

.nav-main { display: flex; align-items: center; gap: 4px; }

.nav-main > ul { display: flex; align-items: center; gap: 2px; }
.nav-main > ul > li { position: relative; }
.nav-main > ul > li > a,
.nav-main > ul > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-main > ul > li > a:hover,
.nav-main > ul > li > button:hover,
.nav-main > ul > li.open > button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.nav-main > ul > li > a.active { color: var(--cyan-300); }
.caret { font-size: 0.65em; transition: transform 0.25s ease; }
li.open .caret { transform: rotate(180deg); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.6rem;
  z-index: 20;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 8px;
}
.nav-main > ul > li > button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* Mega menu panel */
.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(920px, 92vw);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 40;
}
li.open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-300);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-700);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.mega-col a:hover { background: var(--bg-50); color: var(--indigo-600); padding-left: 12px; }
.mega-col a .mi {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--bg-100);
  display: grid;
  place-items: center;
  color: var(--indigo-600);
}
.mega-col a strong { display: block; font-size: 0.9rem; color: var(--text-900); }
.mega-col a small { display: block; font-size: 0.78rem; color: var(--text-500); }
.mega-col a:hover strong { color: var(--indigo-600); }

.mega-promo {
  grid-column: span 3;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mega-promo .promo-text strong { color: var(--text-900); font-size: 1rem; }
.mega-promo .promo-text span { color: var(--text-500); font-size: 0.85rem; }

/* Simple dropdown (non-mega, used for Company etc.) */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  z-index: 40;
}
li.open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-panel a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--text-700); font-size: 0.9rem; font-weight: 500; }
.dropdown-panel a:hover { background: var(--bg-50); color: var(--indigo-600); }

/* ---------- Hero ---------- */
.hero,
.page-header {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero {
  padding: 26px 0 38px;
  text-align: center;
}
.page-header {
  padding: 22px 0 30px;
}
.hero .tagline-badge,
.page-header .tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-300);
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}
.hero h1,
.page-header h1 {
  color: #fff;
  max-width: 850px;
  margin: 0 0 12px;
}
.hero h1 { max-width: 850px; margin-left: auto; margin-right: auto; font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.page-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.hero h1 .accent,
.page-header h1 .accent {
  background: linear-gradient(100deg, var(--cyan-300), var(--coral-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .tagline,
.page-header .tagline,
.page-header p.tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 0 18px;
}
.hero .tagline { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.hero .hero-actions { justify-content: center; }
.hero-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.hero-search {
  max-width: 620px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-pill);
  padding: 7px 7px 7px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.page-header .hero-search { margin: 6px 0 0; }
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 9px 0;
  color: var(--text-900);
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  color: #fff;
}
.hero-stats .stat strong { display: block; font-size: 1.6rem; font-weight: 800; }
.hero-stats .stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* Page header variant (non-home pages, shorter hero) */
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--cyan-300); }
.breadcrumb .sep { margin: 0 6px; }

/* Page header with a visual badge (extension detail pages) */
.ph-flex { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.ph-content { flex: 1 1 420px; min-width: 280px; }
.ext-badge {
  flex-shrink: 0;
  width: 172px; height: 172px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  margin: 0 auto;
}
.ext-badge::before {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.25), transparent 70%);
  top: -50px; right: -50px;
}
.ext-badge .eb-icon { color: var(--cyan-300); margin-bottom: 8px; }
.ext-badge .eb-icon .icon { width: 26px; height: 26px; }
.ext-badge .eb-ext { position: relative; font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.ext-badge .eb-price {
  position: relative;
  margin-top: 10px;
  font-size: 0.72rem; font-weight: 700;
  color: #fff;
  background: var(--gradient-cta);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
@media (max-width: 860px) {
  .ph-flex { flex-direction: column-reverse; text-align: center; }
  .page-header .breadcrumb, .page-header .tagline-badge { justify-content: center; }
}

/* ==========================================================================
   FEATURE GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.feature-card {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-500); font-size: 0.94rem; margin-bottom: 0; }

.features-alt { background: var(--bg-50); }

/* ==========================================================================
   PRICING TABLES
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-brand);
  transition: height 0.3s ease;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%);
  top: -80px; right: -80px;
  z-index: -1;
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.price-card:hover::before { height: 8px; }

.price-card.popular {
  background: var(--gradient-dark);
  background-size: 220% 220%;
  animation: gradientShift 20s ease infinite;
  border: 1px solid transparent;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.45);
  transform: scale(1.045);
  z-index: 2;
}
.price-card.popular::before { background: linear-gradient(90deg, var(--cyan-300), var(--coral-400)); height: 5px; }
.price-card.popular::after { background: radial-gradient(circle, rgba(34,211,238,0.25), transparent 70%); width: 260px; height: 260px; top: -100px; right: -100px; }
.price-card.popular:hover { transform: scale(1.045) translateY(-10px); box-shadow: 0 26px 70px rgba(34, 211, 238, 0.4); }
.price-card.popular h3 { color: var(--cyan-300); }
.price-card.popular .price-desc { color: rgba(255,255,255,0.65); }
.price-card.popular .price-amount .currency,
.price-card.popular .price-amount .num { color: #fff; }
.price-card.popular .price-amount .term { color: rgba(255,255,255,0.55); }
.price-card.popular .price-old { color: rgba(255,255,255,0.4); }
.price-card.popular .price-list li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.14); }
.price-card.popular .price-list li.off { color: rgba(255,255,255,0.35); }

.price-badge {
  position: absolute;
  top: 18px; right: -34px;
  transform: rotate(45deg);
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 40px;
  box-shadow: 0 4px 12px rgba(251, 113, 133, 0.4);
  white-space: nowrap;
}
.price-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--indigo-600); margin-bottom: 6px; }
.price-card .price-desc { color: var(--text-500); font-size: 0.85rem; margin-bottom: 22px; min-height: 2.6em; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amount .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-900); }
.price-amount .num { font-size: 2.8rem; font-weight: 800; color: var(--text-900); letter-spacing: -0.02em; }
.price-amount .term { color: var(--text-500); font-size: 0.9rem; }
.price-old { color: var(--text-300); text-decoration: line-through; font-size: 0.85rem; margin-bottom: 22px; }
.price-list { margin: 20px 0 26px; flex-grow: 1; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-700);
  border-bottom: 1px dashed var(--border);
}
.price-list li:last-child { border-bottom: none; }
.price-list li .ico-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.35);
}
.price-list li.off { color: var(--text-300); }
.price-list li.off .ico-check { background: var(--bg-100); color: var(--text-300); box-shadow: none; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  font-weight: 600;
  color: var(--text-500);
}
.switch {
  width: 52px; height: 28px;
  background: var(--indigo-500);
  border-radius: var(--radius-pill);
  position: relative;
  flex-shrink: 0;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.25s ease;
}
.switch.on::after { left: 27px; }
.save-tag { background: var(--bg-100); color: var(--indigo-600); font-size: 0.75rem; padding: 3px 10px; border-radius: var(--radius-pill); font-weight: 700; }

/* Comparison / feature table */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
table.compare thead th { background: var(--bg-50); font-weight: 700; color: var(--text-900); }
table.compare tbody tr:hover { background: var(--bg-50); }
table.compare td.center, table.compare th.center { text-align: center; }

/* ==========================================================================
   PRODUCT DETAIL SECTION
   ========================================================================== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-detail.reverse .pd-media { order: 2; }
.pd-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.pd-media .pd-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(10, 14, 39, 0.85);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
}
.pd-specs { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.pd-specs div { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.pd-specs div span.label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-300); }
.pd-specs div span.value { font-weight: 700; color: var(--text-900); }

/* ==========================================================================
   CONTENT / PROSE SECTIONS
   ========================================================================== */
.content-block { max-width: 780px; }
.content-block.center { margin: 0 auto; text-align: left; }
.content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.content-columns h2, .content-block h2 { margin-bottom: 18px; }
.content-columns p, .content-block p { color: var(--text-700); }
.content-block ul.checklist, .content-columns ul.checklist { margin: 18px 0; }
.checklist li { display: flex; gap: 10px; padding: 6px 0; color: var(--text-700); }
.checklist li .ico-check { color: var(--indigo-600); flex-shrink: 0; margin-top: 3px; }
.pull-quote {
  border-left: 3px solid var(--violet-500);
  padding: 6px 0 6px 22px;
  margin: 26px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-900);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--gradient-dark);
  background-size: 250% 250%;
  animation: gradientShift 18s ease infinite;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   TESTIMONIALS / LOGOS / STEPS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: var(--bg-50); border-radius: var(--radius-md); padding: 28px; }
.testi-stars { color: var(--amber-500); margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { color: var(--text-700); font-size: 0.95rem; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; font-size: 0.88rem; color: var(--text-900); }
.testi-person span { font-size: 0.78rem; color: var(--text-500); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; counter-reset: step; }
.step-card { position: relative; padding-left: 4px; }
.step-card .step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { color: var(--text-500); font-size: 0.9rem; }

.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; opacity: 0.6; }
.logo-strip span { font-weight: 800; font-size: 1.2rem; color: var(--text-300); letter-spacing: 0.02em; }

/* ==========================================================================
   TOOLS (WHOIS / SPEED TEST) UI
   ========================================================================== */
.tool-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: -34px auto 0;
  position: relative;
  z-index: 6;
}
.tool-input-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tool-input-row input { flex: 1; min-width: 220px; padding: 15px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); outline: none; font-size: 0.95rem; }
.tool-input-row input:focus { border-color: var(--indigo-500); }
.tool-result { margin-top: 26px; display: none; }
.tool-result.show { display: block; animation: fadeInUp 0.4s ease; }
.tool-result pre {
  background: var(--navy-950);
  color: var(--cyan-300);
  padding: 22px;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  overflow-x: auto;
  line-height: 1.7;
}
.tool-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-top: 18px; }
.tool-metrics .metric { background: var(--bg-50); border-radius: var(--radius-md); padding: 18px; text-align: center; }
.tool-metrics .metric strong { display: block; font-size: 1.6rem; color: var(--indigo-600); }
.tool-metrics .metric span { font-size: 0.78rem; color: var(--text-500); }
.tool-loading { display: none; align-items: center; gap: 10px; color: var(--text-500); margin-top: 18px; font-size: 0.9rem; }
.tool-loading.show { display: flex; }
.spinner { width: 18px; height: 18px; border: 2.5px solid var(--border); border-top-color: var(--indigo-500); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Domain Search Results ---------------- */
[data-domain-search-result] { display: none; margin-top: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
[data-domain-search-result].show { display: block; animation: fadeInUp 0.4s ease; }
.domain-row { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.domain-row:last-child { border-bottom: none; }
.domain-row .d-name { font-weight: 700; color: var(--text-900); flex: 1; min-width: 160px; }
.domain-row .d-status { font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill); }
.domain-row .d-status.avail { background: #ecfdf5; color: #059669; }
.domain-row .d-status.taken { background: #fef2f2; color: #dc2626; }
.domain-row .d-price { color: var(--text-500); font-size: 0.9rem; min-width: 80px; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-900);
}
.acc-q .plus { font-size: 1.4rem; color: var(--indigo-500); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 20px; }
.acc-item.open .acc-q .plus { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-a p { padding: 0 4px 22px; color: var(--text-500); font-size: 0.94rem; }
.acc-item.open .acc-a { max-height: 400px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card .blog-body { padding: 22px; }
.blog-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--indigo-600); background: var(--bg-100); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.blog-card p { color: var(--text-500); font-size: 0.88rem; }
.blog-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-300); margin-top: 14px; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-900); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.92rem;
  background: var(--bg-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--indigo-500); background: #fff; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-100); color: var(--indigo-600); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--text-900); margin-bottom: 3px; }
.contact-info-item span { color: var(--text-500); font-size: 0.9rem; }
.form-success { display: none; background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 0.9rem; }
.form-success.show { display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--text-300); }
.footer-top { padding: 70px 0 40px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: var(--text-300); font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; transition: background 0.2s ease, transform 0.2s ease; }
.footer-social a:hover { background: var(--gradient-cta); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; color: var(--text-300); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-newsletter { display: flex; margin-top: 14px; border-radius: var(--radius-pill); overflow: hidden; background: rgba(255,255,255,0.06); }
.footer-newsletter input { flex: 1; background: transparent; border: none; padding: 12px 16px; color: #fff; outline: none; font-size: 0.85rem; }
.footer-newsletter button { background: var(--gradient-cta); color: #fff; padding: 12px 20px; font-weight: 700; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a { color: var(--text-300); }
.footer-bottom a:hover { color: var(--cyan-300); }
.footer-payments { display: flex; gap: 10px; opacity: 0.7; font-size: 0.78rem; }

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: translateY(0);} }

/* ==========================================================================
   ICON SYSTEM (custom SVG sprite — see icon symbols embedded near <body>)
   ========================================================================== */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-fill { fill: currentColor; stroke: none; }

/* Solid icon badges used across mega menu, feature cards, steps, contact info */
.mi, .feature-icon, .step-num, .ci-icon, .il-ico {
  color: #fff;
}
.mi .icon, .il-ico .icon { color: var(--indigo-600); }
.mi { width: 34px; height: 34px; }
.mi .icon { width: 18px; height: 18px; }
.feature-icon .icon { width: 26px; height: 26px; }
.step-num .icon { width: 20px; height: 20px; }
.ci-icon .icon { width: 22px; height: 22px; }
.il-ico .icon { width: 20px; height: 20px; }
.tool-metrics .icon,
.testi-stars .icon { color: var(--amber-500); width: 1.1em; height: 1.1em; }

/* ==========================================================================
   ILLUSTRATION / METRIC PANELS — self-drawn SVG visuals, replaces stock photos
   ========================================================================== */
.illus-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.illus-panel.illus-compact { aspect-ratio: 16 / 10; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.illus-panel.illus-indigo { background: linear-gradient(140deg, #4338ca, #4f46e5 55%, #7c3aed); }
.illus-panel.illus-cyan { background: linear-gradient(140deg, #0e7490, #0891b2 55%, #22d3ee); }
.illus-panel.illus-coral { background: linear-gradient(140deg, #9d174d, #e11d48 55%, #fb7185); }
.illus-panel.illus-dark { background: var(--gradient-dark); background-size: 220% 220%; animation: gradientShift 16s ease infinite; }
.illus-panel.illus-mint { background: linear-gradient(140deg, #065f46, #059669 55%, #34d399); }
.illus-panel.illus-amber { background: linear-gradient(140deg, #9a3412, #ea580c 55%, #fb923c); }

.illus-blob {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
  z-index: 0;
}
.illus-blob.b1 { top: -60px; left: -50px; }
.illus-blob.b2 { bottom: -80px; right: -60px; width: 260px; height: 260px; background: rgba(0,0,0,0.12); }

.illus-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.illus-icon-wrap {
  position: relative;
  z-index: 1;
  width: 96px; height: 96px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.illus-icon-wrap .icon { width: 46px; height: 46px; color: #fff; stroke-width: 1.6; }
.illus-panel.illus-compact .illus-icon-wrap { width: 62px; height: 62px; border-radius: 18px; }
.illus-panel.illus-compact .illus-icon-wrap .icon { width: 30px; height: 30px; }

.illus-stats {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.illus-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
}
.illus-stat strong { display: block; font-size: 1.15rem; font-weight: 800; line-height: 1.2; }
.illus-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.75); }
.illus-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(10, 14, 39, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

/* Related-extensions internal-linking block (extension detail pages) */
.ext-related { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.ext-related h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-300); margin-bottom: 12px; }
.ext-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 10px; }
.ext-related-grid a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-700);
  background: var(--bg-50);
  transition: background 0.2s ease, color 0.2s ease;
}
.ext-related-grid a span { color: var(--text-300); font-weight: 500; font-size: 0.78rem; }
.ext-related-grid a:hover { background: var(--bg-100); color: var(--indigo-600); }
.ext-related-all {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem; font-weight: 700;
  color: var(--indigo-600);
  padding: 8px;
}
.ext-related-all:hover { text-decoration: underline; }

/* Avatar fallback (initials) — replaces stock headshot photos */
.avatar-fallback {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.avatar-fallback.lg { width: 64px; height: 64px; font-size: 1.1rem; }

/* ==========================================================================
   MISC UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.badge-soft { display: inline-block; background: var(--bg-100); color: var(--indigo-600); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill); }
.two-col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.icon-list { display: flex; flex-direction: column; gap: 16px; }
.icon-list li { display: flex; gap: 14px; align-items: flex-start; }
.icon-list .il-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-100); color: var(--indigo-600); display: grid; place-items: center; flex-shrink: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .nav-main { position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh; background: var(--navy-950); flex-direction: column; align-items: stretch; padding: 90px 24px 30px; transition: right 0.35s ease; overflow-y: auto; z-index: 15; }
  .nav-main.open { right: 0; }
  .nav-main > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-main > ul > li > a, .nav-main > ul > li > button { width: 100%; justify-content: space-between; padding: 15px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .mega-panel, .dropdown-panel { position: static; transform: none; width: 100%; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; max-height: 0; overflow: hidden; padding: 0; grid-template-columns: 1fr; background: rgba(255,255,255,0.03); border-radius: 10px; transition: max-height 0.3s ease, padding 0.3s ease; }
  li.open .mega-panel, li.open .dropdown-panel { max-height: 1400px; padding: 18px; margin-top: 6px; transform: none; }
  .mega-col h4 { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }
  .mega-col a { color: rgba(255,255,255,0.85); }
  .mega-col a:hover { background: rgba(255,255,255,0.06); }
  .mega-col a strong { color: #fff; }
  .mega-promo { border-color: rgba(255,255,255,0.1); }
  .mega-promo .promo-text strong { color: #fff; }
  .dropdown-panel a { color: rgba(255,255,255,0.85); }
  .dropdown-panel a:hover { background: rgba(255,255,255,0.06); }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; z-index: 10; }
  .overlay.show { opacity: 1; visibility: visible; }
}

@media (min-width: 981px) {
  .nav-toggle { display: none; }
}

@media (max-width: 860px) {
  .product-detail, .product-detail.reverse, .content-columns, .contact-grid { grid-template-columns: 1fr; }
  .product-detail.reverse .pd-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 34px; }
  .tool-box { margin-top: -18px; padding: 24px; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 0 30px; }
  .price-card.popular { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .hero-stats { gap: 26px; }
  .pd-specs { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FLOATING SIDE BUTTONS (WhatsApp / Call / Contact)
   ========================================================================== */
body { padding-bottom: 68px; }

.side-fab {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 14, 39, 0.3);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab-btn:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(10, 14, 39, 0.4); }
.fab-btn .icon { width: 25px; height: 25px; }
.fab-whatsapp { background: #25d366; z-index: 1; }
.fab-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: fabPulse 2.2s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.fab-call { background: var(--gradient-brand); }
.fab-contact { background: var(--gradient-cta); }

.fab-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-950);
  color: #fff;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, right 0.2s ease;
  pointer-events: none;
}
.fab-btn:hover .fab-tooltip { opacity: 1; visibility: visible; right: 68px; }

@media (max-width: 768px) {
  .side-fab { right: 14px; bottom: 84px; gap: 10px; }
  .fab-btn { width: 46px; height: 46px; }
  .fab-btn .icon { width: 22px; height: 22px; }
  .fab-tooltip { display: none; }
}

/* ==========================================================================
   STICKY BOTTOM CTA BAR
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.28);
}
.sticky-cta-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sticky-cta-bar a:hover { transform: translateY(-2px); }
.sticky-cta-bar a .icon { width: 17px; height: 17px; }
.sticky-cta-bar .cta-primary { background: var(--gradient-cta); color: #fff; }
.sticky-cta-bar .cta-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.sticky-cta-bar .cta-secondary:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 520px) {
  .sticky-cta-bar { gap: 8px; padding: 9px 10px; }
  .sticky-cta-bar a { flex: 1; justify-content: center; padding: 11px 8px; font-size: 0.78rem; }
  .sticky-cta-bar a span.full-label { display: none; }
}
