/*
  Eray Kürtoglu – Webhosting & Webdesign (2026)
  Modern, light‑blue theme with subtle motion and clean layout.
*/

:root {
  --primary: #4AB3F4;
  --primary-600: #2c9de8;
  --primary-700: #1e87d3;
  --bg: #0b1220;
  --bg-2: #0f1626;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #e6eef8;
  --muted: #a8b2c7;
  --success: #2ecc71;
  --danger: #ff5c7a;
  --shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  /* Unified backdrop gradient for smooth transitions */
  background: radial-gradient(1200px 600px at 18% -12%, #13233f 0%, var(--bg) 52%),
              radial-gradient(950px 480px at 110% 8%, #13233f 0%, var(--bg) 70%);
  background-color: var(--bg);
  line-height: 1.6;
  touch-action: pan-y;
}
html, body { overflow-x: hidden; overscroll-behavior-x: none; }
body.no-scroll { overflow: hidden; }

/* Premium minimal scrollbar (global) */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(123, 165, 214, 0.5) rgba(255, 255, 255, 0.04);
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(127, 200, 255, 0.65), rgba(75, 138, 206, 0.65));
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(147, 212, 255, 0.8), rgba(92, 156, 226, 0.8));
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(1.2) blur(8px);
  background: linear-gradient(0deg, rgba(10,18,32,0.6), rgba(10,18,32,0.6));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform .22s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.header-hidden { transform: translateY(-100%); }
