﻿:root {
  --navy: #0A1F33;
  --red: #E32B2B;
  --sell: #3F8F5A;
  --keep: #3D7AB5;
  --grey: #6B7280;
  --light: #F1F3F5;
  --white: #FFFFFF;
  --green: #22C55E;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 28px rgba(13, 27, 42, 0.12);
  --shadow-soft: 0 4px 16px rgba(13, 27, 42, 0.08);
  --font: "Poppins", system-ui, sans-serif;
  --max: 1120px;
  /* Aliases for admin / legacy templates */
  --color-bg: var(--light);
  --color-surface: var(--white);
  --color-text: var(--navy);
  --color-muted: var(--grey);
  --color-primary: var(--navy);
  --color-primary-dark: #152536;
  --color-border: #d8dde3;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font-family: inherit; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* â€”â€”â€” Header â€”â€”â€” */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover { color: var(--red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: #152536; }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.28);
}

.btn-red:hover { background: #d32f3c; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--navy, #0d1b2a);
  border: 1px solid rgba(13, 27, 42, 0.25);
}
.btn-outline:hover {
  background: rgba(13, 27, 42, 0.05);
  border-color: rgba(13, 27, 42, 0.4);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  border-radius: 6px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* â€”â€”â€” Hero â€”â€”â€” */
.hero-home {
  position: relative;
  min-height: clamp(420px, 68vh, 640px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(10, 31, 51, 0.9) 0%, rgba(10, 31, 51, 0.58) 48%, rgba(10, 31, 51, 0.28) 100%),
    url("../img/hero-car.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-home__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 8.75rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.hero-home h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.hero-home h1 .accent { color: var(--red); }

.hero-home .lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-pills svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--red);
}

.hero-callout {
  justify-self: end;
  max-width: 280px;
  background: rgba(13, 27, 42, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  animation: fadeUp 0.7s ease both;
}

.hero-callout svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.hero-callout p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-callout a {
  color: #FF6B6B;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.hero-callout a:hover { text-decoration: underline; }

/* â€”â€”â€” Plate search bar â€”â€”â€” */
.plate-bar-wrap {
  position: relative;
  z-index: 5;
  margin-top: -3.25rem;
  margin-bottom: 0;
}

.plate-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.35rem;
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 1rem;
  align-items: end;
}

.plate-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.4rem;
}

.plate-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid #d8dde3;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.plate-input:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
}

.plate-input img {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}

.plate-input input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
}

.plate-input input::placeholder {
  color: #b0b7c0;
  font-weight: 500;
}

.plate-alt {
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 0.65rem;
  line-height: 1.35;
}

.plate-alt:hover { color: var(--red); }

.plate-alt span { white-space: nowrap; }

/* â€”â€”â€” Features band â€”â€”â€” */
.features-band {
  background: var(--navy);
  color: var(--white);
  padding: 2.75rem 0;
  margin-top: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feature-item {
  text-align: left;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.feature-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

/* â€”â€”â€” Sections â€”â€”â€” */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-header p {
  max-width: 62ch;
  margin: 0.75rem auto 0;
}
.section-header.is-light { color: var(--white); }
.section-header.is-light p { color: rgba(255, 255, 255, 0.82); }

/* â€”â€”â€” Steps â€”â€”â€” */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step-card svg {
  width: 40px;
  height: 40px;
  color: var(--navy);
  margin: 0 auto 0.85rem;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.4;
}

/* â€”â€”â€” Trust â€”â€”â€” */
.trust-band {
  background: var(--light);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

.trust-score h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
  color: var(--green);
}

.stars svg { width: 18px; height: 18px; }

.trust-score p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--grey);
}

.trust-quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: #15803d;
  line-height: 1.45;
}

.trust-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 500;
}

.trust-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.trust-link:hover { color: var(--red); }

/* â€”â€”â€” Page hero (inner pages) â€”â€”â€” */
.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero .lead,
.lead {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0;
}

.page-section {
  padding: 1.5rem 0 2rem;
}

.page-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.page-section p,
.page-section li {
  color: var(--grey);
}

