/* ==========================================================
   Xackym Auto redesign
   ========================================================== */

:root {
  --navy: #071323;
  --navy-2: #0d1f35;
  --navy-3: #132b46;
  --red: #c1121f;
  --red-dark: #8e0e17;
  --gold: #d7a537;
  --gold-soft: rgba(215, 165, 55, .16);
  --paper: #f4f6f8;
  --white: #ffffff;
  --ink: #111827;
  --text: #263244;
  --muted: #667085;
  --line: rgba(17, 24, 39, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 22px 60px rgba(7, 19, 35, .16);
  --shadow-soft: 0 12px 34px rgba(7, 19, 35, .10);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1160px;
  --header-height: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.ad-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .84);
  border-bottom: 3px solid var(--gold);
  font-size: 13px;
}

.ad-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ad-bar strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ad-bar__meta {
  color: rgba(255, 255, 255, .68);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-bottom: 3px solid var(--red);
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand__text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 9px;
  color: #1d2939;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  background: rgba(193, 18, 31, .07);
  outline: none;
}

.header-action {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(193, 18, 31, .22);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
  background: var(--red-dark);
  box-shadow: 0 14px 34px rgba(193, 18, 31, .28);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 5px;
}

body.nav-open .menu-toggle span {
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::before {
  transform: translateY(7px) rotate(90deg);
}

body.nav-open .menu-toggle span::after {
  opacity: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, calc(100svh - 114px), 860px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/images/hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background:
    linear-gradient(90deg, rgba(7, 19, 35, .96) 0%, rgba(7, 19, 35, .88) 42%, rgba(7, 19, 35, .58) 70%, rgba(7, 19, 35, .42) 100%),
    linear-gradient(180deg, rgba(7, 19, 35, .10), rgba(7, 19, 35, .64)); */
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(70px, 10vw, 130px);
}

.hero__text {
  max-width: 900px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(193, 18, 31, .08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.section-tag--light {
  background: rgba(255, 255, 255, .10);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, .16);
}

.hero h1 {
  max-width: 900px;
  margin: 20px 0 20px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 950;
}


.hero__lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(193, 18, 31, .25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 17px 38px rgba(193, 18, 31, .34);
}

.btn--ghost {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .36);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 620px);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}

.hero__facts div {
  padding: 18px 17px;
  background: rgba(7, 19, 35, .38);
}

.hero__facts b {
  display: block;
  color: var(--white);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1;
  letter-spacing: -.03em;
}

.hero__facts span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

.hero__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .20);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero__panel p:not(.panel-label) {
  margin: 13px 0 18px;
  color: rgba(255, 255, 255, .76);
}

.coupon {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  border-left: 4px solid var(--gold);
  font-weight: 950;
  letter-spacing: .08em;
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: #eef2f6;
}

.section--dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/images/engine-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .42;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 35, .96), rgba(7, 19, 35, .78)),
    radial-gradient(circle at 78% 12%, rgba(193, 18, 31, .34), transparent 28rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.article__header h2,
.contact-copy h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 950;
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--left p {
  margin-left: 0;
}

.section-heading--dark h2,
.section-heading--dark p,
.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.section-heading--dark p,
.contact-copy p {
  color: rgba(255, 255, 255, .74);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article {
  max-width: 780px;
}

.article__header {
  margin-bottom: 26px;
}

.article p {
  margin: 0 0 20px;
  color: #334155;
  font-size: 17px;
}

.article h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(23px, 2.8vw, 32px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.article h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
}

.quote-box {
  margin: 34px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--red);
  border-radius: 0 16px 16px 0;
  background: #f7f9fc;
}

.quote-box p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -.035em;
}

.note-list {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(193, 18, 31, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(193, 18, 31, .06), rgba(215, 165, 55, .07));
}

.note-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  position: relative;
  padding-left: 26px;
  color: #344054;
  font-weight: 650;
}

.note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, .12);
}

