/* ============================================
   FIRNAS TECH - MODERN HOSTING WEBSITE
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --primary: #6d28d9;
  --primary-dark: #5b21b6;
  --primary-light: #8b5cf6;
  --accent: #06b6d4;
  --accent-2: #ec4899;

  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --card: #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(109, 40, 217, 0.15);
  --gradient: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6d28d9 100%);

  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --container: 1200px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #0a0a14;
  --bg-soft: #11111d;
  --bg-muted: #1a1a2e;
  --text: #f1f5f9;
  --text-soft: #cbd5e1;
  --text-muted: #64748b;
  --border: #1e293b;
  --card: #14142a;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(139, 92, 246, 0.25);
}

/* ---------- BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { color: var(--primary); }

.btn-block { width: 100%; }
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
[data-theme="dark"] .navbar {
  background: rgba(10, 10, 20, 0.85);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s;
}
.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatBlob 12s ease-in-out infinite;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-light);
  top: -100px;
  left: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -50px;
  right: -100px;
  animation-delay: -6s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Domain Search */
.domain-search { margin-bottom: 40px; }
.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px;
  box-shadow: var(--shadow);
  max-width: 600px;
  transition: all 0.25s;
}
.search-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12), var(--shadow);
}
.search-icon {
  width: 18px;
  height: 18px;
  margin: 0 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 4px;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.search-input-wrap select {
  border: none;
  background: var(--bg-muted);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  margin-right: 6px;
}
.search-result {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 24px;
  padding-left: 12px;
}
.search-result.available { color: #10b981; }
.search-result.taken { color: #ef4444; }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-illustration {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}
.server-tower {
  width: 70px;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 12px 12px 4px 4px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: serverPulse 3s ease-in-out infinite;
}
.server-tower::before, .server-tower::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.server-tower::before { top: 20px; }
.server-tower::after { top: 32px; box-shadow: 0 0 8px var(--accent); background: var(--accent); }
.tower-1 { height: 200px; animation-delay: 0s; }
.tower-2 { height: 260px; animation-delay: 0.4s; }
.tower-3 { height: 180px; animation-delay: 0.8s; }
@keyframes serverPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.orbit {
  position: absolute;
  inset: -40px;
  border: 2px dashed rgba(109, 40, 217, 0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.orbit-2 {
  inset: -80px;
  border-color: rgba(6, 182, 212, 0.25);
  animation-duration: 50s;
  animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.card-1 { top: 40px; left: 0; animation-delay: 0s; }
.card-2 { top: 50%; right: 0; flex-direction: column; align-items: flex-start; gap: 2px; animation-delay: 1s; }
.card-3 { bottom: 60px; left: 30px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--bg-soft);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}
.logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  background: rgba(109, 40, 217, 0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; letter-spacing: -0.01em; }
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------- DOMAINS ---------- */
.domains-section { padding: 100px 0; }
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.domain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.domain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.domain-card > * { position: relative; z-index: 1; }
.domain-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  color: white;
}
.domain-card:hover::before { opacity: 1; }
.domain-card:hover .price span,
.domain-card:hover .price small { color: rgba(255,255,255,0.85); }

.tld {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.domain-card:hover .tld {
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.price span { font-size: 1rem; color: var(--text-muted); }
.price small { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
}
.tag-tech { background: var(--primary); }
.tag-deal { background: var(--accent-2); }

/* ---------- HOSTING ---------- */
.hosting-section {
  padding: 100px 0;
  background: var(--bg-soft);
}
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.hosting-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.hosting-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.hosting-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}
.hosting-icon svg { width: 28px; height: 28px; }
.icon-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.icon-orange { background: linear-gradient(135deg, #f97316, #ec4899); }
.icon-green { background: linear-gradient(135deg, #10b981, #06b6d4); }
.icon-pink { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.icon-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }

.hosting-card h3 { margin-bottom: 10px; }
.hosting-card p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s;
}
.card-link:hover { color: var(--primary-dark); }

/* ---------- FEATURES ---------- */
.features-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature {
  text-align: left;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.feature h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- PRICING ---------- */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-soft);
}
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}
.billing-toggle .active { color: var(--primary); }
.billing-toggle span { color: var(--text-soft); }

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: 0.3s;
}
.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.switch input:checked + .slider { background: var(--gradient); }
.switch input:checked + .slider::before { transform: translateX(24px); }

.save-badge {
  background: #10b981;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--card), var(--card)) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 6px; }
.pricing-desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-soft);
}
.amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.period {
  font-size: 1rem;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .muted {
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}
.avatar-1 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.avatar-2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.avatar-3 { background: linear-gradient(135deg, #f97316, #ef4444); }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 0;
  background: var(--bg-soft);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s;
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-soft);
}

/* ---------- CTA BANNER ---------- */
.cta-banner { padding: 80px 0; }
.cta-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-card::before { width: 200px; height: 200px; top: -50px; left: -50px; }
.cta-card::after { width: 250px; height: 250px; bottom: -100px; right: -50px; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: white; margin-bottom: 12px; }
.cta-card p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-card .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-card .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.cta-card .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0a0a14;
  color: #cbd5e1;
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-newsletter p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-full);
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-light);
}
.newsletter-form .btn { padding: 11px 20px; font-size: 0.9rem; }
.footer-newsletter small {
  display: block;
  margin-top: 10px;
  color: #10b981;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: #64748b;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #94a3b8; }
.footer-legal a:hover { color: white; }

/* ---------- SCROLL TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 99;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; order: -1; transform: scale(0.85); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--card);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 110px 0 60px; }
  .hero-stats { gap: 24px; justify-content: space-between; }
  .stat-num { font-size: 1.5rem; }

  .search-input-wrap { flex-wrap: wrap; padding: 10px; border-radius: 16px; }
  .search-input-wrap input { width: 100%; padding: 10px; }
  .search-input-wrap select { flex: 1; }
  .search-input-wrap .btn { flex: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-card { padding: 44px 24px; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { gap: 20px; }
  .logo-item { font-size: 1rem; }
}