.site-header.scrolled { box-shadow: 0 10px 28px rgba(0,0,0,0.35); background: rgba(10,18,32,0.75); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-box {
  background: linear-gradient(135deg, #3aa0ff, #1f6fff);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.logo-text {
  font-size: 17px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text);
}
.brand-mark {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: white; font-weight: 700;
  box-shadow: 0 8px 20px rgba(74,179,244,0.4); letter-spacing: 0.8px; font-size: 14px;
}
.brand-text { font-weight: 700; letter-spacing: 0.2px; }

.nav-menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 18px; }
.nav-menu a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.nav-menu a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-toggle { display: none; }
.nav-menu .btn-primary, .nav-menu .btn-primary:visited { color: #fff; }

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3aa0ff, #1f6fff);
  color: #fff !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(58, 160, 255, 0.4);
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(58,160,255,0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(58,160,255,0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(58,160,255,0.4);
  }
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(58,160,255,0.8);
}

.nav-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.nav-cta:hover::after {
  left: 130%;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease;
  padding: 20px;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 85%;
  max-width: 420px;
  max-height: 82vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  background: rgba(20, 40, 80, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  color: white;
  opacity: 0;
  transition: all 0.35s ease;
}
.mobile-menu.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.menu-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.menu-header h2 { margin: 0; font-size: 22px; text-align: center; color: #ffffff; font-weight: 700; }
.menu-close {
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.menu-close:hover { background: rgba(255,255,255,0.18); transform: scale(1.04); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  color: #dce9ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(27,36,52,0.08);
  transition: 0.25s ease;
}
.mobile-menu a:hover { color: #6fb3ff; transform: translateX(5px); }
.mobile-menu a:last-child { border-bottom: 0; }

.cta-button {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(135deg, #5eb0ff, #2f7df6);
  color: white !important;
  box-shadow: 0 10px 30px rgba(47,125,246,0.5);
  transition: 0.3s ease;
  text-align: center;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(47,125,246,0.6);
  color: white !important;
}

.nav-toggle .hamburger { position: relative; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: background .2s ease; }
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle .hamburger::before { transform: translateY(-6px); }
.nav-toggle .hamburger::after { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 600; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; position: relative; overflow: hidden; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--primary), var(--primary-600)); box-shadow: 0 10px 24px rgba(74,179,244,0.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(74,179,244,0.45); }
.btn-outline { color: var(--text); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.03); }
.btn-outline:hover { background: rgba(255,255,255,0.07); }
.btn::after { content: ""; position: absolute; left: -20%; top: 0; bottom: 0; width: 40%; transform: skewX(-20deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%); opacity: 0; transition: opacity .2s ease, left .6s ease; }
.btn:hover::after { opacity: 1; left: 120%; }

.hero-ctas .btn-primary {
  padding: 13px 28px;
  font-size: clamp(17px, 2vw, 22px);
  border-radius: 15px;
  min-width: min(100%, 390px);
  background: linear-gradient(135deg, #49abf5, #2a8fe4);
  box-shadow: 0 10px 22px rgba(35, 109, 182, 0.28);
  transition: transform .22s ease, box-shadow .22s ease, background-position .3s ease;
  background-size: 140% 140%;
  background-position: 0% 50%;
}
.hero-ctas .btn-primary:hover {
  transform: scale(1.02);
  background-position: 100% 50%;
  box-shadow: 0 14px 24px rgba(35, 109, 182, 0.34);
}
@keyframes microBounce { 0% { transform: scale(1); } 50% { transform: scale(0.98); } 100% { transform: scale(1); } }
.btn.clicked { animation: microBounce .18s ease-out; }

.ripple { position: absolute; border-radius: 999px; transform: translate(-50%, -50%); background: rgba(255,255,255,0.35); pointer-events: none; width: 10px; height: 10px; opacity: 0.7; animation: ripple .6s ease-out forwards; }
@keyframes ripple { to { width: 260px; height: 260px; opacity: 0; } }

.hero { position: relative; padding: 88px 0 64px; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-copy { width: 100%; max-width: min(780px, 100%); margin: 0 auto; }
.hero-kicker { margin: 0 0 10px; color: var(--primary); font-weight: 700; letter-spacing: .3px; }
.hero h1 { font-size: clamp(30px, 6vw, 54px); line-height: 1.16; margin: 0 0 14px; letter-spacing: 0.2px; text-wrap: balance; }
.lead { color: var(--muted); font-size: clamp(16px, 2.7vw, 20px); margin: 0 auto 20px; width: min(850px, 92vw); }
.lead-mobile { display: none; }
.hero-target { margin: -2px 0 18px; color: var(--text); font-weight: 600; font-size: 15px; opacity: 0.9; }
.hero-mini-trust {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.hero-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 14px auto 14px; width: min(900px, 96vw); }
.hero-proof-item { padding: 7px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: var(--text); font-size: 14px; line-height: 1.2; }
.hero-ctas { display: flex; justify-content: center; gap: 12px; position: relative; z-index: 2; }
.hero-ctas .btn-outline { padding: 10px 16px; font-size: 14px; align-self: center; }
.urgency { margin: 14px 0 0; color: #f7c96b; font-weight: 600; }
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; inset: -20% -10%; pointer-events: none;
  background: radial-gradient(600px 260px at 15% 25%, rgba(74,179,244,0.18), transparent 72%),
              radial-gradient(400px 180px at 85% 35%, rgba(74,179,244,0.14), transparent 72%);
  filter: blur(8px);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; transform: translate3d(calc(var(--mx, 0) * 0.03px), calc(var(--my, 0) * 0.03px), 0); transition: transform .06s linear; }

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 750px;
  margin: 40px auto 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  flex: 1;
}

.stat-number {
  font-size: 20px;
  color: #4da3ff !important;
  font-weight: 600;
  line-height: 1.1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
  color: rgba(224, 235, 248, 0.9);
  margin-top: 4px;
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex: 0 0 auto;
}

.section { padding: 82px 0; position: relative; }
.section.alt { background: transparent; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.section::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 56px; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)); }
.section-title { font-size: clamp(22px, 4vw, 32px); margin: 0 0 6px; letter-spacing: 0.2px; text-wrap: balance; }
.section-subtitle { color: var(--muted); margin: 0 0 24px; }

.grid { display: grid; gap: 18px; }
.problem-grid { grid-template-columns: 1fr; }
.audience-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solution-grid { grid-template-columns: 1fr; }
.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: var(--surface); border-radius: 16px; padding: 20px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.34); background: var(--surface-strong); }
.tilt { will-change: transform; transform-style: preserve-3d; }
.tilt { touch-action: pan-y; }
.tilt:hover { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.08)); }
.card h3 { margin: 6px 0 6px; }
.features { color: var(--muted); padding-left: 18px; }
.quick-points li { margin-bottom: 8px; }
/* Allow a single card to span full width under pricing */
.cards .full { grid-column: 1 / -1; }
.service-card { display: flex; flex-direction: column; }
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 8px;
  padding-top: 0;
}
.card-header h3,
.card-header h4 {
  margin: 0;
}
.service-card-main {
  border-color: rgba(74,179,244,0.26);
  box-shadow: 0 14px 36px rgba(74,179,244,0.16);
}
.service-card-main .card-header h3 { color: #dff0ff; }
.service-card-addon {
  border-color: rgba(255,255,255,0.12);
}
.service-optional {
  margin: 0;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.badge {
  margin-top: 0;
  align-self: center;
}
.service-cta-band {
  margin-top: 18px;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(74,179,244,0.28);
  background: linear-gradient(180deg, rgba(74,179,244,0.14), rgba(74,179,244,0.05));
  box-shadow: 0 14px 34px rgba(12, 24, 44, 0.45);
}
.service-cta-band h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.4vw, 30px);
}
.service-cta-band .btn-primary {
  width: min(100%, 420px);
  padding: 14px 24px;
  font-size: clamp(17px, 2vw, 21px);
}
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }

