/* ------------------------------
  Stripe-inspired (but original) system
------------------------------ */

:root {
  --bg: #0b1020;
  --bg2: #0d1633;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --shadow2: 0 14px 30px rgba(0,0,0,0.28);

  --brand1: #7c3aed; /* violet */
  --brand2: #22c55e; /* green */
  --brand3: #06b6d4; /* cyan */
  --brand4: #f59e0b; /* amber */

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Light mode overrides (via data-theme) */
html[data-theme="light"] {
  --bg: #f7f9ff;
  --bg2: #eef2ff;
  --card: rgba(0, 0, 0, 0.04);
  --card2: rgba(0, 0, 0, 0.06);
  --stroke: rgba(0, 0, 0, 0.10);
  --text: rgba(10, 18, 38, 0.92);
  --muted: rgba(10, 18, 38, 0.72);
  --faint: rgba(10, 18, 38, 0.55);
  --shadow: 0 24px 60px rgba(10,18,38,0.16);
  --shadow2: 0 14px 30px rgba(10,18,38,0.12);
}
html[data-theme="light"] .lang-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.98));
  box-shadow: 0 8px 24px rgba(10, 18, 38, 0.12), 0 0 0 1px rgba(10,18,38,0.08) inset;
}
html[data-theme="light"] .lang-menu a {
  border-bottom: 1px solid rgba(10,18,38,0.08);
}
html[data-theme="light"] .lang-menu a:hover {
  background: rgba(10,18,38,0.08);
}
html[data-theme="light"] .mobile-lang-dropdown .lang-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.98));
  box-shadow: 0 8px 24px rgba(10, 18, 38, 0.12), 0 0 0 1px rgba(10,18,38,0.08) inset;
}
html[data-theme="light"] .btn.primary {
  color: #ffffff;
  box-shadow: 0 20px 46px rgba(6,182,212,0.25);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-padding: 64px;
}

a { color: inherit; text-decoration: none; }
button { 
  font-family: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--muted);
}

/* Footer/contact info pill refinement */
#contact .pill {
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow2);
}
#contact .pill span:first-child { display: flex; gap: 8px; flex-wrap: wrap; }

/* Top nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.0);
  background: rgba(10, 14, 28, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
html[data-theme="light"] .nav { background: rgba(247, 249, 255, 0.65); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 720;
  letter-spacing: -0.02em;
}
.logo {
  width: 34px; 
  height: 34px; 
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 18px;
  font-size: 14px; color: var(--muted);
}
.nav-links a {
  padding: 8px 10px; border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--card); color: var(--text); }
.nav-links a:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-dropdown {
  position: relative;
}
.lang-dropdown .lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
  width: 70px;
}
.lang-dropdown .lang-btn:hover {
  background: rgba(255,255,255,0.08);
}
.lang-dropdown .lang-btn:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}
.lang-dropdown .arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform .2s ease;
}
.lang-dropdown.open .arrow {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.95), rgba(15,15,25,0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity .25s ease, visibility .25s ease, transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  overflow: hidden;
  pointer-events: none;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lang-menu a:last-child {
  border-bottom: none;
}
.lang-menu a:hover {
  background: rgba(255,255,255,0.12);
}
.lang-menu a[data-lang]:before {
  content: attr(data-lang);
  display: inline-block;
  width: 28px;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.5;
  text-transform: uppercase;
}
.icon-btn {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform .15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}
.btn {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  display: inline-flex; gap: 10px; align-items: center;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
  box-shadow: var(--shadow2);
  font-weight: 650;
  font-size: 14px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}
.btn.primary {
  border: 0;
  background: linear-gradient(90deg, var(--brand1), var(--brand3), var(--brand2));
  color: #061024;
  box-shadow: 0 20px 46px rgba(6,182,212,0.20);
}

.hamburger { display: none; }
.mobile-panel {
  display: none;
  padding: 12px 0 18px;
}
.mobile-panel > a, .mobile-panel > button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  margin-top: 10px;
}
.mobile-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.mobile-lang-dropdown {
  position: relative;
}
.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s ease;
  width: 70px;
}
.mobile-lang-btn:hover {
  background: rgba(255,255,255,0.08);
}
.mobile-lang-btn:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}
.mobile-lang-dropdown .arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform .2s ease;
}
.mobile-lang-dropdown.open .arrow {
  transform: rotate(180deg);
}
.mobile-lang-dropdown .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.95), rgba(15,15,25,0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity .25s ease, visibility .25s ease, transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10000;
  overflow: hidden;
  pointer-events: none;
}
.mobile-lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform .15s ease;
}
.mobile-theme-btn:hover {
  transform: translateY(-1px);
}

/* Hero */
.hero { 
  position: relative; 
  padding: 56px 0 28px; 
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(124,58,237,0.35), transparent 60%),
    radial-gradient(900px 650px at 85% 20%, rgba(6,182,212,0.30), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
.hero > .wrap {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 16px 0 14px;
  font-weight: 820;
}
.sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 0 18px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.mini {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.mini code {
  padding: 3px 7px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  white-space: nowrap;
}

/* Decorative slashes */
.slashes {
  position: absolute; 
  top: -180px;
  left: 0;
  right: 0;
  height: 520px;
  transform: skewY(-10deg);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.06) 18%,
      rgba(255,255,255,0.00) 36%,
      rgba(255,255,255,0.05) 55%,
      rgba(255,255,255,0.00) 72%,
      rgba(255,255,255,0.04) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 0.75;
  overflow: hidden;
  z-index: 0;
}
html[data-theme="light"] .slashes { opacity: 0.55; }

/* Hero demo card */
.demo {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.demo::before {
  content: "";
  position: absolute; inset: -2px;
  background: radial-gradient(600px 280px at 15% 0%, rgba(124,58,237,0.35), transparent 55%),
              radial-gradient(600px 280px at 85% 30%, rgba(6,182,212,0.30), transparent 55%),
              radial-gradient(600px 280px at 50% 100%, rgba(34,197,94,0.26), transparent 60%);
  filter: blur(0px);
  opacity: 0.9;
  pointer-events: none;
}
.demo-inner { position: relative; padding: 18px; }
.demo-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 6px 6px 14px;
  border-bottom: 1px solid var(--stroke);
}
.dots { display: flex; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.26); border: 1px solid rgba(255,255,255,0.18); }
html[data-theme="light"] .dot { background: rgba(10,18,38,0.16); border-color: rgba(10,18,38,0.14); }

