
:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f9fbff;
  --surface-3: #eef3fb;
  --border: #dfe7f2;
  --text: #1a2333;
  --muted: #5e6d84;
  --muted-2: #7f8da3;
  --purple: #6a4cf4;
  --purple-dark: #5135ca;
  --purple-soft: #f3efff;
  --purple-line: #ddd3ff;
  --green-soft: #edf8f4;
  --green: #2d9870;
  --shadow: 0 24px 60px rgba(18, 38, 68, 0.08);
  --shadow-soft: 0 12px 28px rgba(18, 38, 68, 0.06);
  --radius: 28px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 76, 244, 0.045), transparent 22%),
    linear-gradient(180deg, #fcfdff 0%, #f6f8fc 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
main { overflow: clip; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 242, 0.9);
}
.navbar-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 56px; width: auto; }
.navbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.navbar > a,
.nav-dropdown-toggle {
  padding: 11px 15px;
  border-radius: 999px;
  color: #36445d;
  font-weight: 600;
  transition: .2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.navbar > a:hover,
.navbar > a.active,
.nav-dropdown.active > .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  color: var(--purple-dark);
  background: var(--purple-soft);
}
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 8px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  z-index: 50;
  width: 260px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #44526b;
  font-weight: 600;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--purple-soft);
  color: var(--purple-dark);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.hero-slider { padding: 34px 0 20px; }
.slider-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.slider {
  position: relative;
  min-height: 600px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 58px;
  transition: opacity .45s ease;
}
.slide.is-active { position: relative; opacity: 1; pointer-events: auto; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 14%, rgba(106, 76, 244, 0.08), transparent 24%),
    radial-gradient(circle at 82% 84%, rgba(45, 152, 112, 0.055), transparent 30%);
  pointer-events: none;
}
.slide-copy,
.slide-visual { position: relative; z-index: 1; }
.slide-copy h1,
.slide-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.slide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  max-width: 670px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 13px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, #7e60fb 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(106, 76, 244, 0.23);
}
.btn-secondary {
  background: #fff;
  color: var(--purple-dark);
  border-color: var(--purple-line);
}
.btn-ghost {
  background: var(--surface-3);
  color: var(--text);
  border-color: transparent;
}
.slide-visual { display: grid; place-items: center; }
.showcase-panel {
  width: 100%;
  max-width: 450px;
  min-height: 430px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,255,0.95));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.car-showcase { padding: 26px; }
.car-stage {
  position: absolute;
  inset: 22px 22px 90px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
  border: 1px solid #e8eef8;
}
.car-glow {
  position: absolute;
  left: 50%;
  bottom: 78px;
  width: 68%;
  height: 90px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(106,76,244,.15) 0%, rgba(106,76,244,0) 72%);
}
.car-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 180px;
  transform: translate(-50%, -35%);
}
.car-topline {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 44%;
  height: 32%;
  border: 10px solid var(--purple);
  border-bottom: 0;
  border-radius: 80px 120px 0 0;
}
.car-body {
  position: absolute;
  left: 6%;
  bottom: 36px;
  width: 88%;
  height: 84px;
  background: linear-gradient(135deg, var(--purple) 0%, #8368ff 100%);
  border-radius: 60px 110px 32px 34px;
  box-shadow: inset 0 -10px 0 rgba(0,0,0,.06);
}
.car-body::before {
  content: "";
  position: absolute;
  right: 16%;
  top: 18px;
  width: 24%;
  height: 16px;
  background: rgba(255,255,255,.32);
  border-radius: 999px;
}
.wheel {
  position: absolute;
  bottom: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #253246;
  box-shadow: inset 0 0 0 12px #41506b, inset 0 0 0 24px #d8dfeb;
}
.wheel-left { left: 20%; }
.wheel-right { right: 16%; }
.showcase-note {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--text);
}
.note-top { top: 18px; right: 18px; }
.note-bottom { bottom: 18px; left: 18px; }
.info-showcase { padding: 20px; display: grid; gap: 16px; align-content: center; }
.info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-stat,
.benefit-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.info-stat strong,
.benefit-card strong,
.trust-item strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.info-stat span,
.benefit-card span,
.trust-item span,
.feature-card p,
.step-card p,
.footer-text,
.prose-card p,
.prose-card li,
.form-heading p,
.detail-list li span,
.alert,
.site-form label span,
.site-form input,
.site-form textarea,
.footer-links a,
.timeline-card p,
.footer-bottom,
.section-heading p {
  color: var(--muted);
  line-height: 1.8;
}
.timeline-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.timeline-card div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--surface-2);
}
.timeline-card span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 800;
}
.timeline-card p { margin: 0; font-weight: 600; color: var(--text); }
.benefit-showcase { padding: 20px; display: grid; gap: 16px; align-content: center; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 0 24px;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c7d1df;
  padding: 0;
  cursor: pointer;
}
.slider-dots button.is-active { background: var(--purple); }