/* Subtle gradient edge on cards */
.card::before { content: ""; position: absolute; inset: 0; border-radius: 16px; pointer-events: none; opacity: 0; transition: opacity .25s ease; background: radial-gradient(500px 200px at 10% 0%, rgba(74,179,244,0.22), transparent 65%); }
.card:hover::before { opacity: 1; }

/* Pricing */
.pricing { grid-template-columns: 1fr; }
.pricing { align-items: stretch; }
.price-card { position: relative; background: var(--surface); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.price-card .btn { width: 100%; justify-content: center; white-space: nowrap; margin-top: auto; }
.pricing .price-card { height: 100%; }
.price-card .price { font-size: 28px; font-weight: 700; }
.price-card .per { font-size: 14px; color: var(--muted); margin-left: 6px; }
.price-card .badge { position: absolute; top: 12px; right: 12px; padding: 6px 10px; border-radius: 999px; font-size: 12px; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-700)); box-shadow: 0 10px 24px rgba(74,179,244,0.35); }
.price-card.featured { border-color: rgba(74,179,244,0.35); box-shadow: 0 18px 40px rgba(74,179,244,0.25); }
.price-positioning {
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
  margin: 2px 0 2px;
}
.price-highlights {
  color: var(--text);
  padding-left: 18px;
  margin: 2px 0 10px;
}
.price-highlights li { margin-bottom: 8px; }
.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
.pricing-header h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 0.2px;
  text-wrap: balance;
}
.pricing-header p {
  margin: 0;
  color: var(--muted);
  opacity: 0.8;
}
.pricing-unified {
  max-width: 860px;
  margin-inline: auto;
}
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-main,
.pricing-optional {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
}
.pricing-main .card-header,
.pricing-optional .card-header {
  margin: 0 0 8px;
  padding-top: 0;
}
.pricing-optional-section h4 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}
.price-addon-note {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 600;
}
.price-positioning {
  margin-top: 0;
}
.pricing-main > p:first-of-type,
.pricing-optional > p:first-of-type {
  margin-top: 0;
}
.price-extras {
  color: var(--muted);
  padding-left: 18px;
  margin: 0 0 12px;
}
.price-extras li { margin-bottom: 6px; }
.price-optional-label {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 2px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}
.pricing-footer-note {
  margin: 6px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-main {
    padding-right: 0;
  }

  .pricing-optional {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
    padding-top: 24px;
  }
}

