/* ==========================================================================
   YouCas — youcass.net
   Kurumsal, SEO odaklı statik site stilleri
   Palet: #0066D6 / #0052B8 / #1A7FE3 / #FFFFFF
   ========================================================================== */

:root {
  --blue: #0066d6;
  --blue-dark: #0052b8;
  --blue-light: #1a7fe3;
  --white: #ffffff;
  --navy: #061428;
  --navy-2: #0b1f3d;
  --ink: #122033;
  --muted: #4d5f73;
  --line: #d7e4f4;
  --bg: #f3f7fc;
  --bg-soft: #e8f1fb;
  --shadow: 0 12px 40px rgba(0, 82, 184, 0.12);
  --radius: 16px;
  --header-h: 76px;
  --max: 1180px;
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-dark);
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 14px;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}

.topbar a:hover,
.topbar a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #05101f 0%, #0a1b33 100%);
  border-bottom: 1px solid rgba(26, 127, 227, 0.28);
  min-height: var(--header-h);
}

.header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__item:hover > .nav__link,
.nav__item:focus-within > .nav__link {
  background: rgba(26, 127, 227, 0.18);
  color: var(--white);
}

.nav__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 20;
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--bg-soft);
  color: var(--blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 12px 20px;
  box-shadow: 0 8px 20px rgba(0, 102, 214, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--blue-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 11px 18px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
  padding: 14px 26px;
  font-size: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(26, 127, 227, 0.16);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

/* --------------------------------------------------------------------------
   Hero / slider
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.slider {
  position: relative;
}

.slider__track {
  position: relative;
}

.slide {
  display: none;
  position: relative;
}

.slide.is-active {
  display: block;
  animation: fade 0.55s ease;
}

.slide a {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1072 / 640;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
  vertical-align: middle;
}

.slide--wide img {
  aspect-ratio: 1800 / 427;
  object-position: center;
}

.slider__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider__dot.is-active {
  background: var(--white);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 20, 40, 0.45);
  color: var(--white);
  cursor: pointer;
  z-index: 3;
  font-size: 22px;
}

.slider__btn:hover {
  background: var(--blue);
}

.slider__btn--prev {
  left: 12px;
}

.slider__btn--next {
  right: 12px;
}

.hero-cta {
  background: linear-gradient(180deg, #0b1f3d 0%, #071525 100%);
  padding: 28px 0 36px;
}

.hero-cta__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.hero-cta h1 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-cta p {
  margin: 0 0 20px;
  color: #c9d8ea;
  font-size: 1.05rem;
}

.hero-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pill {
  background: rgba(26, 127, 227, 0.12);
  border: 1px solid rgba(26, 127, 227, 0.28);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
}

.pill span {
  display: block;
  color: #8eb8ea;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg);
}

.section__head {
  max-width: 720px;
  margin-bottom: 32px;
}

.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--navy);
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(0, 82, 184, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  overflow-wrap: anywhere;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1072 / 640;
  object-fit: cover;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.prose h2 {
  font-size: 1.65rem;
  margin: 2rem 0 0.8rem;
}

.prose h3 {
  font-size: 1.28rem;
  margin: 1.6rem 0 0.6rem;
}

.prose h4 {
  font-size: 1.08rem;
  margin: 1.3rem 0 0.5rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose a {
  overflow-wrap: anywhere;
}

.prose ul,
.prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose .more {
  display: none;
}

.prose.is-expanded .more {
  display: contents;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.2rem 0 1.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 14px;
}

tr:nth-child(even) td {
  background: #f7fbff;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.2rem 0 1.6rem;
}

.compare article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--white);
  min-width: 0;
  overflow-wrap: anywhere;
}

.compare h3 {
  margin-top: 0;
}

.note {
  background: var(--bg-soft);
  border-left: 4px solid var(--blue);
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  margin: 1.2rem 0;
}

.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0 0 6px;
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: #e7f1ff;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  overflow-wrap: anywhere;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 14px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Brands
   -------------------------------------------------------------------------- */

.brands {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.brands a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brands a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.brands img {
  width: 100%;
  aspect-ratio: 1800 / 427;
  object-fit: cover;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 48px;
  height: 48px;
}

.socials img {
  width: 48px;
  height: 48px;
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(26, 127, 227, 0.35), transparent 40%),
    linear-gradient(180deg, #071525 0%, #0d2748 100%);
  color: var(--white);
  padding: 42px 0 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
}

.breadcrumb a {
  color: #b9d4f3;
  text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #8eb8ea;
}

.breadcrumb li:last-child {
  color: var(--white);
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 720px;
  color: #cfe0f4;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.prose .cards {
  margin: 20px 0 28px;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  min-width: 0;
}

.prose {
  min-width: 0;
  overflow-wrap: break-word;
}

.aside {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.aside h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.aside ul {
  margin: 0;
  padding-left: 18px;
}

.aside li {
  margin-bottom: 8px;
}

.feature-img {
  margin: 0 0 22px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
}

.feature-img img,
.prose figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #061428;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--navy);
  color: #c5d4e6;
  padding: 48px 0 20px;
}

.footer a {
  color: #d7e8fb;
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer h2 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  margin-top: 8px;
  color: #8ea3bb;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes fade {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  animation: rise 0.6s ease both;
}

.progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--blue-light);
  z-index: 80;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 16px;
}

.error-page h1 {
  font-size: clamp(2.2rem, 12vw, 4rem);
  margin: 0;
  color: var(--blue);
  overflow-wrap: anywhere;
}

/* --------------------------------------------------------------------------
   Affiliate gate (güvenli yönlendirme)
   -------------------------------------------------------------------------- */

.gate {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 48px 16px 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(26, 127, 227, 0.28), transparent 42%),
    linear-gradient(180deg, #071525 0%, #0d2748 38%, var(--bg) 38%);
}

.gate__card {
  max-width: 560px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.gate__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.gate h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.gate__card > p {
  margin: 0 0 14px;
  color: var(--muted);
}

.gate__host {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 15px;
  background: var(--bg);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 12px;
}

.gate__host span {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.gate__bar {
  height: 6px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 10px;
}

.gate__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  animation: gate-fill 4s linear forwards;
}

.gate__count {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

@keyframes gate-fill {
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate__bar span {
    animation: none;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .cards,
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .article,
  .hero-cta__grid,
  .about-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
    flex-shrink: 0;
  }

  .logo {
    order: 1;
  }

  .header__cta {
    display: inline-flex;
    order: 2;
    margin-left: auto;
    padding: 10px 12px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .header__inner {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0a1b33;
    display: none;
    padding: 8px 16px 18px;
    border-bottom: 1px solid rgba(26, 127, 227, 0.28);
    order: 4;
    width: 100%;
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    min-width: 0;
  }

  .nav__item.is-open .dropdown,
  .nav__item:focus-within .dropdown {
    display: block;
  }

  .dropdown a {
    color: var(--white);
  }

  .compare,
  .promo-pills {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .page-hero {
    padding: 28px 0 24px;
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }

  .breadcrumb {
    overflow-wrap: anywhere;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
  }

  .table-wrap td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 10px 12px;
    overflow-wrap: anywhere;
  }

  .table-wrap td:last-child {
    border-bottom: 0;
  }

  .table-wrap td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--navy);
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .error-page p:has(> .btn) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav__link {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .cta-band,
  .hero-cta {
    padding: 22px 0;
  }

  .cta-band {
    padding: 22px;
  }

  .logo img {
    width: 112px;
    height: 38px;
  }

  .header__cta {
    padding: 8px 10px;
    font-size: 13px;
  }

  .card,
  .compare article {
    padding: 16px;
  }
}

@media (min-width: 1440px) {
  :root {
    --max: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