.split-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 24px;
}

.split-points > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(7, 19, 35, .06);
}

.split-points p {
  margin: 0;
  font-size: 15px;
}

.safety-note {
  padding: 18px 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.reader-card {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.reader-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.reader-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .72);
}

.reader-card ol {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  counter-reset: reader;
  list-style: none;
}

.reader-card li {
  counter-increment: reader;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .84);
  font-weight: 750;
}

.reader-card li::before {
  content: counter(reader, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .10);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 250px;
  padding: 25px 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(215, 165, 55, .45);
}

.benefit-card__number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
}

.benefit-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--gold));
}

.process-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.reviews-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.reviews-grid {
  display: grid;
  gap: 16px;
}

.review-card {
  position: relative;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 19, 35, .07);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 13px;
  right: 20px;
  color: rgba(193, 18, 31, .18);
  font-size: 78px;
  line-height: 1;
  font-weight: 950;
}

.review-card p {
  position: relative;
  margin: 0 0 18px;
  color: #344054;
  font-size: 16px;
}

.review-card footer {
  display: grid;
  gap: 2px;
}

.review-card strong {
  color: var(--ink);
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/images/engine-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .22;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 35, .96), rgba(13, 31, 53, .90)),
    radial-gradient(circle at 82% 18%, rgba(193, 18, 31, .28), transparent 26rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 620px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.contact-copy p {
  max-width: 560px;
  margin: 18px 0 22px;
  font-size: 17px;
}

.contact-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
}

.contact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.lead-form {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid label {
  display: grid;
  gap: 6px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid span {
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d6dde8;
  border-radius: 10px;
  background: #f9fafb;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.lead-form input,
.lead-form select {
  height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 92px;
  padding: 11px 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(193, 18, 31, .65);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, .10);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.checkbox-row a {
  color: var(--red);
  font-weight: 850;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 750;
}

.site-footer {
  padding: 56px 0 20px;
  background: #050d18;
  color: rgba(255, 255, 255, .76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) .65fr .55fr;
  gap: clamp(24px, 5vw, 70px);
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 3px solid var(--red);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, .56);
}

.footer-brand p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.footer-col p {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold);
  outline: none;
}

.footer-col nav {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  padding-top: 18px;
  color: rgba(255, 255, 255, .50);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(7, 19, 35, .96);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .12);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .70);
  font-size: 13px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.cookie-banner button:last-child {
  background: transparent;
  color: var(--white);
}

.processing-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 13, 24, .72);
  backdrop-filter: blur(8px);
}

.processing-modal.is-open {
  display: grid;
}

.processing-modal__card {
  width: min(100%, 420px);
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.loader {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 4px solid rgba(193, 18, 31, .14);
  border-top-color: var(--red);
  animation: spin .75s linear infinite;
}

.processing-modal h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.14;
}

