/* ============================================================
   HostingTime GmbH — Main Stylesheet
   Light theme default · Dark mode via [data-theme="dark"]
   ============================================================ */

/* ===== Light Theme Variables (default) ===== */
:root {
  --bg:           #ffffff;
  --bg-2:         #f7f9fc;
  --bg-3:         #eef2f7;
  --surface:      #ffffff;
  --surface-2:    #f7f9fc;
  --border:       #e4e8ef;
  --border-2:     #c9d2df;

  --blue:         #1d4ed8;
  --blue-mid:     #2563eb;
  --blue-light:   #3b82f6;
  --blue-pale:    #dbeafe;
  --purple:       #7c3aed;
  --purple-light: #8b5cf6;
  --cyan:         #0891b2;
  --green:        #059669;
  --orange:       #d97706;
  --red:          #dc2626;

  --gradient:     linear-gradient(135deg, #1d4ed8, #4f46e5);

  --text:         #0f172a;
  --text-muted:   #475569;
  --text-subtle:  #94a3b8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-xs:   3px;
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  --shadow:    0 1px 3px rgba(0,0,0,0.07), 0 4px 14px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.09), 0 6px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.1), 0 12px 36px rgba(0,0,0,0.07);

  --nav-h: 68px;
  --t:     0.2s ease;
  --t-slow: 0.4s ease;
}

/* ===== Dark Theme Overrides ===== */
[data-theme="dark"] {
  --bg:        #0f172a;
  --bg-2:      #1a2540;
  --bg-3:      #243050;
  --surface:   rgba(255,255,255,0.055);
  --surface-2: rgba(255,255,255,0.09);
  --border:    rgba(255,255,255,0.1);
  --border-2:  rgba(255,255,255,0.17);

  --blue-light:  #60a5fa;
  --green:       #34d399;
  --orange:      #fbbf24;

  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --text-subtle: #64748b;

  --shadow:    0 1px 4px rgba(0,0,0,0.45), 0 4px 14px rgba(0,0,0,0.3);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.5),  0 6px 20px rgba(0,0,0,0.38);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.55),0 12px 36px rgba(0,0,0,0.45);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }

/* ===== Typography ===== */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.95rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

.text-accent,
.text-gradient {
  color: var(--blue);
}
[data-theme="dark"] .text-accent,
[data-theme="dark"] .text-gradient { color: var(--blue-light); }

/* ===== Layout ===== */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
[data-theme="dark"] .section-label {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: var(--blue-light);
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header p { font-size: 1.05rem; margin-top: 0.85rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(29,78,216,0.25);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29,78,216,0.35);
}
.btn-secondary {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-secondary:hover {
  background: var(--bg-2);
  border-color: var(--border-2);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn-secondary {
  background: var(--surface);
  border-color: var(--border-2);
}
[data-theme="dark"] .btn-secondary:hover { background: var(--surface-2); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: #eff6ff;
  border-color: var(--blue-mid);
}
[data-theme="dark"] .btn-outline {
  color: var(--blue-light);
  border-color: rgba(96,165,250,0.5);
}
[data-theme="dark"] .btn-outline:hover { background: rgba(59,130,246,0.1); }
.btn-ghost {
  background: none;
  color: var(--text-muted);
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.98rem; }
.btn-sm { padding: 0.48rem 1.1rem; font-size: 0.82rem; }

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.05);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15,23,42,0.96);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: white;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-text .accent { color: var(--blue); }
[data-theme="dark"] .logo-text .accent { color: var(--blue-light); }