.live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  padding: 7px 10px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.pulse {
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(34,197,94,0.0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.0); }
}

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.kpi {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 12px;
  min-height: 82px;
}
.kpi b { display: block; font-size: 18px; letter-spacing: -0.02em; }
.kpi span { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }

.codebox {
  margin-top: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  padding: 12px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  overflow: auto;
  max-height: 160px;
  color: rgba(255,255,255,0.86);
}
html[data-theme="light"] .codebox { background: rgba(10,18,38,0.06); color: rgba(10,18,38,0.86); }

/* Sections */
.section { 
  padding: 34px 0; 
  position: relative;
}

/* Services section - violet/purple gradient */
#services {
  background:
    radial-gradient(1000px 600px at 85% 50%, rgba(124,58,237,0.28), transparent 60%),
    radial-gradient(800px 500px at 15% 50%, rgba(139,92,246,0.20), transparent 55%),
    var(--bg2);
}

/* Work section - cyan/teal gradient */
#work {
  background:
    radial-gradient(900px 550px at 20% 50%, rgba(6,182,212,0.30), transparent 60%),
    radial-gradient(850px 500px at 80% 50%, rgba(14,165,233,0.22), transparent 55%),
    var(--bg);
}

/* Process section - green/emerald gradient */
#process {
  background:
    radial-gradient(950px 600px at 50% 50%, rgba(34,197,94,0.25), transparent 60%),
    radial-gradient(800px 500px at 85% 50%, rgba(16,185,129,0.18), transparent 55%),
    var(--bg2);
}

/* Pricing section - amber/orange gradient */
#pricing {
  background:
    radial-gradient(1000px 650px at 15% 50%, rgba(164, 17, 244, 0.22), transparent 60%),
    radial-gradient(850px 550px at 85% 50%, rgba(18, 218, 171, 0.18), transparent 55%),
    var(--bg);
}

/* Testimonials section - mixed violet/cyan */
.section:has(.carousel) {
  background:
    radial-gradient(900px 500px at 70% 50%, rgba(124,58,237,0.20), transparent 60%),
    radial-gradient(800px 450px at 30% 50%, rgba(6,182,212,0.18), transparent 55%),
    var(--bg2);
}