.processing-modal p {
  margin: 0;
  color: var(--muted);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .header-action {
    display: none;
  }

  .hero__content,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 520px;
  }

  .reader-card {
    position: static;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--left {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .ad-bar__inner {
    min-height: auto;
    padding-block: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 41px);
    left: 14px;
    right: 14px;
    z-index: 999;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  /* .hero::before {
    background: linear-gradient(180deg, rgba(7, 19, 35, .92), rgba(7, 19, 35, .86));
  } */

  .hero__content {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .split-points,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    font-size: 11px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .article__header h2,
  .contact-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .article p {
    font-size: 16px;
  }

  .note-list,
  .reader-card,
  .lead-form,
  .process-card,
  .review-card {
    padding: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card__number {
    margin-bottom: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .btn {
    width: 100%;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
/*  */
/* =========================================================
   Auto Ratgeber Section — clean article style
========================================================= */

.auto-ratgeber {
  padding: clamp(64px, 8vw, 110px) 0;
  background: #ffffff;
}

.auto-ratgeber__article {
  width: min(100%, 920px);
  margin: 0 auto;
}

.auto-ratgeber__header {
  margin-bottom: clamp(30px, 5vw, 48px);
  padding-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.auto-ratgeber__header h2 {
  max-width: 900px;
  margin: 12px 0 20px;
  color: #101522;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 820;
}

.auto-ratgeber__header p {
  max-width: 780px;
  margin: 0;
  color: #4b5563;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
  font-weight: 500;
}

.auto-ratgeber__content {
  color: #263241;
  font-size: 18px;
  line-height: 1.78;
}

.auto-ratgeber__content p {
  margin: 0 0 22px;
}

.auto-ratgeber__content h3 {
  margin: 42px 0 18px;
  color: #111827;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.auto-ratgeber__quote {
  margin: 34px 0;
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid #b91c1c;
  background: #f5f7fb;
}

.auto-ratgeber__quote p {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-weight: 760;
}

.auto-ratgeber__note {
  margin: 30px 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 18px;
  background: #fff7f3;
}

.auto-ratgeber__note p {
  margin: 0;
  color: #1f2937;
}

.auto-ratgeber__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}

.auto-ratgeber__strong-text {
  margin: 34px 0;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 18px;
  background: #0b1526;
  color: #ffffff !important;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.38;
  letter-spacing: -0.03em;
  font-weight: 720;
}

.auto-ratgeber__checks {
  margin: 30px 0 34px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
  background: #f5f7fb;
}

.auto-ratgeber__checks p {
  margin: 0;
  color: #243041;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}
.auto-ratgeber__list-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  cursor: default;
  transform: translateY(0) translateX(0);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.auto-ratgeber__list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 4px;
  background: linear-gradient(180deg, #b91c1c, #d7b46a);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.auto-ratgeber__list-item:hover,
.auto-ratgeber__list-item:focus-visible {
  transform: translateY(-4px) translateX(6px);
  border-color: rgba(185, 28, 28, 0.22);
  background-color: #fffdf9;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.auto-ratgeber__list-item:hover::before,
.auto-ratgeber__list-item:focus-visible::before {
  opacity: 1;
}

.auto-ratgeber__list-item span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 22px;
  line-height: 1.2;
  transition: transform 0.28s ease;
}

.auto-ratgeber__list-item:hover span,
.auto-ratgeber__list-item:focus-visible span {
  transform: scale(1.12) rotate(-4deg);
}

.auto-ratgeber__list-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #243041;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.auto-ratgeber__list-item:focus-visible {
  outline: 3px solid rgba(215, 180, 106, 0.45);
  outline-offset: 3px;
}
.auto-ratgeber__checks p + p {
  margin-top: 12px;
}

.auto-ratgeber__offer {
  margin-top: clamp(40px, 6vw, 64px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.88), rgba(120, 14, 24, 0.92)),
    #991b1b;
  color: #ffffff;
}

.auto-ratgeber__offer span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f2d48b;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.auto-ratgeber__offer h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.auto-ratgeber__offer p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.auto-ratgeber__steps {
  margin: 26px 0 30px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.auto-ratgeber__steps p {
  margin: 0 0 14px;
  color: #ffffff;
}

.auto-ratgeber__steps ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auto-ratgeber__steps li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

.auto-ratgeber__steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f2d48b;
  font-weight: 900;
}

.auto-ratgeber__offer .button {
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 760px) {
  .auto-ratgeber {
    padding: 56px 0;
  }

  .auto-ratgeber__header h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .auto-ratgeber__content {
    font-size: 16px;
    line-height: 1.72;
  }

  .auto-ratgeber__list-item {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 15px;
  }

  .auto-ratgeber__list-item p,
  .auto-ratgeber__checks p {
    font-size: 16px;
  }

  .auto-ratgeber__offer {
    border-radius: 20px;
  }

  .auto-ratgeber__offer .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .auto-ratgeber__quote,
  .auto-ratgeber__note,
  .auto-ratgeber__strong-text,
  .auto-ratgeber__checks,
  .auto-ratgeber__offer {
    border-radius: 16px;
  }

  .auto-ratgeber__steps {
    padding: 18px;
  }
}
/*  */
/* =========================================================
   Benefits Showcase — background image + premium cards
========================================================= */

.benefits-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 130px) 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 30, 0.88), rgba(8, 16, 30, 0.94)),
    url("/assets/images/benefits-bg.webp") center / cover no-repeat;
  color: #ffffff;
}

.benefits-showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 28, 28, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(7, 13, 26, 0.34), rgba(7, 13, 26, 0.04), rgba(7, 13, 26, 0.34));
  pointer-events: none;
}