@media (min-width: 1024px) {
  .card-header {
    flex-wrap: nowrap;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .pricing-main {
    padding-right: 40px;
  }

  .pricing-optional {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 40px;
  }
}
/* Glow ring on featured card */
.price-card.featured::after { content: ""; position: absolute; inset: -2px; border-radius: 20px; pointer-events: none; box-shadow: 0 0 16px rgba(74,179,244,0.2) inset; }
/* Always-on subtle inner glow for featured card (Website) */
.price-card.featured::before { content: ""; position: absolute; inset: 0; border-radius: 18px; pointer-events: none;
  background: radial-gradient(650px 300px at 50% -10%, rgba(255,255,255,0.04), transparent 70%);
}
/* Subtle pulse for "Empfohlen" badge */
.price-card.featured .badge { will-change: transform, filter; animation: badgePulse 3s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 10px 22px rgba(74,179,244,0.32)); transform: translateY(0) scale(1); }
  50% { filter: drop-shadow(0 12px 26px rgba(74,179,244,0.45)); transform: translateY(0) scale(1.02); }
}
.price-card ul { color: var(--muted); padding-left: 18px; }
.price-note {
  margin: 2px 0 10px;
  color: var(--muted);
  font-size: 14px;
}
/* Interactive states */
.price-card:hover { border-color: rgba(74,179,244,0.35); box-shadow: 0 18px 40px rgba(74,179,244,0.25); }
.price-card:active { transform: scale(0.99); }
.price-card.clicked { animation: glowPulse .6s ease-out; }
.card:active { transform: scale(0.99); }
.card.clicked { animation: glowPulse .6s ease-out; }
@keyframes glowPulse {
  0% { box-shadow: 0 0 0 rgba(74,179,244,0); }
  50% { box-shadow: 0 0 30px rgba(74,179,244,0.35); }
  100% { box-shadow: 0 0 0 rgba(74,179,244,0); }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.step-num { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: white; font-weight: 700; margin-bottom: 8px; }

/* Portfolio */
.portfolio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.portfolio-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 14px; box-shadow: var(--shadow); }
.portfolio-card .preview { height: 160px; border-radius: 12px; background: linear-gradient(135deg, rgba(74,179,244,0.26), rgba(74,179,244,0.1)), radial-gradient(600px 240px at 30% 20%, rgba(255,255,255,0.06), transparent 70%); border: 1px solid rgba(255,255,255,0.08); }

/* Why us + social proof */
.why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stars { color: #ffd36a; letter-spacing: 2px; margin: 0 0 8px; font-size: 18px; }
.testimonials-slider {
  --visible-slides: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.testimonials-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform .38s ease;
  will-change: transform;
  touch-action: pan-y;
}
.testimonial-slide {
  flex: 0 0 calc((100% - (var(--visible-slides) - 1) * 16px) / var(--visible-slides));
  min-width: calc((100% - (var(--visible-slides) - 1) * 16px) / var(--visible-slides));
  margin: 0;
}
.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.testimonial-nav:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.testimonial-nav:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
}
.testimonial-dot.is-active {
  width: 24px;
  background: var(--primary);
}
.logo-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.logo-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.28);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

/* Above-the-fold social proof strip */
.social-proof-strip {
  padding-top: 26px;
  padding-bottom: 34px;
}
.social-proof-strip .logo-row {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 14px;
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.metric-item {
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  color: var(--text);
  font-weight: 600;
}
.metric-mobile { display: none; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(74,179,244,0.14), rgba(74,179,244,0.04));
  border: 1px solid rgba(74,179,244,0.3);
  box-shadow: 0 14px 34px rgba(12, 24, 44, 0.45);
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(24px, 4vw, 36px); }
.cta-band p { margin: 0 0 16px; color: var(--muted); }
.cta-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}
.cta-box {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.cta-box .btn-primary {
  display: inline-block;
  margin-top: 25px;
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 10px; }
.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(74,179,244,0.45);
}
.faq-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .28s ease;
  margin-right: 2px;
}
.faq-item.is-open .faq-icon { transform: rotate(-135deg); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-panel p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

/* Contact */
.contact .contact-form { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); position: relative; overflow: visible; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field + .form-field { margin-top: 12px; }
.contact-form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  margin: 0 0 6px;
  font-size: 14px;
}
.secondary-label { opacity: 0.78; font-size: 13px; }
.required { color: #7fc8ff; font-weight: 700; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 16px;
}

