/* ===========================
   WOLKE HOST - Design System
   Colores: Azul #00A3E0 | Gris #2D2D2D
   =========================== */

:root {
  --primary: #00A3E0;
  --primary-dark: #0086B8;
  --primary-light: #33B5E5;
  --secondary: #2D2D2D;
  --dark: #1A1A1A;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6C757D;
  --gray-300: #DEE2E6;
  --gray-200: #E9ECEF;
  --gray-100: #F8F9FA;
  --white: #FFFFFF;
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --gradient-primary: linear-gradient(135deg, #00A3E0 0%, #0086B8 100%);
  --gradient-dark: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray-700); }

.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray-700); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 163, 224, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 163, 224, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

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

.header-top a { color: var(--gray-300); }
.header-top a:hover { color: var(--primary); }

.header-top-info {
  display: flex;
  gap: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img,
.logo svg {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .logo img, .logo svg { height: 36px; }
}

.footer .logo img,
.footer .logo svg { height: 48px; }

.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-menu > li { position: relative; }

.nav-menu a {
  color: var(--secondary);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* ===== Hero Slider (1500x500) ===== */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: clamp(380px, 50vw, 500px);
  overflow: hidden;
  background: var(--dark);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 0 5%;
  color: var(--white);
}

.slide-content .eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: inline-block;
}

.slide-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.slide-content h1 span { color: var(--primary); }

.slide-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 24px;
}

.slide-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slide-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slide-arrow:hover { background: var(--primary); }
.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }

/* Backgrounds with gradients for slides */
.bg-slide-1 { background: linear-gradient(135deg, #0086B8 0%, #00A3E0 50%, #1A1A1A 100%); }
.bg-slide-2 { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #00A3E0 100%); }
.bg-slide-3 { background: linear-gradient(135deg, #00A3E0 0%, #1A1A1A 100%); }
.bg-slide-4 { background: linear-gradient(135deg, #2D2D2D 0%, #0086B8 100%); }

.slide-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ===== Domain Search ===== */
.domain-search {
  background: var(--white);
  margin: -60px auto 0;
  max-width: 1100px;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}

.domain-search h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.domain-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-family: inherit;
}

.domain-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.domain-form select {
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
}

.tld-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.tld-item {
  text-align: center;
}

.tld-name {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
}

.tld-price {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== Cards & Grids ===== */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,163,224,0.1), rgba(0,163,224,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; }
.card p { margin-bottom: 16px; }

.card-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover { gap: 10px; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--white) 0%, #F0F9FF 100%);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  margin-bottom: 8px;
  color: var(--secondary);
}

.pricing-card .description {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.4rem;
  color: var(--gray-500);
  font-weight: 600;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--gray-500);
}

.price-original {
  text-decoration: line-through;
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.pricing-card ul {
  margin: 28px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card ul li.not-included {
  color: var(--gray-500);
}

.pricing-card ul li.not-included::before {
  content: "✕";
  color: var(--gray-500);
}

.pricing-card .btn { width: 100%; }

/* ===== Features ===== */
.feature-list {
  display: grid;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(0,163,224,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.feature-content h4 {
  margin-bottom: 6px;
  color: var(--secondary);
}

.feature-content p { color: var(--gray-700); }

/* ===== Two-column Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gradient-primary);
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.15) 3px, transparent 3px);
  background-size: 60px 60px, 80px 80px;
}

.split-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--white);
  z-index: 1;
}

/* ===== Stats ===== */
.stats-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Testimonials ===== */
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-info strong { display: block; color: var(--secondary); }
.testimonial-info span { font-size: 0.85rem; color: var(--gray-500); }

.stars { color: var(--warning); margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active { border-color: var(--primary); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--gray-700);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* ===== Forms ===== */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,163,224,0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: var(--gray-300); font-size: 0.95rem; }

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--gray-300);
  font-size: 0.95rem;
}

.footer ul li a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom a { color: var(--gray-300); margin: 0 8px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--gray-100);
  padding: 16px 0;
  font-size: 0.9rem;
}

.breadcrumb ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: var(--gray-500);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--gray-300);
}

.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--primary); }

/* ===== Page Hero ===== */
.page-hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,163,224,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,163,224,0.15) 0%, transparent 40%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

/* ===== Utility ===== */
.bg-gray { background: var(--gray-100); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-primary { background: var(--gradient-primary); color: var(--white); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.py-sm { padding: 40px 0; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0,163,224,0.1);
  color: var(--primary);
}

.badge-success { background: rgba(40,167,69,0.1); color: var(--success); }
.badge-warning { background: rgba(255,193,7,0.15); color: #B8860B; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-image { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .header-top { display: none; }

  .menu-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 16px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-100);
    padding: 0;
    border-radius: 0;
    min-width: auto;
    display: none;
  }

  .nav-menu li:hover > .dropdown { display: block; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .domain-form { flex-direction: column; }
  .domain-form input,
  .domain-form select,
  .domain-form button { width: 100%; }

  .domain-search { padding: 24px; margin-top: -40px; }

  .slide-content { padding: 0 30px; }
  .slide-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .slide-arrow.prev { left: 8px; }
  .slide-arrow.next { right: 8px; }

  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .tld-list { gap: 16px; }
  .cta-buttons .btn { width: 100%; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float { animation: float 3s ease-in-out infinite; }

/* ===== Enhanced Glassmorphism (v2) ===== */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
}

.hero-slider .slide-content {
  background: rgba(13, 24, 41, 0.28);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border-left: 4px solid var(--primary);
  padding: 32px 36px;
  border-radius: 18px;
  max-width: 720px;
}

.hero-slider .eyebrow {
  display: inline-block;
  background: rgba(0,163,224,0.18);
  color: #B5E5F8;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(0,163,224,0.35);
}

.bg-slide-1 { background: linear-gradient(120deg,#021935 0%, #003a72 45%, #00A3E0 100%); }
.bg-slide-2 { background: linear-gradient(120deg,#0e1d36 0%, #1c3a6e 50%, #0aa6e4 100%); }
.bg-slide-3 { background: linear-gradient(120deg,#0b1024 0%, #1c2b4a 50%, #2e7ed1 100%); }
.bg-slide-4 { background: linear-gradient(120deg,#10141f 0%, #1f3553 50%, #00A3E0 100%); }

.slide-pattern {
  position: absolute; inset: 0; opacity: 0.14;
  background-image:
    radial-gradient(circle at 15% 25%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 40% 85%, #fff 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 220px 220px;
  pointer-events: none;
}

.card { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; border: 1px solid var(--gray-200); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(0,163,224,0.35); }

.pricing-card { position: relative; overflow: hidden; }
.pricing-card.featured::before {
  content: "";
  position: absolute; inset: -2px;
  background: linear-gradient(135deg,#00A3E0,#0086B8,#00A3E0);
  z-index: -1;
  border-radius: inherit;
  filter: blur(14px);
  opacity: 0.55;
}

/* High-contrast focus for a11y */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid #FFC107;
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--primary); color: #fff; padding: 10px 16px;
  border-radius: 6px; z-index: 10000; font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }

