/* ============================================
   Speed-Net GmbH - Modern Futuristic Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0a0e27;
  --primary-light: #111640;
  --accent: #00d4ff;
  --accent-2: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #00d4ff, #7c3aed);
  --accent-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #ffffff;
  --surface: rgba(17, 22, 64, 0.6);
  --surface-border: rgba(0, 212, 255, 0.1);
  --card-bg: rgba(15, 20, 50, 0.8);
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

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

body {
  font-family: var(--font);
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a:hover {
  color: #fff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
  color: #fff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(10, 14, 39, 0.8);
  border-bottom: 1px solid transparent;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 14, 39, 0.95);
  border-bottom-color: var(--surface-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.nav-logo:hover img {
  opacity: 0.85;
}

.footer .nav-logo img {
  height: 28px;
}

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

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(0, 212, 255, 0.15);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--primary-light);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(0, 212, 255, 0.1);
  color: #fff;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 80px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Floating orbs decoration */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.15);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.15);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

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

/* --- Cards --- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

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

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Feature Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, var(--card-bg) 100%);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 16px 0;
}

.pricing-card .price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
}

.pricing-card .price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--success);
  font-weight: bold;
  font-size: 1.1rem;
}

.pricing-features .cross {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- Domain Table --- */
.domain-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.domain-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.domain-table thead {
  background: rgba(0, 212, 255, 0.08);
}

.domain-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--surface-border);
}

.domain-table td {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.domain-table tbody tr {
  transition: var(--transition);
}

.domain-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

.domain-table tbody tr:last-child td {
  border-bottom: none;
}

.domain-ext {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.domain-price {
  font-weight: 700;
  color: var(--accent);
}

.domain-search {
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  gap: 12px;
}

.domain-search input {
  flex: 1;
  padding: 14px 24px;
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.domain-search input:focus {
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}

.domain-search input::placeholder {
  color: var(--text-muted);
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: #fff;
}

.blog-card-body h3 a:hover {
  color: var(--accent);
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Blog Detail */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-header {
  margin-bottom: 40px;
}

.blog-detail-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-detail-content p {
  margin-bottom: 20px;
  color: var(--text);
}

.blog-detail-content h2 {
  margin: 40px 0 20px;
  font-size: 1.6rem;
}

.blog-detail-content h3 {
  margin: 30px 0 16px;
  font-size: 1.3rem;
}

.blog-detail-content ul, .blog-detail-content ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text);
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* --- Page Header --- */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* --- Sections --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: rgba(0, 0, 0, 0.15);
}

/* --- Footer --- */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--surface-border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

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

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: rgba(10, 14, 39, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero-stats {
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .domain-search {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero-stat .number {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 28px 20px;
  }
}

/* --- Domain Detail Page --- */
.domain-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.domain-detail-ext {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.domain-detail-info h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.domain-detail-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.domain-detail-price-box {
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.domain-detail-price-box h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.domain-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.domain-price-row:last-of-type {
  border-bottom: none;
}

.domain-price-row .label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.domain-price-row .value {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.domain-detail-content {
  max-width: 800px;
}

.domain-detail-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.domain-detail-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.domain-detail-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.domain-detail-content ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.domain-detail-content ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}

.domain-detail-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* --- Order Form --- */
.order-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  max-width: 700px;
  position: relative;
  overflow: hidden;
}

.order-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.order-form-wrapper h2 {
  margin-bottom: 8px;
}

.order-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--primary);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

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

.form-divider {
  border: none;
  border-top: 1px solid var(--surface-border);
  margin: 28px 0;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Domain table link row */
.domain-table tbody tr {
  cursor: pointer;
}

.domain-table .btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .domain-detail-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .order-form-wrapper {
    padding: 28px 20px;
  }

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

/* --- Screenshot Gallery --- */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: var(--card-bg);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.screenshot-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.screenshot-item:hover img {
  opacity: 0.9;
}

.screenshot-caption {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.screenshot-caption i {
  color: var(--accent);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* --- Info Section with Side Image --- */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info-split.reverse {
  direction: rtl;
}

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

.info-split-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.info-split-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.info-split-text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.info-split-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.info-split-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* --- Quick Compare Mini Table --- */
.quick-compare {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.quick-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: center;
}

.quick-compare thead {
  background: rgba(0, 212, 255, 0.08);
}

.quick-compare th {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--surface-border);
}

.quick-compare th:first-child {
  text-align: left;
}

.quick-compare td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.quick-compare td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
}

.quick-compare tbody tr:hover {
  background: rgba(0, 212, 255, 0.04);
}

.quick-compare .highlight-col {
  background: rgba(0, 212, 255, 0.05);
}

.quick-compare .plan-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.quick-compare .plan-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- Full Comparison Table --- */
.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table thead {
  background: rgba(0, 212, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.compare-table th {
  padding: 16px;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--surface-border);
  color: var(--accent);
  text-align: center;
  min-width: 130px;
}

.compare-table th:first-child {
  text-align: left;
  min-width: 200px;
}

.compare-table th.featured-col {
  background: rgba(0, 212, 255, 0.1);
  color: #fff;
}

.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--text);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
}

.compare-table td.featured-col {
  background: rgba(0, 212, 255, 0.03);
}

.compare-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.04);
}

.compare-table .section-row td {
  background: rgba(0, 212, 255, 0.06);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--surface-border);
  text-align: left;
}

.compare-table .check-icon {
  color: var(--success);
  font-size: 1.1rem;
}

.compare-table .cross-icon {
  color: #ef4444;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .info-split {
    grid-template-columns: 1fr;
  }

  .info-split.reverse {
    direction: ltr;
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 14, 39, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(0, 212, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cookie-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.cookie-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-desc a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-desc a:hover {
  color: #fff;
}

/* Settings panel */
.cookie-settings-panel {
  display: none;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(17, 22, 64, 0.5);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-text {
  flex: 1;
}

.cookie-category-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-color: transparent;
}

.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(20px);
}

.cookie-always-on {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
}

/* Buttons */
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}

.cookie-btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

.cookie-btn-primary:hover {
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.45);
  transform: translateY(-1px);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.cookie-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
}

.cookie-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.cookie-btn-ghost:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    padding: 1.25rem 1rem;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-btn-ghost {
    text-align: center;
  }
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb-nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--surface-border);
  padding: 10px 0;
  font-size: 0.85rem;
}

.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--text-muted);
  margin-right: 4px;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb-item.active {
  color: var(--text);
}

/* ============================================
   PARTNER INTRO TEXT
   ============================================ */
.partner-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.partner-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