.benefits-showcase .container {
  position: relative;
  z-index: 1;
}

.benefits-showcase__heading {
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 72px);
  text-align: center;
}

.benefits-showcase__heading h2 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.benefits-showcase__heading p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.benefits-grid--premium {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.benefit-card--premium {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7f8fb);
  color: #111827;
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: translateY(0);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.benefit-card--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 28, 28, 0.11), transparent 38%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.benefit-card--featured {
  transform: translateY(-18px);
}

.benefit-card--premium:hover,
.benefit-card--premium:focus-visible {
  transform: translateY(-12px);
  border-color: rgba(215, 180, 106, 0.55);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.benefit-card--featured:hover,
.benefit-card--featured:focus-visible {
  transform: translateY(-28px);
}

.benefit-card--premium:hover::before,
.benefit-card--premium:focus-visible::before {
  opacity: 1;
}

.benefit-card--premium:focus-visible {
  outline: 3px solid rgba(215, 180, 106, 0.55);
  outline-offset: 5px;
}

.benefit-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d62424, #b91c1c);
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.24);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card--premium:hover .benefit-card__icon,
.benefit-card--premium:focus-visible .benefit-card__icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 36px rgba(185, 28, 28, 0.32);
}

.benefit-card--premium h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 780;
}

.benefit-card--premium p {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 0 auto;
  color: #566074;
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 1120px) {
  .benefits-grid--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card--featured {
    transform: translateY(0);
  }

  .benefit-card--featured:hover,
  .benefit-card--featured:focus-visible {
    transform: translateY(-12px);
  }
}

@media (max-width: 680px) {
  .benefits-showcase {
    padding: 62px 0;
    background-position: center;
  }

  .benefits-showcase__heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .benefits-showcase__heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .benefits-grid--premium {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card--premium {
    min-height: auto;
    padding: 24px;
    text-align: left;
  }

  .benefit-card__icon {
    margin-left: 0;
  }

  .benefit-card--premium p {
    max-width: none;
    margin: 0;
  }

  .benefit-card--premium:hover,
  .benefit-card--premium:focus-visible,
  .benefit-card--featured:hover,
  .benefit-card--featured:focus-visible {
    transform: translateY(-6px);
  }
}
/*  */
/* =========================================================
   Thanks Page
========================================================= */

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #050c16;
}

main {
  flex: 1 0 auto;
}

.site-footer,
.footer {
  flex-shrink: 0;
}

.thanks-page {
  background: #f3f5f8;
}

.thanks-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 58vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
}

.thanks-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 28, 28, 0.11), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(215, 180, 106, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(10, 21, 38, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.thanks-card {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.thanks-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #b91c1c, #d62424);
  box-shadow: 0 18px 38px rgba(185, 28, 28, 0.24);
}

.thanks-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 850;
}

.thanks-card h1 {
  margin: 0 0 18px;
  color: #101827;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 880;
}

.thanks-card__lead {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #273244;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 560;
}

.thanks-card__text {
  max-width: 680px;
  margin: 0 auto;
  color: #5f6b7c;
  font-size: 16px;
  line-height: 1.7;
}

.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(30px, 4vw, 42px) 0;
}

.thanks-next__item {
  padding: 20px 18px;
  border-radius: 18px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.07);
  text-align: left;
}

