/* Wizalix - Managed Web Hosting & Digital Infrastructure
   Magical Brand Theme & Design System
   Color Palette: Wizard Royal Purple (#7e22ce) + Electric Sparkle Cyan (#0ea5e9)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-dark: #06040a;
  --bg-surface: #0e0818;
  --bg-card: rgba(22, 13, 38, 0.7);
  --bg-card-hover: rgba(35, 20, 60, 0.85);
  
  --purple-primary: #7e22ce;
  --purple-light: #9333ea;
  --purple-deep: #581c87;
  --purple-glow: rgba(126, 34, 206, 0.4);
  
  --cyan-sparkle: #0ea5e9;
  --cyan-bright: #38bdf8;
  --cyan-glow: rgba(14, 165, 233, 0.4);
  
  --border-glass: rgba(147, 51, 234, 0.18);
  --border-glow: rgba(14, 165, 233, 0.4);
  
  --gradient-magic: linear-gradient(135deg, #7e22ce 0%, #0ea5e9 100%);
  --gradient-purple-cyan: linear-gradient(135deg, #9333ea 0%, #38bdf8 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  
  --text-main: #f8fafc;
  --text-muted: #a78bfa;
  --text-dim: #6d28d9;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-magic: 0 0 35px rgba(126, 34, 206, 0.35);
  --shadow-cyan: 0 0 30px rgba(14, 165, 233, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Magical Glows */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.3;
  animation: floatOrb 22s infinite ease-in-out alternate;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--purple-primary);
  top: -150px;
  left: -150px;
}

.glow-orb-2 {
  width: 550px;
  height: 550px;
  background: var(--cyan-sparkle);
  bottom: 5%;
  right: -120px;
  animation-delay: -8s;
}

.glow-orb-3 {
  width: 450px;
  height: 450px;
  background: #c084fc;
  top: 45%;
  left: 35%;
  opacity: 0.15;
  animation-delay: -14s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.12); }
  100% { transform: translate(-50px, 90px) scale(0.92); }
}

/* Magical Sparkles Animation */
.sparkle-icon {
  display: inline-block;
  color: var(--cyan-bright);
  animation: sparkleRotate 3s infinite ease-in-out;
  text-shadow: 0 0 12px var(--cyan-sparkle);
}

@keyframes sparkleRotate {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.25) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 8px var(--cyan-bright)); }
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
.gradient-text-magic {
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.badge-magic {
  background: rgba(126, 34, 206, 0.18);
  color: #c084fc;
  border: 1px solid rgba(147, 51, 234, 0.4);
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.25);
}

.badge-cyan {
  background: rgba(14, 165, 233, 0.15);
  color: var(--cyan-bright);
  border: 1px solid rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-magic);
  color: #ffffff;
  box-shadow: var(--shadow-magic);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(126, 34, 206, 0.6), 0 0 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(35, 20, 60, 0.6);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(45, 26, 76, 0.85);
  border-color: rgba(147, 51, 234, 0.4);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: var(--shadow-cyan);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 4, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.9rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
  transition: var(--transition);
}

.brand-logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(147, 51, 234, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan-bright);
  text-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 1.2rem 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.stat-item h4 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Server Card Visual */
.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-magic);
  position: relative;
}

.server-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 12px #34d399;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.node-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(147, 51, 234, 0.15);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.node-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.node-name h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.node-name p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.node-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Domain Search Bar Component */
.domain-search-section {
  padding: 2.5rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.domain-search-box {
  background: rgba(14, 8, 24, 0.92);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(30px);
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.25);
}

.domain-form {
  display: flex;
  gap: 0.75rem;
}

.domain-input-wrap {
  flex: 1;
  position: relative;
}

.domain-input {
  width: 100%;
  background: rgba(6, 4, 10, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  color: var(--text-main);
  font-size: 1.05rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}

.domain-input:focus {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
}

.tld-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.tld-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tld-pill span {
  color: var(--cyan-bright);
  font-weight: 800;
  font-family: var(--font-mono);
}

.domain-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: none;
  align-items: center;
  justify-content: space-between;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.8rem 0;
}

.section-header p {
  color: #cbd5e1;
  font-size: 1.05rem;
}

/* Pricing Grid & Switcher */
.pricing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.switch-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
}

.switch-label.active {
  color: var(--text-main);
}

.toggle-btn {
  position: relative;
  width: 58px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--cyan-bright);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 0 10px var(--cyan-bright);
}

.toggle-btn.active {
  background: rgba(126, 34, 206, 0.3);
  border-color: var(--cyan-bright);
}

.toggle-btn.active::after {
  left: 29px;
}

.discount-badge {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-magic);
}

.price-card.featured {
  border-color: var(--cyan-bright);
  box-shadow: var(--shadow-cyan), var(--shadow-magic);
  background: rgba(22, 13, 38, 0.9);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gradient-magic);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.4);
}

.price-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.price-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  min-height: 42px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin: 1.5rem 0;
}

.price-amount .currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan-bright);
}

.price-amount .val {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.price-features li svg {
  color: var(--cyan-bright);
  flex-shrink: 0;
}

/* Concierge AI Showcase Section */
.ai-section {
  background: linear-gradient(180deg, rgba(6, 4, 10, 0) 0%, rgba(126, 34, 206, 0.12) 50%, rgba(6, 4, 10, 0) 100%);
  padding: 6rem 0;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-chat-preview {
  background: rgba(14, 8, 24, 0.92);
  border: 1px solid rgba(147, 51, 234, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-magic);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1rem;
}

.ai-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-magic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 15px var(--purple-glow);
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 250px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: rgba(35, 20, 60, 0.8);
  border: 1px solid var(--border-glass);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: var(--text-main);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-prompts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.prompt-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.prompt-btn:hover {
  background: rgba(126, 34, 206, 0.3);
  color: var(--cyan-bright);
  border-color: rgba(14, 165, 233, 0.5);
}

/* QuickWiz Voucher Ecosystem Banner */
.voucher-banner {
  background: linear-gradient(135deg, rgba(22, 13, 38, 0.95) 0%, rgba(35, 20, 60, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-cyan);
  margin: 3rem 0;
}

.voucher-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.voucher-info p {
  color: #cbd5e1;
  max-width: 620px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-magic);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(126, 34, 206, 0.2);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.6rem 1.3rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid rgba(147, 51, 234, 0.15);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 4, 10, 0.88);
  backdrop-filter: blur(18px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0e0818;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-magic);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(22, 13, 38, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-sans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan-bright);
}

/* Footer */
.footer {
  background: #040207;
  border-top: 1px solid var(--border-glass);
  padding: 4.5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #cbd5e1;
  font-size: 0.9rem;
  max-width: 330px;
  margin-top: 0.85rem;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .ai-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.7rem;
  }
  
  .voucher-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .domain-form {
    flex-direction: column;
  }
}