.trust-strip { padding: 18px 0 8px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-item {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}
.section { padding: 76px 0; }
.section-soft { background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%); }
.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.steps-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps-grid { grid-template-columns: repeat(5, 1fr); }
.step-card,
.feature-card,
.card-soft,
.prose-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
}
.step-card {
  padding: 24px 20px;
}
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3,
.feature-card h3,
.form-heading h2,
.prose-card h1,
.prose-card h2 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.feature-card { padding: 24px; }
.info-layout { display: grid; gap: 22px; }
.cta-section { padding: 0 0 80px; }
.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  border-radius: 32px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f4ff 100%);
  border: 1px solid var(--purple-line);
  box-shadow: var(--shadow);
}
.cta-card h2 {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.cta-card p { margin: 0; color: var(--muted); line-height: 1.8; }

.page-hero {
  padding: 46px 0 10px;
}
.page-hero .narrow {
  max-width: 860px;
}
.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.page-hero p { margin: 0; color: var(--muted); line-height: 1.85; font-size: 18px; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.form-sections { display: grid; gap: 22px; }
.clean-card { padding: 26px; }
.detail-list,
.footer-links { list-style: none; margin: 0; padding: 0; }
.detail-list li,
.footer-links li { margin-bottom: 10px; }
.detail-list a,
.footer-links a { font-weight: 600; color: var(--text); }
.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { width: 100%; min-height: 320px; border: 0; display: block; }
.form-heading { margin-bottom: 16px; }
.site-form { display: grid; gap: 16px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.site-form label { display: block; }
.site-form label span { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); }
.site-form input,
.site-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--text);
}
.site-form textarea { resize: vertical; min-height: 130px; }
.site-form .full { grid-column: 1 / -1; }
.hidden-field { position: absolute; left: -9999px; }
.alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}
.alert-success { background: var(--green-soft); color: var(--green); border: 1px solid #cdeee0; }
.alert-error { background: #fff1f4; color: #c14666; border: 1px solid #ffd4df; }
.prose-card { padding: 28px; }
.prose-card h1 { font-size: clamp(32px, 4.5vw, 52px); }
.prose-card h2 { margin-top: 28px; font-size: 26px; }
.prose-card ul { padding-left: 18px; }

.site-footer {
  padding: 32px 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  gap: 22px;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 16px; }
.site-footer h4 { margin: 0 0 14px; letter-spacing: -0.02em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1080px) {
  .slide,
  .cta-card,
  .contact-layout,
  .footer-grid,
  .trust-grid,
  .steps-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .slider { min-height: 760px; }
  .slide { padding: 36px; }
  .showcase-panel { max-width: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .navbar {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .navbar.open { display: flex; }
  .navbar > a,
  .nav-dropdown-toggle,
  .nav-dropdown-menu a { border-radius: 14px; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 16px;
    margin-top: 6px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .brand img { height: 50px; }
}
@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .slide,
  .clean-card,
  .prose-card,
  .cta-card,
  .step-card,
  .feature-card { padding: 22px; }
  .slide-copy p,
  .page-hero p,
  .section-heading p { font-size: 16px; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .form-grid,
  .info-row { grid-template-columns: 1fr; }
  .slider { min-height: 840px; }
  .showcase-note { position: static; margin-top: 12px; display: inline-flex; }
  .car-stage { inset: 14px 14px 110px; }
  .car-card { width: 88%; }
  .footer-bottom { flex-direction: column; }
}


.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 0 0 18px;
  transform: translateY(calc(100% + 18px));
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.cookie-banner.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(18, 38, 68, 0.16);
}
.cookie-banner__content{
  max-width: 860px;
}
.cookie-banner__eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-banner__content h2{
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}
.cookie-banner__content p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.cookie-banner__content a{
  color: var(--purple-dark);
  font-weight: 700;
}
.cookie-banner__actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__actions .btn{
  min-height: 46px;
  white-space: nowrap;
}
.cookie-banner__link{
  border-color: var(--purple-line);
}

@media (max-width: 920px) {
  .cookie-banner__inner{align-items:flex-start;flex-direction:column}
  .cookie-banner__actions{align-items:stretch;flex-direction:column;width:100%}
  .cookie-banner__actions .btn{width:100%}
}

@media (max-width: 640px) {
  .cookie-banner{padding:0 0 12px}
  .cookie-banner__inner{padding:16px}
  .cookie-banner__content h2{font-size:18px}
}