.page-section ul {
  padding-left: 1.2rem;
}
.page-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.02rem;
  color: var(--navy);
}
.privacy-toc ul { margin: 0; }
.legal-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  color: var(--navy);
}
.legal-table th {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.legal-table code { font-size: 0.85em; }

main.site-main {
  min-height: 50vh;
}

main.site-main.is-home {
  padding: 0;
}

main.site-main:not(.is-home) {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-bottom: 3rem;
}

/* â€”â€”â€” Wizard â€”â€”â€” */
.wizard { max-width: 720px; margin: 0 auto; padding: 2rem 0 3rem; }

.steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--grey);
  border-bottom: 3px solid transparent;
  font-weight: 500;
}

.step.is-active {
  color: var(--navy);
  border-bottom-color: var(--red);
  font-weight: 600;
}

.panel {
  display: none;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.login-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.login-card h2 { margin-top: 0; }

.panel.is-active { display: block; }
.panel h2 { margin-top: 0; }

form label {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}

form input,
form select {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.65rem 0.8rem;
  border: 1.5px solid #d8dde3;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: #fff;
  color: var(--navy);
}

form input:focus,
form select:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
}

form details { margin: 0.4rem 0 1rem; }
form summary { cursor: pointer; font-size: 0.88rem; color: var(--navy); font-weight: 600; }
form .btn { margin-top: 0.5rem; }

.offer-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.offer-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.offer-card .meta { font-size: 0.8rem; color: var(--grey); margin-bottom: 0.5rem; }
.offer-card p { margin: 0 0 0.6rem; color: var(--grey); font-size: 0.93rem; }
.offer-card .badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #ffe4e6;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.4rem;
}
.offer-card .btn { flex-shrink: 0; }
.results-section h3 { margin: 1.2rem 0 0.6rem; }
.muted { color: var(--grey); font-size: 0.85rem; }
.empty { color: var(--grey); font-style: italic; font-size: 0.9rem; }
.valuation {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.valuation h3 { margin: 0 0 0.3rem; font-size: 1rem; }

.tag {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.15rem 0.55rem;
  background: #ffe4e6;
  color: var(--red);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stages-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.stage-card,
.service-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.stage-card h3,
.service-card h3 { margin: 0.4rem 0 0.3rem; font-size: 1rem; }

.stage-card p,
.service-card p { margin: 0; font-size: 0.9rem; color: var(--grey); }

.stage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-cta {
  text-align: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  margin: 1rem 0 2rem;
}

.section-cta h2 { margin: 0 0 0.5rem; }
.section-cta p { color: var(--grey); margin: 0 0 1.25rem; }

/* â€”â€”â€” Footer â€”â€”â€” */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-brand p { margin: 0; max-width: 36ch; line-height: 1.5; }

.footer-col h4 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom p { margin: 0; }

/* â€”â€”â€” Admin leftovers â€”â€”â€” */
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #152536; }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: #d8dde3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy { animation: fadeUp 0.6s ease both; }
.hero-pills { animation: fadeUp 0.7s 0.1s ease both; }
.plate-bar { animation: fadeUp 0.55s 0.15s ease both; }

@media (max-width: 960px) {
  .hero-home__inner { grid-template-columns: 1fr; padding-bottom: 7.5rem; }
  .hero-callout { justify-self: start; max-width: 100%; }
  .plate-bar { grid-template-columns: 1fr; align-items: stretch; }
  .plate-alt { padding-bottom: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    position: relative;
    gap: 0.35rem;
    height: 72px;
    min-height: 72px;
  }
  .brand {
    grid-column: 1;
    justify-self: start;
  }
  .brand img {
    height: 40px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: var(--shadow-soft);
    align-items: flex-start;
    gap: 0.85rem;
    z-index: 3;
  }
  .header-actions {
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
    z-index: 1;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    padding: 0.5rem 0 0.5rem 0.5rem;
    z-index: 2;
  }
  .header-actions .btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .hero-home { min-height: 480px; }
  .hero-home h1 { max-width: none; }
  .offer-card { flex-direction: column; }
}

.nav-soon { color: var(--grey) !important; font-weight: 500; }

.go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}
.go-btn svg { width: 18px; height: 18px; }

.journey-selector {
  padding: 0 0 1.5rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 2;
}
.journey-panel {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(10, 31, 51, 0.12);
  padding: 2rem 1.5rem 1.75rem;
}
.journey-panel .section-header { margin-bottom: 1.25rem; }
.journey-selector__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 1.45rem 1.3rem 1.25rem;
  border-radius: 18px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 10px 28px rgba(10, 31, 51, 0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.journey-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.journey-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--navy);
}
.journey-card__icon svg { width: 22px; height: 22px; }
.journey-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.journey-card p {
  margin: 0 0 1.15rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}