.native-select { display: none; }
.custom-select { position: relative; width: 100%; }
.custom-select-trigger {
  width: 100%;
  min-height: 46px;
  padding: 12px 42px 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-58%) rotate(45deg);
  transition: transform .18s ease;
}
.custom-select.is-open .custom-select-trigger::after { transform: translateY(-18%) rotate(-135deg); }
.custom-select-trigger.is-placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus,
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger {
  outline: none;
  border-color: rgba(74,179,244,0.65);
  box-shadow: 0 0 0 3px rgba(74,179,244,0.18);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(14, 24, 42, 0.98);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.custom-select-option {
  padding: 10px;
  border-radius: 9px;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
}
.custom-select-option:hover,
.custom-select-option.is-focused { background: rgba(255,255,255,0.08); }
.custom-select-option.is-selected { background: rgba(74,179,244,0.18); color: #dff0ff; }

.contact-form textarea {
  resize: none;
  min-height: 160px;
  max-height: 260px;
  overflow-y: hidden;
  transition: height .2s ease;
}

.contact-form input.error,
.contact-form textarea.error,
.custom-select.error .custom-select-trigger {
  border-color: rgba(255, 77, 77, 0.8);
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.16);
}

.label-with-tooltip { gap: 8px; }
.form-field-tooltip { margin-bottom: 16px; }
.tooltip-wrap { position: relative; display: inline-flex; align-items: center; isolation: isolate; }
.info-trigger {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.info-trigger:hover,
.info-trigger[aria-expanded="true"] { color: var(--text); border-color: rgba(127,200,255,0.7); }

.form-tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 60;
  width: clamp(240px, 32vw, 320px);
  min-width: 240px;
  max-width: min(320px, 90vw);
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,18,32,0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transform-origin: top left;
  transition: opacity .22s ease, transform .22s ease;
}
.tooltip-wrap.is-open .form-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.error-message {
  min-height: 18px;
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #ff6f6f;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .18s ease, transform .18s ease;
}
.error-message.is-visible { opacity: 1; transform: translateY(0); }
.form-submit-error {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 13px;
  color: #ff7b7b;
  opacity: 0;
  transition: opacity .18s ease;
}
.form-submit-error.is-visible { opacity: 1; }
.form-note { color: var(--muted); font-size: 12px; margin-top: 10px; }
.contact-form .btn-primary { margin-top: 24px; margin-bottom: 14px; }

.success-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 12px 30px rgba(74,179,244,0.14);
  animation: successFadeIn .35s ease;
}
.success-box h3 { margin: 0 0 8px; color: #7edc8a; font-size: clamp(20px, 3vw, 24px); }
.success-box p { margin: 0; color: var(--text); }
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); background: linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03)); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 18px 0; }
.footer-nav a { color: var(--muted); text-decoration: none; margin-right: 12px; }
.footer-nav a:hover { color: var(--text); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); }
.footer-brand .logo { gap: 10px; }
.footer-brand .logo-box {
  background: linear-gradient(135deg, #2f8fe3, #1a5ed8);
}
.footer-brand .logo-text {
  color: var(--muted);
  white-space: nowrap;
}
.footer-copy { color: var(--muted); font-size: 14px; }

/* Reveal animation */
.reveal > * { opacity: 0; transform: translateY(12px) scale(0.98); will-change: opacity, transform; }
.reveal > *.revealed { opacity: 1; transform: translateY(0) scale(1); }
@keyframes pop {
  0% { opacity: 0; transform: translateY(12px) scale(0.98); }
  70% { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Media */
@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .portfolio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { width: calc(100% - 40px); }
  .section { padding: 64px 0; }
  .hero { padding: 54px 0 42px; }
  .hero-copy { max-width: min(560px, 100%); }
  .hero h1 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.18;
    letter-spacing: 0.1px;
    margin-bottom: 16px;
  }
  .lead-desktop { display: none; }
  .lead-mobile {
    display: block;
    width: min(96%, 36ch);
    font-size: 16px;
    line-height: 1.45;
    margin: 0 auto 10px;
  }
  .hero-proof { margin-top: 18px; margin-bottom: 20px; }
  .hero-proof-item:nth-child(n+3) { display: none; }
  .hero-ctas { margin-top: 18px; }
  .hero-ctas .btn-primary {
    width: 100%;
    min-width: 0;
    padding: 11px 16px;
    font-size: 16px;
    filter: none;
    box-shadow: 0 6px 14px rgba(35, 109, 182, 0.2);
  }
  .hero-target { margin-bottom: 12px; font-size: 14px; }
  .stats-bar {
    padding: 20px 15px;
    gap: 14px;
    max-width: 100%;
    margin-top: 24px;
  }
  .stat-number {
    font-size: 17px;
  }
  .stat-label {
    font-size: 12px;
  }
  .divider {
    height: 36px;
  }
  .hero-mini-trust { font-size: 13px; margin-top: 10px; }
  .section-subtitle, .card p { max-width: 38ch; }
  .section-subtitle { margin-bottom: 18px; }
  .grid { gap: 14px; }
  .card { padding: 16px; }
  .form-tooltip {
    width: clamp(240px, 90vw, 280px);
    min-width: min(240px, 90vw);
    max-width: 90vw;
    padding: 12px 14px;
  }
  .metrics-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 8px;
    margin: 0 -20px;
    align-items: stretch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .metrics-row::-webkit-scrollbar { display: none; }
  .metric-item {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: center;
    min-height: 108px;
    padding: 18px 18px;
    font-size: 13px;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  }
  .metric-desktop { display: none; }
  .metric-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
  }
  .metric-value {
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--text);
  }
  .metric-label {
    font-size: 13px;
    line-height: 1.25;
    color: var(--muted);
  }
  .testimonials-slider {
    --visible-slides: 1;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .testimonials-viewport { overflow: hidden; }
  .testimonial-nav {
    width: 36px;
    height: 36px;
    justify-self: center;
  }
  .testimonial-nav.prev,
  .testimonial-nav.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .testimonials-slider { position: relative; }
  .testimonial-nav.prev { left: 8px; }
  .testimonial-nav.next { right: 8px; }
}
@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); border-radius: 12px; color: var(--text); margin-right: 12px; }
  .nav-menu { display: none; }
  .mobile-menu { width: 88%; padding: 26px 22px; }
  .hero { padding: 64px 0 48px; }
  .hero-proof-item { font-size: 13px; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-ctas .btn-primary { width: 100%; padding: 12px 16px; font-size: 16px; }
  .hero-ctas .btn-outline { width: auto; }
  .btn { padding: 10px 14px; font-size: 15px; }
  .problem-grid, .audience-grid, .cards, .pricing, .steps, .portfolio, .why-grid { grid-template-columns: 1fr; }
  .metric-item { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
  .service-cta-band { padding: 18px 14px; }
  .service-cta-band h3 { font-size: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band { padding: 18px 14px; }
  .sticky-mobile-cta { display: inline-flex; }
  .cookie-banner { bottom: 88px; }
}

@media (max-width: 720px) {
  /* Soften featured card glow on mobile */
  .price-card.featured::before { background: radial-gradient(600px 280px at 50% -10%, rgba(255,255,255,0.04), transparent 70%); }
  .price-card.featured::after { box-shadow: 0 0 18px rgba(74,179,244,0.2) inset; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .card, .price-card, .reveal > *.revealed, .stat-item { transition: none; animation: none; }
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 998;
  justify-content: center;
  text-align: center;
}

/* Cookie banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 12px; z-index: 999; }
.cookie-inner { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; background: rgba(10,18,32,0.85); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 14px; backdrop-filter: blur(8px); }
.cookie-inner p { margin: 0; color: var(--muted); }
.cookie-inner a { color: var(--text); }
.cookie-banner.hidden { display: none; }

/* Anchor offset for sticky header */
.section, .anchor { scroll-margin-top: 90px; }
