/* carleasevergelijk.nl — design system */

:root {
  --color-bg: #f4f6f9;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-primary: #0d4f8b;
  --color-primary-hover: #0a3d6d;
  --color-accent: #14b8a6;
  --color-accent-soft: #ccfbf1;
  --color-hero-dark: #061525;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgb(15 23 42 / 6%);
  --shadow-md: 0 8px 30px rgb(15 23 42 / 8%);
  --shadow-lg: 0 20px 50px rgb(15 23 42 / 12%);
  --header-h: 72px;
  --container: min(1120px, 100% - 2rem);
  --container-hero: min(1320px, 100% - 1.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-hover);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgb(13 79 139 / 25%);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgb(20 184 166 / 30%);
}

.btn-accent:hover {
  background: #0d9488;
  color: white;
  box-shadow: 0 2px 10px rgb(20 184 166 / 35%);
}

.btn-ghost {
  background: rgb(255 255 255 / 12%);
  color: white;
  border-color: rgb(255 255 255 / 25%);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 20%);
  color: white;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--color-primary);
}

.logo-highlight {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.nav-desktop a.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-header {
  display: none;
  margin-left: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  width: 100%;
}

/* Homepage hero banner */
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 72vh, 640px);
  overflow: hidden;
  color: white;
}

.hero-banner-media {
  position: absolute;
  inset: 0;
}

.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 35%;
  filter: brightness(1.08) saturate(0.95);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(6 21 37 / 78%) 0%, rgb(6 21 37 / 42%) 38%, rgb(6 21 37 / 12%) 62%, transparent 85%),
    linear-gradient(0deg, rgb(6 21 37 / 40%) 0%, transparent 35%);
}

.hero-banner-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}

.hero-banner-content {
  max-width: 38rem;
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgb(6 21 37 / 55%) 0%,
    rgb(6 21 37 / 28%) 100%
  );
  backdrop-filter: blur(4px);
}

.eyebrow-light {
  background: rgb(255 255 255 / 15%);
  border-color: rgb(255 255 255 / 25%);
  color: white;
}

.hero-banner-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgb(6 21 37 / 55%);
}

.hero-banner-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgb(248 250 252 / 96%);
  line-height: 1.65;
  text-shadow: 0 1px 12px rgb(6 21 37 / 45%);
}

.hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  color: rgb(203 213 225);
}

.hero-banner-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Hero met vergelijker */
.hero-lease {
  position: relative;
  color: white;
  padding: 1.5rem 0 2.5rem;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.hero-lease-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgb(20 184 166 / 18%) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgb(13 79 139 / 35%) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-hero-dark) 0%, #0a2540 55%, #0d3d5c 100%);
}

.hero-lease-wrap {
  position: relative;
  width: var(--container-hero);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-lease-intro {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgb(20 184 166 / 20%);
  border: 1px solid rgb(20 184 166 / 35%);
  border-radius: 100px;
  color: var(--color-accent-soft);
}

.hero-lease-intro h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lease-tagline {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgb(203 213 225 / 90%);
  line-height: 1.55;
}

.hero-lease-tool {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  min-height: 420px;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 8%),
    var(--shadow-lg),
    0 40px 80px rgb(0 0 0 / 25%);
  overflow: hidden;
}

.hero-lease-tool .dc-tool {
  width: 100%;
}

.hero-lease-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-lease-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(203 213 225);
}

.hero-lease-trust svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.hero-lease-trust strong {
  color: white;
  font-weight: 600;
}

/* Sections */
.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-lead {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  text-align: center;
  color: var(--color-text-muted);
}

.section-title-left {
  text-align: left;
}

.lease-types {
  padding: 4rem 0;
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.type-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.type-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgb(13 79 139 / 20%);
  transform: translateY(-2px);
}

.type-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
}

.type-card-image .type-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.type-card-image .type-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.type-card-image:hover .type-card-media img {
  transform: scale(1.04);
}

.type-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.type-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.type-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.type-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.type-card li + li {
  margin-top: 0.25rem;
}