.thanks-next__item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #b91c1c;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 850;
}

.thanks-next__item p {
  margin: 0;
  color: #273244;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 620;
}

.thanks-card__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.thanks-card__link {
  color: #101827;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 24, 39, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.thanks-card__link:hover {
  color: #b91c1c;
  border-color: #b91c1c;
}

/* Footer bottom fix */
.site-footer {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 760px) {
  .thanks-hero {
    min-height: auto;
    padding: 44px 0 52px;
    align-items: flex-start;
  }

  .thanks-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .thanks-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .thanks-card h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .thanks-card__lead {
    font-size: 17px;
  }

  .thanks-next {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0;
  }

  .thanks-next__item {
    padding: 18px;
  }

  .thanks-card__actions {
    align-items: stretch;
    gap: 14px;
  }

  .thanks-card__actions .button {
    width: 100%;
    justify-content: center;
  }

  .thanks-card__link {
    display: inline-flex;
    justify-content: center;
    padding: 4px 0;
  }
}

@media (max-width: 420px) {
  .thanks-card {
    padding: 26px 16px;
  }

  .thanks-card__text,
  .thanks-next__item p {
    font-size: 14px;
  }
}
/*  */
/* =========================================================
   Legal Pages
========================================================= */

.legal-main {
  background: #f4f6f9;
  color: #172033;
}

.legal-page-hero {
  padding: clamp(44px, 6vw, 78px) 0 clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 28, 28, 0.11), transparent 32%),
    linear-gradient(135deg, #f9fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 38px);
  color: #6b7280;
  font-size: 14px;
  font-weight: 650;
}

.legal-breadcrumbs a {
  color: #1f2937;
  text-decoration: none;
}

.legal-breadcrumbs a:hover {
  color: #b91c1c;
}

.legal-page-hero__content {
  max-width: 820px;
}

.legal-page-hero h1 {
  margin: 12px 0 16px;
  color: #101827;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 880;
}

.legal-page-hero p {
  max-width: 680px;
  margin: 0;
  color: #4b5563;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.legal-section {
  padding: clamp(38px, 6vw, 76px) 0 clamp(70px, 8vw, 110px);
}

.page-updated {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 24px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid #b91c1c;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.page-updated__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #0b1526;
}

.page-updated__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #d7b46a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-updated span {
  display: block;
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.page-updated strong {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 850;
}

.legal-content-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.legal-block + .legal-block {
  margin-top: clamp(30px, 5vw, 48px);
  padding-top: clamp(26px, 4vw, 38px);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.legal-block h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 830;
}

.legal-block p {
  margin: 0;
  color: #3f4a5c;
  font-size: 17px;
  line-height: 1.78;
}

.legal-block p + p {
  margin-top: 16px;
}

.legal-block a {
  color: #b91c1c;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 28, 28, 0.3);
}

.legal-block a:hover {
  border-color: #b91c1c;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.legal-info-grid > div {
  padding: 20px;
  border-radius: 18px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: #8a1b1f;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 850;
}

.legal-info-grid p {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

@media (max-width: 760px) {
  .legal-page-hero {
    padding-top: 36px;
  }

  .legal-content-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .page-updated {
    align-items: flex-start;
    border-radius: 16px;
  }

  .legal-block p {
    font-size: 16px;
    line-height: 1.72;
  }
}

@media (max-width: 420px) {
  .legal-breadcrumbs {
    font-size: 13px;
  }

  .page-updated {
    padding: 14px;
  }

  .page-updated__icon {
    width: 40px;
    height: 40px;
  }

  .legal-info-grid > div {
    padding: 17px;
  }
}
/*  */
/* =========================================================
   Cookie Page Additions
========================================================= */

.legal-block--intro {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.08), rgba(215, 180, 106, 0.11)),
    #fffaf4;
  border: 1px solid rgba(185, 28, 28, 0.12);
}

