/* ===========================
   HorosCode SellerShops
   Brand-aligned with horoscode.de
   =========================== */

@import url('../nav.css?v=202607151830');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6c63ff;
  --primary-dark: #4f46e5;
  --accent: #00d4ff;
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --radius: 14px;
  --shadow: 0 8px 32px rgba(108, 99, 255, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a { text-decoration: none; color: inherit; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.w-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
}
.orb1 { width: 520px; height: 520px; background: var(--primary); top: -160px; left: -80px; }
.orb2 { width: 380px; height: 380px; background: var(--accent); bottom: -80px; right: -40px; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
}
.hero-lead {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 58ch;
}
.hero-points {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.95rem;
}
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}
.hero-badge strong {
  color: var(--text);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-badge--muted { opacity: 0.75; }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: rgba(255, 255, 255, 0.015); }
.section-dark {
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(108, 99, 255, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.02);
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.section-lead { margin-top: 14px; color: var(--text-muted); font-size: 1.05rem; }

/* Services */
.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(180deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; }

/* Pricing */
.pricing-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card--popular {
  border-color: rgba(108, 99, 255, 0.45);
  box-shadow: var(--shadow);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-price { margin-bottom: 12px; }
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-unit {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.plan-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 0;
}
.plan-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.plan-features li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Templates */
.templates-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.template-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}
.template-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.template-card--darknet {
  border-color: rgba(0, 255, 136, 0.2);
  background: linear-gradient(180deg, #0a0a10, #08080c);
}
.template-card--darknet:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}
.template-demo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 204, 102, 0.15);
  color: #ffcc66;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.template-preview {
  padding: 16px 16px 0;
  background: rgba(0, 0, 0, 0.2);
}
.browser-frame {
  border: 1px solid var(--border);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #1a1a22;
}
.browser-frame--dark {
  border-color: rgba(0, 255, 136, 0.2);
  background: #050508;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #22222c;
  border-bottom: 1px solid var(--border);
}
.browser-bar--dark {
  background: #0a0a10;
  border-bottom-color: rgba(0, 255, 136, 0.15);
}
.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}
.browser-dot--green { background: #00ff88; opacity: 0.6; }
.browser-url {
  margin-left: 8px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-url--onion { color: #00ff88; }
.preview-body { padding: 12px; min-height: 100px; }
.preview-body--light { background: #f5f5f8; }
.preview-header-light {
  height: 10px;
  width: 60%;
  background: #ddd;
  border-radius: 3px;
  margin-bottom: 8px;
}
.preview-hero-light {
  height: 36px;
  background: linear-gradient(90deg, #6c63ff33, #00d4ff33);
  border-radius: 4px;
  margin-bottom: 10px;
}
.preview-products-light {
  display: flex;
  gap: 6px;
}
.preview-products-light span {
  flex: 1;
  height: 28px;
  background: #e8e8ee;
  border-radius: 3px;
}
.preview-body--bold { background: linear-gradient(180deg, #ff6b35, #f72585); padding: 10px; }
.preview-banner-bold {
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 8px;
}
.preview-products-bold { display: flex; gap: 6px; }
.preview-products-bold span {
  flex: 1;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
}
.preview-body--backgrounds {
  position: relative;
  background: #05050c;
  padding: 10px;
  min-height: 110px;
  overflow: hidden;
}
.preview-bg-glow {
  position: absolute;
  inset: -20% 10% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
  pointer-events: none;
}
.preview-bg-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.preview-bg-grid span {
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(108, 99, 255, 0.2));
  border: 1px solid rgba(0, 255, 136, 0.15);
}
.preview-bg-ui {
  position: relative;
  display: flex;
  gap: 6px;
}
.preview-bg-ui span {
  flex: 1;
  height: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.preview-body--bluecore {
  position: relative;
  background: #080810;
  padding: 10px;
  min-height: 110px;
  overflow: hidden;
}
.preview-bc-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(59, 130, 246, 0.18) 55%, transparent 70%);
  pointer-events: none;
}
.preview-bc-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
  pointer-events: none;
}
.preview-bc-cards {
  position: relative;
  display: flex;
  gap: 5px;
  margin-top: 18px;
}
.preview-bc-cards span {
  flex: 1;
  height: 34px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}
.browser-bar--tor {
  background: linear-gradient(180deg, #3a2850, #1a1028);
  border-bottom-color: rgba(120, 80, 180, 0.3);
}
.browser-dot--red { background: #ff5f57; }
.browser-dot--yellow { background: #febc2e; }
.browser-dot--green { background: #28c840; }
.preview-body--darknet {
  background: #000;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.65rem;
  padding: 8px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-tor-strip {
  display: flex;
  align-items: center;
  gap: 6px;
}
.preview-tor-logo {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.preview-tor-search {
  flex: 1;
  height: 10px;
  background: #fff;
  border-radius: 1px;
  border: 1px solid #ccc;
}
.preview-tor-nav {
  display: flex;
  gap: 0;
  background: #003300;
  border-radius: 1px;
  overflow: hidden;
}
.preview-tor-nav span {
  flex: 1;
  height: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.preview-tor-nav span:last-child { border-right: none; }
.preview-tor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  flex: 1;
}
.preview-tor-grid i {
  aspect-ratio: 1;
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 1px;
  display: block;
  position: relative;
}
.preview-tor-grid i::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  right: 20%;
  height: 45%;
  background: #222;
  border-radius: 1px;
}
.preview-tor-grid i::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #44cc44;
  border-radius: 1px;
}
.preview-terminal-line {
  color: #00ff88;
  margin-bottom: 10px;
  opacity: 0.8;
}
.preview-products-darknet {
  display: flex;
  gap: 5px;
}
.preview-products-darknet span {
  flex: 1;
  height: 32px;
  background: #0c0c12;
  border: 1px dashed rgba(0, 255, 136, 0.25);
  border-radius: 3px;
}
.template-content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.template-content h3 { margin-bottom: 8px; font-size: 1.05rem; }
.template-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex-grow: 1;
}
.template-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.template-tags li {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(108, 99, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(108, 99, 255, 0.2);
}
.template-card--darknet .template-tags li {
  background: rgba(0, 255, 136, 0.08);
  color: #00ff88;
  border-color: rgba(0, 255, 136, 0.2);
}

/* Template modals */
.template-modal[hidden] { display: none; }
.template-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.template-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.template-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.template-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.template-modal-header h2 { font-size: 1.2rem; }
.template-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.template-modal-close:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.template-modal-body { padding: 24px; }

.modal-preview-classic,
.modal-preview-bold {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.modal-preview-classic .mp-nav {
  display: flex;
  gap: 16px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 0.85rem;
  color: #666;
}
.modal-preview-classic .mp-hero {
  padding: 32px 20px;
  background: #f8f8fc;
  text-align: center;
}
.modal-preview-classic .mp-hero h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 8px;
}
.modal-preview-classic .mp-hero p { color: #666; font-size: 0.9rem; }
.modal-preview-classic .mp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: #fff;
}
.modal-preview-classic .mp-product {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
}
.modal-preview-classic .mp-product .mp-img {
  height: 60px;
  background: #f0f0f5;
  border-radius: 6px;
  margin-bottom: 10px;
}
.modal-preview-classic .mp-product span { font-size: 0.85rem; color: #333; font-weight: 600; }

.modal-preview-bold .mp-banner {
  padding: 40px 20px;
  background: linear-gradient(135deg, #ff6b35, #f72585, #7209b7);
  text-align: center;
  color: #fff;
}
.modal-preview-bold .mp-banner h3 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-preview-bold .mp-banner p { opacity: 0.9; }
.modal-preview-bold .mp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  background: #1a0a20;
}
.modal-preview-bold .mp-product {
  padding: 20px;
  background: linear-gradient(180deg, #2a1030, #1a0820);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}
.modal-preview-bold .mp-product .mp-img {
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f72585);
  border-radius: 8px;
  margin-bottom: 12px;
}
.modal-preview-bold .mp-product span { color: #fff; font-weight: 700; }

/* Process */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.process-steps h3 { margin-bottom: 8px; }
.process-steps p { color: var(--text-muted); font-size: 0.9rem; }

/* Trust */
.trust-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-card {
  background: rgba(17, 17, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.trust-card h3 { margin-bottom: 10px; }
.trust-card p { color: var(--text-muted); font-size: 0.94rem; }

/* Security Tools teaser */
.security-teaser-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.security-teaser-card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.security-teaser-card:hover {
  border-color: rgba(79, 70, 229, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.security-teaser-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.security-teaser-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.security-teaser-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.security-teaser-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.security-teaser-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* CTA */
.cta-section { padding-bottom: 100px; }
.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 36px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(108, 99, 255, 0.35);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 212, 255, 0.06));
}
.cta-text { max-width: 520px; }
.cta-text p { margin-top: 12px; color: var(--text-muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  background: rgba(0, 0, 0, 0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 14px; color: var(--text-muted); font-size: 0.9rem; max-width: 28ch; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* Mobile nav */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .templates-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .security-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .security-teaser-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 28px 22px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; min-width: 200px; }
  .modal-preview-classic .mp-grid,
  .modal-preview-bold .mp-grid { grid-template-columns: 1fr; }
  .hero-badges { justify-content: center; }
}