/* Promo strip */
.promo-strip {
  padding: 4rem 0;
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.promo-strip-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.promo-strip-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.promo-strip-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.promo-strip-content h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.promo-strip-content p {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.card-link {
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Steps */
.steps {
  padding: 4rem 0;
}

.steps-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.steps-copy .section-title {
  margin-bottom: 1.5rem;
}

.steps-copy > .btn {
  margin-top: 2rem;
}

.steps-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.steps-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.steps-list {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps-list li {
  position: relative;
  padding-left: 4rem;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
}

.steps-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.steps-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Content */
.content-block {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  gap: 2.5rem;
}

.content-grid h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.content-grid p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.content-aside {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.content-figure {
  margin: 0 0 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.content-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.content-aside h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* CTA */
.cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a3d6d 100%);
  color: white;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-inner p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-band .btn-primary:hover {
  color: white;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  margin: 0;
}

.tag-list a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--color-accent-soft);
  color: #0f766e;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.tag-list a:hover {
  background: var(--color-accent);
  color: white;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  padding-right: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.faq-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-section-head .section-title {
  margin-bottom: 0;
}

.faq-section-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.faq-section-link:hover {
  text-decoration: underline;
}

/* Disclaimer / juridische pagina's */
.page-disclaimer .legal-hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: linear-gradient(145deg, var(--color-hero-dark) 0%, #0d3d6d 45%, #0f5c7a 100%);
  color: white;
  overflow: hidden;
}

.page-disclaimer .legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgb(20 184 166 / 25%) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(13 79 139 / 40%) 0%, transparent 50%);
  pointer-events: none;
}

.page-disclaimer .legal-hero-inner {
  position: relative;
  max-width: 40rem;
}

.page-disclaimer .legal-hero h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.page-disclaimer .legal-content {
  padding: 3rem 0 4rem;
}

.page-disclaimer .legal-prose {
  max-width: 42rem;
}

.page-disclaimer .legal-prose p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.page-disclaimer .legal-prose p:last-child {
  margin-bottom: 0;
}

/* FAQ-pagina */
.page-faq .faq-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(145deg, var(--color-hero-dark) 0%, #0d3d6d 45%, #0f5c7a 100%);
  color: white;
  overflow: hidden;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgb(20 184 166 / 25%) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(13 79 139 / 40%) 0%, transparent 50%);
  pointer-events: none;
}

.page-faq .faq-hero-inner {
  position: relative;
  max-width: 40rem;
}

.page-faq .faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.page-faq .faq-hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgb(203 213 225);
}

.page-faq .faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-faq .faq-hero-ghost {
  border-color: rgb(255 255 255 / 35%);
  color: white;
}

.page-faq .faq-hero-ghost:hover {
  background: rgb(255 255 255 / 10%);
  color: white;
}

.page-faq .faq-topics {
  padding-top: 2rem;
}

.page-faq .faq-topic {
  padding: 3rem 0;
  background: var(--color-bg);
}

.page-faq .faq-topic--alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.page-faq .faq-topic-header {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-faq .faq-topic-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.page-faq .faq-topic-header-text > p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 40rem;
}

.page-faq .faq-topic-aside {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, rgb(204 251 241 / 50%) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.page-faq .faq-topic-aside-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f766e;
}

.page-faq .faq-topic-aside p:last-child {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.page-faq .faq-list--page {
  max-width: none;
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-faq .faq-topic--alt .faq-list--page {
  background: var(--color-bg);
}

.page-faq .faq-list--page .faq-item {
  padding: 0 1.25rem;
}

.page-faq .faq-list--page .faq-item:first-child {
  border-top: none;
}

.page-faq .faq-cta-band {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1565a8 100%);
  color: white;
}

.page-faq .faq-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.page-faq .faq-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.875rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.page-faq .faq-cta-copy p {
  margin: 0;
  color: rgb(203 213 225);
  max-width: 32rem;
  margin-inline: auto;
}

.page-faq .faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-faq .faq-cta-ghost {
  border-color: rgb(255 255 255 / 40%);
  color: white;
}

.page-faq .faq-cta-ghost:hover {
  background: rgb(255 255 255 / 12%);
  color: white;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--color-hero-dark);
  color: rgb(203 213 225);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.logo-footer {
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  max-width: 28rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: rgb(203 213 225);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.8125rem;
}

.footer-bottom p {
  margin: 0 0 0.5rem;
}

.footer-disclaimer {
  opacity: 0.7;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-header {
    display: inline-flex;
    margin-left: 0;
  }

  .header-inner .btn-header ~ .nav-toggle {
    margin-left: 0;
  }

  .hero-lease {
    padding: 2rem 0 3rem;
  }

  .hero-lease-tool {
    padding: 1.25rem 1.5rem;
    min-height: 520px;
    border-radius: calc(var(--radius-lg) + 4px);
  }

  .hero-lease-intro h1 {
    font-size: 2.5rem;
  }

  .hero-banner-content {
    max-width: 42rem;
    padding: 2.5rem 2.5rem 3rem;
  }

  .promo-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .steps-list li {
    padding-left: 4rem;
  }

  .content-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }

  .page-faq .faq-topic-header {
    grid-template-columns: 1fr min(280px, 32%);
    align-items: start;
  }

  .page-faq .faq-cta-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .page-faq .faq-cta-copy p {
    margin-inline: 0;
  }

  .page-faq .faq-cta-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  :root {
    --container: min(1120px, 100% - 3rem);
    --container-hero: min(1320px, 100% - 2.5rem);
  }

  .hero-lease-wrap {
    gap: 1.5rem;
  }

  .hero-lease-tool {
    min-height: 580px;
    padding: 1.5rem 2rem;
  }

  .header-inner .logo {
    margin-right: 1rem;
  }

  .nav-desktop {
    margin-left: auto;
  }

}