/* Contact section - green/cyan gradient */
#contact {
  background:
    radial-gradient(1100px 700px at 50% 20%, rgba(34,197,94,0.28), transparent 60%),
    radial-gradient(900px 600px at 30% 80%, rgba(6,182,212,0.25), transparent 55%),
    var(--bg);
}

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  margin-bottom: 16px;
}
.h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 820;
}
.hint { color: var(--muted); margin: 0; max-width: 65ch; line-height: 1.6; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}
.card.revealed { transform: translateY(0); opacity: 1; }
.card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
}
.card h3 {
  margin: 10px 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

/* Interactive feature tabs */
.tabs {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}
.tab {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.tab:hover { transform: translateY(-1px); color: var(--text); }
.tab:focus-visible {
  outline: 2px solid var(--brand3);
  outline-offset: 2px;
}
.tab[aria-selected="true"] {
  color: var(--text);
  border-color: var(--stroke);
  background: linear-gradient(90deg, rgba(124,58,237,0.22), rgba(6,182,212,0.16), rgba(34,197,94,0.14));
}

.tabpanel {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.bullets { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.65; }
.bullets li { margin: 6px 0; }
.panel-card {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px;
}
.metric {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--stroke);
  padding: 10px 0;
}
.metric:last-child { border-bottom: 0; }
.metric b { font-size: 16px; letter-spacing: -0.02em; }
.metric span { color: var(--muted); font-size: 12px; }

/* Pricing toggle */
.pricing-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin: 12px 0;
}
.toggle {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 6px 8px;
  color: var(--muted);
  font-size: 13px;
}
.switch {
  width: 46px; height: 28px; border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  position: relative;
  cursor: pointer;
}
.knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 999px;
  background: linear-gradient(90deg, var(--brand1), var(--brand3));
  transition: left .2s ease;
}
.switch[data-on="true"] .knob { left: 21px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03));
  padding: 18px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price.featured {
  border: 1px solid rgba(6,182,212,0.45);
  box-shadow: 0 28px 70px rgba(6,182,212,0.16);
}
.price h3 { margin: 0 0 6px; font-size: 16px; }
.price .p { margin: 0 0 12px; color: var(--muted); line-height: 1.55; font-size: 13px; }
.price .list { flex-grow: 1; }
.price .btn { margin-top: 16px; }
.amount { margin: 14px 0 10px; font-size: 34px; letter-spacing: -0.03em; font-weight: 860; }
.amount small { font-size: 13px; color: var(--muted); font-weight: 650; }
.amount-placeholder { 
  margin: 14px 0 10px; 
  font-size: 16px; 
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.list { margin: 12px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; font-size: 14px; }

/* Testimonials */
.carousel {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.quote {
  min-height: 110px;
  transition: transform .35s ease, opacity .35s ease;
}
.quote p { margin: 0 0 10px; color: var(--text); line-height: 1.6; font-size: 15px; }
.quote .who { color: var(--muted); font-size: 13px; }
.car-actions { display: flex; gap: 10px; margin-top: 10px; }

/* CTA */
.cta {
  border: 1px solid var(--stroke);
  background: linear-gradient(90deg, rgba(124,58,237,0.18), rgba(6,182,212,0.14), rgba(34,197,94,0.12));
  border-radius: var(--radius2);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.cta h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.02em; }
.cta p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Contact Form */
.contact-form {
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border-radius: var(--radius2);
  padding: 28px;
  box-shadow: var(--shadow2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}
.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand3);
  background: rgba(255,255,255,0.09);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--faint);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Turnstile widget styling */
.cf-turnstile {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

#formStatus {
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
  transition: color 0.3s ease;
}

#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

footer {
  padding: 26px 0 40px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 26px;
}
html[data-theme="light"] footer { border-top-color: rgba(10,18,38,0.10); }
.foot {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap;
}
.foot a { color: var(--muted); }
.foot a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px; }
  .hero { padding: 40px 0 24px; }
  .section { padding: 28px 0; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-panel.open { display: block; }
  .nav-cta .lang-dropdown,
  .nav-cta .icon-btn#themeBtn {
    display: none;
  }
}
@media (max-width: 480px) {
  .wrap { padding: 0 12px; }
  .h1 { font-size: 32px; }
  .h2 { font-size: 24px; }
  .tabs { grid-template-columns: 1fr; }
  .pill { font-size: 12px; padding: 8px 12px; }
  .contact-form { padding: 20px; }
  .slashes { display: none; }
}

/* Mobile refinements */
@media (max-width: 640px) {
  #contact .pill {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--card);
    box-shadow: none;
  }
  #contact .pill span { display: flex; flex-wrap: wrap; gap: 6px; }
  .mini { gap: 6px 6px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; }
  .card { transition: none; }
  .quote { transition: none; }
  .btn:hover, .icon-btn:hover, .tab:hover { transform: none; }
}