/* ===== Hero mit Hintergrundbild (wiederverwendbar) ===== */
.hero-img-bg {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
}
.hero-img-bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-img-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,18,36,0.88) 0%, rgba(10,18,36,0.60) 100%);
  z-index: 1;
}
.hero-img-bg__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  color: #fff;
  text-align: center;
  width: 100%;
}
.hero-img-bg__content h1 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-img-bg__content p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-img-bg__content .breadcrumb {
  justify-content: center;
}
.hero-img-bg__content .breadcrumb a,
.hero-img-bg__content .breadcrumb span { color: rgba(255,255,255,0.65); }
.hero-img-bg__content .breadcrumb-sep  { color: rgba(255,255,255,0.4); }
.hero-img-bg__content .section-label {
  background: rgba(59,130,246,0.18);
  border-color: rgba(59,130,246,0.35);
  color: #93c5fd;
}
.hero-img-bg__content .text-gradient {
  background: linear-gradient(135deg, #22d3ee, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Image Logo */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo-img-dark  { display: none; }
.logo-img-light { display: block; }
[data-theme="dark"] .logo-img-light { display: none; }
[data-theme="dark"] .logo-img-dark  { display: block; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--t);
  background: none;
  border: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg-3);
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active { background: var(--surface); }
.nav-link .chevron {
  font-size: 0.58rem;
  opacity: 0.55;
  transition: transform var(--t);
}
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0.65rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
/* Unsichtbare Brücke, die den Hover-Gap zwischen Button und Dropdown füllt */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
[data-theme="dark"] .nav-dropdown { background: #1a2540; }
.nav-dropdown.wide {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dd-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 0.855rem;
  font-weight: 500;
  transition: var(--t);
}
.dd-link:hover { background: var(--bg-2); color: var(--text); }
[data-theme="dark"] .dd-link:hover { background: var(--surface); }
.dd-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue);
  flex-shrink: 0;
}
[data-theme="dark"] .dd-icon {
  background: rgba(59,130,246,0.12);
  color: var(--blue-light);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px;
  gap: 2px;
}
[data-theme="dark"] .lang-switcher { background: var(--surface); }
.lang-btn {
  padding: 0.26rem 0.65rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-subtle);
  cursor: pointer;
  transition: var(--t);
  background: none;
  border: none;
  letter-spacing: 0.03em;
}
.lang-btn.active { background: var(--blue); color: white; }