.journey-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent, var(--navy));
}
.journey-card__cta svg {
  width: 16px;
  height: 16px;
}
.journey-card.theme-search { --accent: var(--navy); }
.journey-card.theme-found { --accent: var(--red); }
.journey-card.theme-sell { --accent: var(--sell); }
.journey-card.theme-keep { --accent: var(--keep); }
.journey-card.theme-search .journey-card__icon,
.journey-card.theme-found .journey-card__icon,
.journey-card.theme-sell .journey-card__icon,
.journey-card.theme-keep .journey-card__icon { background: var(--accent); }
.journey-card.theme-found h3,
.journey-card.theme-sell h3,
.journey-card.theme-keep h3 { color: var(--accent); }
.journey-card .go-btn { background: var(--accent, var(--navy)); }

.journey-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.journey-modal.is-open { visibility: visible; opacity: 1; }
.journey-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 51, 0.55);
}
.journey-modal__panel {
  position: relative;
  width: min(100%, 880px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem 2.5rem;
  box-shadow: 0 24px 60px rgba(10, 31, 51, 0.35);
  transform: translateY(14px);
  transition: transform .22s ease;
}
.journey-modal.is-open .journey-modal__panel { transform: translateY(0); }
.journey-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.journey-modal__close:hover { background: var(--red); color: #fff; }
.journey-modal__close svg { width: 20px; height: 20px; }
.journey-modal__panel > h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.journey-modal__intro {
  margin: 0 0 1.6rem;
  color: var(--grey);
}
.journey-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.journey-modal__grid .journey-card { min-height: 180px; }
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .journey-modal__grid { grid-template-columns: 1fr; }
  .journey-modal__panel { padding: 1.75rem 1.25rem 1.5rem; }
}

.guide-hero {
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
  padding: 2.75rem 0 2rem;
}
.guide-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 18ch;
}
.guide-hero .lead {
  font-size: 1.12rem;
  color: var(--navy);
  max-width: 46ch;
  margin: 0 0 0.7rem;
}
.guide-hero__text {
  margin: 0;
  color: var(--grey);
  max-width: 58ch;
}
.guide-hero .eyebrow { color: var(--red); }
.crumb {
  display: inline-block;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.crumb:hover { color: var(--navy); }
.guide-hero__split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.guide-hero__copy { flex: 1; min-width: 0; }
.guide-hero__media {
  display: block;
  width: 100%;
  max-width: 860px;
  margin-top: 1.4rem;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 16 / 6;
  box-shadow: 0 14px 30px rgba(10, 31, 51, 0.12);
}
.guide-hero__split .guide-hero__media {
  flex: 0 0 40%;
  max-width: 420px;
  margin-top: 0;
  aspect-ratio: auto;
  border-radius: 12px;
}

@media (max-width: 960px) {
  .guide-hero__media { display: none; }
}

.journey-roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
.roadmap-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
  padding: 1.2rem 1rem 3.4rem;
  border-radius: 18px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 10px 24px rgba(10, 31, 51, 0.07);
}
.roadmap-node:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.roadmap-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}
.roadmap-copy strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.roadmap-copy em {
  font-style: normal;
  color: var(--grey);
  font-size: 0.82rem;
}
.roadmap-node .go-btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--red);
}