.legal-block--intro + .legal-block {
  margin-top: clamp(30px, 5vw, 48px);
  padding-top: 0;
  border-top: 0;
}

.cookie-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.cookie-type-card {
  padding: 22px;
  border-radius: 20px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.cookie-type-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 28, 28, 0.2);
  background-color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.cookie-type-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #b91c1c;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 850;
}

.cookie-type-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.cookie-type-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cookie-consent-note {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  background: #0b1526;
}

.cookie-consent-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 920px) {
  .cookie-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cookie-type-card {
    padding: 19px;
  }

  .cookie-type-card h3 {
    font-size: 18px;
  }
}
/*  */
/* =========================================================
   Privacy Page Additions
========================================================= */

.privacy-note-card {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 22px;
  background: #0b1526;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-note-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 820;
}

.privacy-note-card p {
  color: rgba(255, 255, 255, 0.82);
}

.privacy-note-card a {
  color: #d7b46a;
  border-bottom-color: rgba(215, 180, 106, 0.45);
  word-break: break-word;
}

.privacy-note-card a:hover {
  border-bottom-color: #d7b46a;
}

.legal-block--thanks {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.08), rgba(215, 180, 106, 0.12)),
    #fffaf4;
  border: 1px solid rgba(185, 28, 28, 0.12);
}

.legal-block--thanks h2 {
  color: #111827;
}

.legal-block--thanks p {
  color: #3f4a5c;
  font-weight: 560;
}
/* =========================================================
   Terms / AGB additions
========================================================= */

.legal-check-list,
.legal-warning-list,
.legal-simple-list {
  margin: 22px 0;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.legal-warning-list {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.07), rgba(215, 180, 106, 0.1)),
    #fffaf4;
  border-color: rgba(185, 28, 28, 0.13);
}

.legal-check-list h3,
.legal-warning-list h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 820;
}

.legal-check-list ul,
.legal-warning-list ul,
.legal-simple-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-check-list li,
.legal-warning-list li,
.legal-simple-list li {
  position: relative;
  padding-left: 28px;
  color: #3f4a5c;
  font-size: 16px;
  line-height: 1.62;
}

.legal-check-list li::before,
.legal-simple-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b91c1c;
  font-weight: 900;
}

.legal-warning-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #b91c1c;
  font-weight: 900;
}

@media (max-width: 520px) {
  .legal-check-list,
  .legal-warning-list,
  .legal-simple-list {
    padding: 18px;
    border-radius: 16px;
  }

  .legal-check-list li,
  .legal-warning-list li,
  .legal-simple-list li {
    font-size: 15px;
  }
}
/* =========================================================
   Refund Page Additions
========================================================= */

.refund-content-card {
  overflow: hidden;
}

.refund-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.refund-rule-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 20px;
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.refund-rule-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #b91c1c, #d7b46a);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.refund-rule-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 28, 28, 0.18);
  background-color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.refund-rule-card:hover::before {
  opacity: 1;
}

.refund-rule-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #b91c1c;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 850;
}

.refund-rule-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 820;
}

.refund-rule-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.68;
}

.refund-rule-card--muted {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.07), rgba(215, 180, 106, 0.1)),
    #fffaf4;
  border-color: rgba(185, 28, 28, 0.13);
}

.refund-process {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.refund-process__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.refund-process__item:hover {
  transform: translateX(6px);
  border-color: rgba(185, 28, 28, 0.18);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.refund-process__item > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #0b1526;
  color: #d7b46a;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.refund-process__item h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 820;
}

.refund-process__item p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .refund-rule-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .refund-rule-card {
    padding: 20px;
    border-radius: 17px;
  }

  .refund-process__item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 17px;
  }

  .refund-process__item:hover {
    transform: translateY(-4px);
  }

  .refund-process__item > span {
    width: 48px;
    height: 48px;
  }

  .refund-rule-card h3,
  .refund-process__item h3 {
    font-size: 19px;
  }
}