/* IS-CSS-START */
/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 50%, #020617 100%);
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
}

/* Layout helpers */
.is-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Background luxury glow / ocean vibe */
.is-bg-orbit {
  position: fixed;
  inset: -40%;
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18) 0, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(129, 140, 248, 0.18) 0, transparent 45%),
    radial-gradient(circle at 40% 100%, rgba(56, 189, 248, 0.2) 0, transparent 55%);
  filter: blur(10px);
  opacity: 0.8;
}

.is-bg-orbit-2 {
  transform: rotate(8deg);
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Subtle grain */
.is-bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: -1;
}

/* Header */
.is-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.7), transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.is-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

/* Logo */
.is-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.is-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, #e5e7eb 0, #38bdf8 38%, #0f172a 75%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
}

.is-logo-fin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #0f172a, #22d3ee);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 7px;
  left: 9px;
}

.is-logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.is-logo-main {
  color: #e5e7eb;
}
.is-logo-accent {
  color: #38bdf8;
}

/* Nav */
.is-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.is-nav-link {
  color: #9ca3af;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.is-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #38bdf8, #a855f7);
  transition: width 0.2s ease;
}

.is-nav-link:hover {
  color: #e5e7eb;
}
.is-nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.is-btn {
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.is-btn-primary {
  background: radial-gradient(circle at 10% 0%, #38bdf8 0, #0ea5e9 40%, #22c55e 100%);
  color: #0b1120;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(56, 189, 248, 0.4);
}

.is-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(56, 189, 248, 0.55);
}

.is-btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.6) 0, rgba(15, 23, 42, 0.9) 60%);
}

.is-btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85) 0, rgba(15, 23, 42, 1) 70%);
}

.is-btn-large {
  padding: 11px 22px;
  font-size: 15px;
}

.is-btn-full {
  width: 100%;
}

/* Header CTA group */
.is-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hero */
.is-hero {
  padding: 40px 0 60px;
}

.is-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.is-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px 4px 5px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2) 0, rgba(15, 23, 42, 0.9) 55%);
  border: 1px solid rgba(129, 140, 248, 0.5);
  margin-bottom: 18px;
}

.is-hero-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.is-text-gradient {
  background: linear-gradient(120deg, #38bdf8, #a855f7, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.is-hero-subtitle {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 22px;
}

.is-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.is-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #9ca3af;
}

.is-hero-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(30, 64, 175, 0.7);
}

/* Hero card */
.is-hero-card {
  background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18) 0, rgba(15, 23, 42, 0.96) 55%);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  position: relative;
}

.is-hero-card::before {
  /* subtle shine like a glass panel */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.06), transparent 45%, rgba(15, 23, 42, 0.6) 75%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.is-hero-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.7);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
}

.is-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fda4af, #fb7185);
}

.is-dot:nth-child(2) {
  background: radial-gradient(circle at 30% 20%, #facc15, #f97316);
}
.is-dot:nth-child(3) {
  background: radial-gradient(circle at 30% 20%, #6ee7b7, #22c55e);
}

.is-hero-card-title {
  margin-left: auto;
  font-size: 12px;
  color: #cbd5f5;
}

.is-hero-card-body {
  position: relative;
  z-index: 1;
  padding: 16px 16px 18px;
}

.is-hero-listing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.is-hero-car-title {
  font-size: 14px;
  font-weight: 600;
}

.is-hero-car-detail {
  font-size: 12px;
  color: #9ca3af;
}

.is-hero-price-chip {
  background: radial-gradient(circle at 20% 0, #22c55e 0, #16a34a 40%, #15803d 100%);
  color: #022c22;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.6);
}

.is-hero-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.is-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 3px;
  display: block;
}

.is-field-box {
  border-radius: 14px;
  padding: 9px 11px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85) 0, rgba(15, 23, 42, 0.95) 60%);
  border: 1px solid rgba(30, 64, 175, 0.7);
  font-size: 12px;
  color: #e5e7eb;
}

.is-field-box-multi {
  max-height: 80px;
  overflow: hidden;
}

.is-photo-row {
  display: flex;
  gap: 6px;
}