.phase-browser {
  position: relative;
  outline: none;
}
.phase-browser__viewport {
  overflow: hidden;
  border-radius: 22px;
}
.phase-browser__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.4s ease;
  will-change: transform;
}
.phase-browser__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.phase-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 280px;
  padding: 2.2rem 2rem 2.4rem;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(10, 31, 51, 0.08);
  text-decoration: none;
  color: inherit;
}
.phase-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.phase-card__num {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red);
}
.phase-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(227, 43, 43, 0.1);
  color: var(--red);
}
.phase-card__icon svg { width: 26px; height: 26px; }
.phase-card__copy strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.phase-card__copy em {
  font-style: normal;
  color: var(--grey);
  font-size: 1rem;
}
.phase-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-weight: 600;
  color: var(--red);
}
.phase-card__go svg { width: 20px; height: 20px; }
.phase-browser__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(10, 31, 51, 0.12);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}
.phase-browser__nav svg { width: 20px; height: 20px; }
.phase-browser__nav:hover:not(:disabled) { background: var(--red); color: #fff; }
.phase-browser__nav:disabled { opacity: 0.35; cursor: default; }
.phase-browser__nav.is-prev { left: -1.1rem; }
.phase-browser__nav.is-next { right: -1.1rem; }
.phase-browser__nav.is-prev svg { transform: rotate(180deg); }
.phase-browser__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey);
}
.phase-browser__dots { display: inline-flex; gap: 0.4rem; }
.phase-browser__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(13, 27, 42, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.phase-browser__dots button.is-current {
  background: var(--red);
  width: 22px;
}

.service-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  margin-bottom: 1rem;
}
.service-hero__icon svg { width: 22px; height: 22px; }
.phase-progress {
  background: var(--white);
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}
.phase-progress__inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 0;
  overflow-x: auto;
}
.phase-progress__dot {
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--light);
  color: var(--navy);
}
.phase-progress__dot.is-current {
  background: var(--red);
  color: #fff;
}

.service-tiles,
.offer-guide-grid,
.editorial-grid {
  display: grid;
  gap: 1rem;
}
.service-tiles { grid-template-columns: repeat(2, 1fr); }
.offer-guide-grid { grid-template-columns: repeat(2, 1fr); }
.editorial-grid { grid-template-columns: repeat(2, 1fr); }
.service-tile,
.editorial-card,
.offer-card-guide,
.empty-offers {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 18px;
  padding: 1.45rem 1.3rem 3.4rem;
  box-shadow: 0 10px 24px rgba(10, 31, 51, 0.07);
  text-decoration: none;
  color: inherit;
  display: block;
}
.offer-card-guide,
.editorial-card,
.empty-offers { padding-bottom: 1.4rem; }
.service-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(227, 43, 43, 0.1);
  color: var(--red);
  margin-bottom: 0.85rem;
}
.service-tile__icon svg { width: 22px; height: 22px; }
.service-tile h3,
.offer-card-guide h3,
.editorial-card h2 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.12rem;
  color: var(--navy);
}
.service-tile p,
.offer-card-guide p,
.editorial-card p { color: var(--grey); margin: 0 0 1rem; }
.service-tile .go-btn {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  background: var(--red);
}
.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #ffe4e6;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-demo { background: #eef1f5; color: var(--navy); }
.offer-card-guide__brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.offer-card-guide__logo { height: 28px; width: auto; margin-bottom: 0.5rem; }
.section-soft { background: var(--light); padding: 3rem 0; }
.empty-offers p { margin: 0 0 0.5rem; }
.coming-soon .muted a { color: var(--red); font-weight: 600; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.how-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.how-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}
.how-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.how-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.value-band {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}
.value-item {
  text-align: center;
}
.value-item svg {
  width: 28px;
  height: 28px;
  color: #7EB6E8;
  margin-bottom: 0.75rem;
}
.value-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--white);
}
.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-services,
.home-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.home-service,
.home-guide {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.3rem;
  box-shadow: var(--shadow-soft);
}
.home-service__icon,
.home-guide__tag {
  margin-bottom: 0.75rem;
}
.home-service__icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}
.home-guide__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-service h3,
.home-guide h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  color: var(--navy);
}
.home-service p,
.home-guide p {
  margin: 0 0 1.1rem;
  color: var(--grey);
  font-size: 0.9rem;
  flex: 1;
}
.home-service__cta,
.home-guide__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.home-service__cta:hover,
.home-guide__cta:hover { text-decoration: underline; }