/* Theme Toggle */
.theme-toggle {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--t);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--bg-2); color: var(--text); border-color: var(--border-2); }
[data-theme="dark"] .theme-toggle { background: var(--surface); border-color: var(--border); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--t);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }
.nav-m-group { margin-bottom: 1.5rem; }
.nav-m-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 0 0.5rem;
  margin-bottom: 0.4rem;
}
.nav-m-link {
  display: block;
  padding: 0.6rem 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--r-md);
  transition: var(--t);
  margin-bottom: 0.1rem;
}
.nav-m-link:hover { background: var(--bg-3); color: var(--text); }
[data-theme="dark"] .nav-m-link:hover { background: var(--surface); }
.nav-m-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ===== Hero (Homepage) ===== */
.hero {
  padding: calc(var(--nav-h) + 5rem) 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .hero-tag {
  background: rgba(59,130,246,0.1);
  border-color: rgba(96,165,250,0.3);
  color: var(--blue-light);
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-text h1 strong {
  font-weight: 800;
  color: var(--blue);
  position: relative;
}
[data-theme="dark"] .hero-text h1 strong { color: var(--blue-light); }
.hero-text > p {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
  font-weight: 500;
}
.trust-item i { color: var(--green); font-size: 0.75rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.hero-stat-card .hsc-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.hsc-icon-blue   { background: #dbeafe; color: var(--blue); }
.hsc-icon-green  { background: #d1fae5; color: #059669; }
.hsc-icon-purple { background: #ede9fe; color: var(--purple); }
[data-theme="dark"] .hsc-icon-blue   { background: rgba(59,130,246,0.15); color: var(--blue-light); }
[data-theme="dark"] .hsc-icon-green  { background: rgba(52,211,153,0.12); color: #34d399; }
[data-theme="dark"] .hsc-icon-purple { background: rgba(124,58,237,0.15); color: #a78bfa; }
.hero-stat-card .hsc-num { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--text); }
.hero-stat-card .hsc-lbl { font-size: 0.8rem; color: var(--text-subtle); margin-top: 0.15rem; }
.hero-card-offset {
  margin-left: 2.5rem;
}

/* ===== Page Hero (Unterseiten) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  text-align: center;
  position: relative;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-muted); transition: var(--t); }
.breadcrumb a:hover { color: var(--blue); }
[data-theme="dark"] .breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb-sep { opacity: 0.4; font-size: 0.65rem; }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  box-shadow: var(--shadow);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-2);
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.ci-blue   { background: #dbeafe; color: var(--blue); }
.ci-purple { background: #ede9fe; color: var(--purple); }
.ci-cyan   { background: #cffafe; color: var(--cyan); }
.ci-green  { background: #d1fae5; color: var(--green); }
.ci-orange { background: #fef3c7; color: var(--orange); }
.ci-red    { background: #fee2e2; color: var(--red); }
[data-theme="dark"] .ci-blue   { background: rgba(59,130,246,0.15);  color: var(--blue-light); }
[data-theme="dark"] .ci-purple { background: rgba(124,58,237,0.15);  color: #a78bfa; }
[data-theme="dark"] .ci-cyan   { background: rgba(8,145,178,0.15);   color: #22d3ee; }
[data-theme="dark"] .ci-green  { background: rgba(5,150,105,0.15);   color: #34d399; }
[data-theme="dark"] .ci-orange { background: rgba(217,119,6,0.15);   color: #fbbf24; }
[data-theme="dark"] .ci-red    { background: rgba(220,38,38,0.15);   color: #f87171; }

.card h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.card p  { font-size: 0.875rem; margin-bottom: 1.2rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--t);
}
[data-theme="dark"] .card-link { color: var(--blue-light); }
.card-link:hover { gap: 0.6rem; }

/* Grids */
.grid-4    { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2    { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px,1fr)); gap: 1.25rem; }

/* ===== Features ===== */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: #eff6ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
[data-theme="dark"] .feature-icon { background: rgba(59,130,246,0.12); color: var(--blue-light); }
.feature-item h4 { margin-bottom: 0.3rem; font-size: 0.92rem; }
.feature-item p  { font-size: 0.845rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.75rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
  box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1), var(--shadow-md);
}
[data-theme="dark"] .pricing-card.featured {
  border-color: rgba(96,165,250,0.5);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.1), var(--shadow-md);
}
.pricing-card.featured:hover { transform: translateY(-3px); }
.pricing-popular {
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 0.7rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.pricing-price .curr   { font-size: 1.2rem; color: var(--text-muted); font-weight: 700; }
.pricing-price .amount { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
.pricing-price .period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.8rem; color: var(--text-subtle); margin-bottom: 1.4rem; }
.pricing-features { margin-bottom: 1.6rem; }
.pf {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.845rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pf:last-child { border-bottom: none; }
.pf .yes { color: var(--green); }
.pf .no  { color: var(--text-subtle); opacity: 0.45; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 0.6rem;
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.08); }
[data-theme="dark"] .faq-item.open { border-color: rgba(96,165,250,0.5); box-shadow: 0 0 0 3px rgba(96,165,250,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--t);
}
.faq-q:hover { color: var(--blue); }
[data-theme="dark"] .faq-q:hover { color: var(--blue-light); }
.faq-q .faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
  color: var(--text-subtle);
}
[data-theme="dark"] .faq-q .faq-icon { background: var(--surface-2); }
.faq-item.open .faq-q .faq-icon {
  transform: rotate(180deg);
  background: #dbeafe;
  color: var(--blue);
}
[data-theme="dark"] .faq-item.open .faq-q .faq-icon {
  background: rgba(59,130,246,0.15);
  color: var(--blue-light);
}
.faq-a {
  display: none;
  padding: 0 1.4rem 1.15rem;
}
.faq-a p { font-size: 0.875rem; }
.faq-item.open .faq-a { display: block; }

/* ===== Stats ===== */
.stats-section {
  background: var(--blue);
  border: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ===== Split Section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse .split-visual { order: -1; }
.split-text h2 { margin-bottom: 0.9rem; }
.split-text p  { margin-bottom: 1.4rem; }
.split-list { list-style: none; margin-bottom: 2rem; }
.split-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.split-list li i { color: var(--green); flex-shrink: 0; }

.vis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.vis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.vis-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.vis-dots { display: flex; gap: 5px; }
.vis-dot  { width: 9px; height: 9px; border-radius: 50%; }
.vis-dot:nth-child(1) { background: #ef4444; }
.vis-dot:nth-child(2) { background: #f59e0b; }
.vis-dot:nth-child(3) { background: #10b981; }
.vis-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.845rem;
}
.vis-metric:last-child { border-bottom: none; }
.vis-metric .key { color: var(--text-muted); }
.vis-metric .val { font-weight: 700; color: var(--green); }
.vis-bar { height: 5px; border-radius: 3px; background: var(--bg-3); margin: 0.6rem 0; overflow: hidden; }
[data-theme="dark"] .vis-bar { background: var(--border); }
.vis-bar-fill { height: 100%; border-radius: 3px; background: var(--blue); }

/* ===== Contact Form ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: #eff6ff;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}
[data-theme="dark"] .contact-icon { background: rgba(59,130,246,0.12); color: var(--blue-light); }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 0.2rem;
}
.contact-item p,
.contact-item a { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.contact-item a:hover { color: var(--blue); }
[data-theme="dark"] .contact-item a:hover { color: var(--blue-light); }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.7rem 0.95rem;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
  background: var(--surface);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus { box-shadow: 0 0 0 3px rgba(96,165,250,0.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group textarea { resize: vertical; min-height: 125px; }
.form-group select option { background: var(--bg); color: var(--text); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--blue); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.form-check a { color: var(--blue); }
[data-theme="dark"] .form-check a { color: var(--blue-light); }

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  border-top: none;
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #fff;
}
.footer .logo-mark { background: var(--blue); }
.footer .logo-text .accent { color: var(--blue-light); }
.footer-brand > p {
  font-size: 0.845rem;
  margin-bottom: 1.25rem;
  max-width: 260px;
  line-height: 1.7;
  color: #94a3b8;
}
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-link {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #94a3b8;
  transition: var(--t);
  text-decoration: none;
}
.social-link:hover { background: rgba(59,130,246,0.2); color: #60a5fa; border-color: rgba(59,130,246,0.35); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.845rem;
  color: #64748b;
  padding: 0.25rem 0;
  transition: var(--t);
}
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: #64748b; }
.footer-copy p { margin: 0; margin-top: 0.2rem; color: #64748b; font-size: 0.76rem; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.78rem; color: #64748b; transition: var(--t); }
.footer-legal-links a:hover { color: #e2e8f0; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow var(--t), transform var(--t);
  box-shadow: var(--shadow);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-style: italic;
  color: var(--text-muted);
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; }
.author-role { font-size: 0.76rem; color: var(--text-subtle); }

/* ===== Domain Search ===== */
.domain-search-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.domain-form {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color var(--t), box-shadow var(--t);
}
.domain-form:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
  background: var(--surface);
}
.domain-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.9rem 1.25rem;
  color: var(--text);
  font-size: 0.98rem;
  outline: none;
}
.domain-form input::placeholder { color: var(--text-subtle); }
.domain-form button {
  background: var(--blue);
  border: none;
  padding: 0 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t);
}
.domain-form button:hover { background: var(--blue-mid); }
.tld-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.1rem; justify-content: center; }
.tld {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--t);
}
.tld:hover { border-color: var(--blue); color: var(--blue); }
[data-theme="dark"] .tld:hover { border-color: var(--blue-light); color: var(--blue-light); }

/* ===== Notice / Placeholder ===== */
.notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.4rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.845rem;
  color: #92400e;
}
[data-theme="dark"] .notice {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
  color: #fcd34d;
}
.notice i { flex-shrink: 0; margin-top: 2px; }

/* ===== Info Box ===== */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--r-lg);
  padding: 1.4rem;
  margin: 2rem 0;
}
[data-theme="dark"] .info-box {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.22);
}
.info-box p { color: var(--blue); font-size: 0.875rem; margin: 0; }
[data-theme="dark"] .info-box p { color: var(--blue-light); }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  max-width: 660px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
  display: none;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
[data-theme="dark"] .cookie-banner {
  background: #1a2540;
  border-color: var(--border-2);
}
.cookie-banner p { margin: 0; font-size: 0.845rem; flex: 1; min-width: 200px; color: var(--text-muted); }
.cookie-banner a { color: var(--blue); }
[data-theme="dark"] .cookie-banner a { color: var(--blue-light); }
.cookie-actions { display: flex; gap: 0.65rem; flex-shrink: 0; }

/* ===== Scroll Animations ===== */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
  .hero-inner { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .split       { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-visual { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .grid-3      { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; display: block; }
  .hero-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-card-offset { margin-left: 1.5rem; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-actions .btn, .nav-actions .lang-switcher { display: none; }
  .theme-toggle { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { padding-top: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 520px) {
  .hero-text h1 { font-size: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.65rem; }
  .footer-legal-links { gap: 1rem; }
  .domain-form { flex-direction: column; border-radius: var(--r-lg); }
  .domain-form button { padding: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