.is-photo-skeleton {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: radial-gradient(circle at 10% 0, #1e293b 0, #020617 60%);
  position: relative;
  overflow: hidden;
}

.is-photo-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0,
    rgba(148, 163, 184, 0.16) 15%,
    transparent 30%
  );
  transform: translateX(-100%);
  animation: is-shimmer 2s infinite;
}

/* subtle twinkling for ocean luxury */
@keyframes is-shimmer {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.is-hero-caption {
  margin-top: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* Trust section */
.is-trust {
  padding: 6px 0 26px;
}

.is-trust-inner {
  text-align: center;
}

.is-trust-label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.is-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: 12px;
}

.is-trust-logos span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.85) 0, rgba(15, 23, 42, 1) 55%);
}

/* Generic sections */
.is-section {
  padding: 40px 0;
}

.is-section-alt {
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9) 0, rgba(15, 23, 42, 1) 55%);
  border-top: 1px solid rgba(15, 23, 42, 1);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.is-section-header {
  text-align: left;
  max-width: 640px;
  margin-bottom: 24px;
}

.is-section-title {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.is-section-subtitle {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

/* Features grid */
.is-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.is-feature-card {
  border-radius: 20px;
  padding: 16px 14px 16px;
  border: 1px solid rgba(30, 64, 175, 0.7);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.92) 0, rgba(15, 23, 42, 1) 65%);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.75);
}

.is-feature-icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.is-feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.is-feature-card p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Steps */
.is-steps {
  display: grid;
  gap: 14px;
}

.is-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.is-step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #bae6fd;
  margin-top: 2px;
}

.is-step-body h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.is-step-body p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
}

/* Dealer section */
.is-dealer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.is-dealer-copy .is-section-title {
  margin-bottom: 8px;
}

.is-list {
  list-style: none;
  margin: 16px 0 16px;
  font-size: 13px;
  color: #e5e7eb;
}

.is-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.is-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 2px;
  color: #38bdf8;
}

.is-dealer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.is-dealer-badges span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #cbd5f5;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.85) 0, rgba(15, 23, 42, 1) 60%);
}

.is-dealer-card {
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.8);
  background: radial-gradient(circle at 10% 0, rgba(30, 64, 175, 0.4) 0, rgba(15, 23, 42, 1) 70%);
  padding: 16px 16px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.is-dealer-card-header h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.is-dealer-list {
  list-style: none;
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.is-dealer-list li {
  margin-bottom: 6px;
}

.is-dealer-note {
  font-size: 12px;
  color: #cbd5f5;
}

/* CTA */
.is-section-cta {
  padding: 40px 0 46px;
  border-top: 1px solid rgba(15, 23, 42, 1);
}

.is-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.is-cta-title {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.is-cta-subtitle {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

.is-cta-form {
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.8);
  padding: 18px 16px 16px;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.95) 0, rgba(15, 23, 42, 1) 65%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.is-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.is-cta-form input[type="text"],
.is-cta-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: radial-gradient(circle at 10% 0, #020617 0, #020617 60%);
  padding: 9px 12px;
  font-size: 13px;
  color: #e5e7eb;
  outline: none;
}

.is-cta-form input::placeholder {
  color: #6b7280;
}

.is-cta-form input:focus {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

.is-cta-footnote {
  margin-top: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* FAQ */
.is-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.is-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(30, 64, 175, 0.7);
  padding: 14px 14px 16px;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 1) 70%);
}

.is-faq-item h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.is-faq-item p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
}

/* Footer */
.is-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 18px 0 22px;
  background: radial-gradient(circle at top center, rgba(15, 23, 42, 0.98) 0, #020617 60%);
}

.is-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.is-footer-text {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.is-footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.is-footer-link {
  color: #9ca3af;
  text-decoration: none;
}

.is-footer-link:hover {
  color: #e5e7eb;
}

.is-footer-muted {
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .is-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .is-nav {
    display: none;
  }

  .is-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .is-hero-card {
    order: -1;
  }

  .is-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .is-dealer-inner,
  .is-cta-inner,
  .is-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .is-hero {
    padding-top: 26px;
  }

  .is-header-inner {
    padding: 12px 0;
  }

  .is-header-cta {
    margin-left: auto;
  }

  .is-hero-meta span {
    width: 100%;
  }

  .is-cta-form {
    padding: 14px 12px 14px;
  }
}