.sources-section { background: var(--light); }
.source-list,
.partner-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.source-list a,
.source-list span,
.partner-list a,
.partner-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.source-list a,
.source-list span {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: var(--shadow-soft);
}
.source-list a:hover { border-color: var(--navy); }
.sources-empty {
  text-align: center;
  max-width: 54ch;
  margin: 0 auto;
}
.partner-list a,
.partner-list span {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(227, 43, 43, 0.18);
}
.partner-list a:hover { border-color: var(--red); }
.partner-list__logo {
  display: block;
  max-height: 28px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.source-profile__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
}
.source-profile__logo {
  max-height: 56px;
  width: auto;
  margin: 0;
}
.outbound-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
}
.outbound-card {
  max-width: 40rem;
}
.outbound-card h1 {
  margin-bottom: 0.75rem;
}
.outbound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.outbound-timer {
  margin: 1rem 0 0;
  color: var(--muted, #5b6570);
  font-size: 0.95rem;
}
.outbound-timer strong {
  color: var(--navy, #1b2b3a);
  font-variant-numeric: tabular-nums;
}
.premium-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 11.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  background: #fff8f6;
  border: 1px solid rgba(227, 43, 43, 0.22);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: none;
}
.premium-partner-badge svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}
.source-meta {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.source-meta > div {
  display: grid;
  gap: 0.2rem;
}
.source-meta dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.source-meta dd {
  margin: 0;
  color: var(--navy);
  word-break: break-word;
}
.source-meta a { color: var(--navy); }
.source-usages {
  display: grid;
  gap: 1.1rem;
}
.source-usage {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.source-usage h3 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
}
.source-usage h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}
.source-usage__phase {
  margin: 0 0 0.85rem;
}
.source-usage__phase:last-child { margin-bottom: 0; }
.source-usage ul {
  margin: 0;
  padding-left: 1.15rem;
}
.source-usage a { color: var(--navy); text-decoration: none; }
.source-usage a:hover { color: var(--red); }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  box-shadow: 0 -4px 24px rgba(13, 27, 42, 0.12);
  padding: 1.25rem 1.5rem;
  display: none;
}
.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner__text p {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.5;
}
.cookie-banner__link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: underline;
}
.cookie-banner__link:hover { color: var(--navy); }
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner__reject { opacity: 0.7; }
.cookie-banner__reject:hover { opacity: 1; }

/* Cookie preference panel */
.cookie-panel {
  display: none;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  padding-top: 1rem;
  animation: cookieSlideIn .25s ease;
}
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-panel__header { margin-bottom: 0.75rem; }
.cookie-panel__header h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--navy);
}
.cookie-panel__header p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.cookie-panel__group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.cookie-panel__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  background: rgba(13, 27, 42, 0.025);
  border-radius: 8px;
}
.cookie-panel__info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.cookie-panel__info span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.cookie-panel__footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle__track {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #c4c9d4;
  transition: background .2s;
  display: flex;
  align-items: center;
  padding: 2px;
  box-sizing: border-box;
}
.cookie-toggle__thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform .2s;
}
.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--red, #e63946);
}
.cookie-toggle input:checked + .cookie-toggle__track .cookie-toggle__thumb {
  transform: translateX(18px);
}
.cookie-toggle.is-on .cookie-toggle__track { background: var(--red, #e63946); }
.cookie-toggle.is-on .cookie-toggle__track .cookie-toggle__thumb { transform: translateX(18px); }
.cookie-toggle.is-locked { cursor: default; opacity: 0.85; }
.cookie-toggle.is-locked .cookie-toggle__track { background: var(--muted, #8d99ae); }

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0;
}
.social-share__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
}
.social-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-share__btn:hover {
  background: var(--navy);
  color: var(--white);
}
.social-share__btn--whatsapp:hover { background: #25D366; }
.social-share__btn--telegram:hover { background: #0088cc; }
.social-share__btn--facebook:hover { background: #1877F2; }
.social-share__btn--linkedin:hover { background: #0A66C2; }

@media (max-width: 960px) {
  .journey-selector__grid { grid-template-columns: repeat(2, 1fr); }
  .journey-roadmap { grid-template-columns: 1fr; }
  .roadmap-node { min-height: 0; }
  .how-grid,
  .home-services,
  .home-guides { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-modal__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .journey-selector__grid,
  .service-tiles,
  .offer-guide-grid,
  .editorial-grid,
  .how-grid,
  .home-services,
  .home-guides,
  .value-grid { grid-template-columns: 1fr; }
  .journey-selector { margin-top: -3.25rem; }
  .journey-panel { padding: 1.35rem 1rem 1.2rem; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { width: 100%; text-align: center; }
}
