/* ============================================================
   ТРАНСЛИВ — перевозка молока
   Дизайн-система: синий / голубой / белый
   ============================================================ */

:root {
  /* Палитра */
  --blue-950: #061E3D;
  --blue-900: #072F5F;
  --blue-800: #0A3D7C;
  --blue-700: #0B4E8C;
  --blue-600: #0E5CB0;
  --blue-500: #1467C8;
  --blue-400: #3E93E0;
  --blue-300: #5EB3F0;
  --sky-200:  #B9DFF9;
  --sky-100:  #E8F4FD;
  --white:    #FFFFFF;
  --ink:      #0E2237;

  /* Типографика */
  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Прочее */
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-card: 0 12px 40px -12px rgba(11, 78, 140, .18);
  --shadow-deep: 0 30px 80px -20px rgba(6, 30, 61, .45);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }

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

::selection { background: var(--blue-300); color: var(--white); }

:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 6px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: 0;
  border-radius: 100px;
  font: 700 16px/1 var(--font-body);
  letter-spacing: .01em;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400) 60%, var(--blue-300));
  background-size: 160% 160%;
  background-position: 0% 0%;
  box-shadow: 0 14px 32px -10px rgba(20, 103, 200, .55);
  transition: background-position .45s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover {
  background-position: 90% 100%;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -12px rgba(20, 103, 200, .65);
  color: var(--white);
}
.btn:active { transform: translateY(0); }

.btn--sm { padding: 11px 22px; font-size: 14.5px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .8); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.is-solid {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 6px 30px -12px rgba(7, 47, 95, .25);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__text {
  font: 800 22px/1 var(--font-display);
  letter-spacing: .02em;
  color: var(--white);
  transition: color .35s;
}
.logo__text span { color: var(--blue-300); transition: color .35s; }
.header.is-solid .logo__text { color: var(--blue-900); }
.header.is-solid .logo__text span { color: var(--blue-500); }
.logo__text--footer { color: var(--white); }
.logo__text--footer span { color: var(--blue-300); }

.nav { display: flex; gap: 6px; margin-inline: auto; }
.nav a {
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .92);
  transition: background .25s, color .25s;
}
.nav a:hover { background: rgba(255, 255, 255, .14); color: var(--white); }
.header.is-solid .nav a { color: var(--blue-800); }
.header.is-solid .nav a:hover { background: var(--sky-100); color: var(--blue-600); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  transition: color .35s;
}
.header.is-solid .header__phone { color: var(--blue-800); }

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  width: 22px; height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.header.is-solid .burger span { background: var(--blue-800); }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   МОЛОКОВОЗ (вид сверху) — фиксированная «колея» справа
   ============================================================ */
.truck-rail {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 34vw);
  height: 100vh;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.truck-rail.is-visible { opacity: 1; }

.truck-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.truck-route path {
  stroke-dasharray: 2 14;
  animation: road-flow 1.6s linear infinite;
}
@keyframes road-flow {
  to { stroke-dashoffset: -16; }
}

.truck {
  position: absolute;
  left: 50%;
  top: 0;
  width: 420px;
  max-width: none; /* длина машины больше ширины колеи — это норм, она центрирована */
  height: auto;
  /* новую картинку поворачиваем на 180° от прежней: кабина смотрит вниз */
  transform: translate(-50%, 0) rotate(90deg);
  transform-origin: center;
  filter: drop-shadow(0 18px 26px rgba(7, 47, 95, .35));
  will-change: transform;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}

.hero__carousel, .hero__scrim { position: absolute; inset: 0; z-index: -1; }

.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Ken Burns: медленный наезд у активного слайда, направления чередуются */
.hero__slide.is-active img { animation: kenburns 8.5s ease-out forwards; }
.hero__slide.is-active:nth-child(2) img { animation-name: kenburns-alt; }
@keyframes kenburns     { from { transform: scale(1) translate(0, 0); }        to { transform: scale(1.12) translate(-1.5%, 1%); } }
@keyframes kenburns-alt { from { transform: scale(1.12) translate(1.5%, -1%); } to { transform: scale(1) translate(0, 0); } }

.hero__scrim {
  background:
    linear-gradient(100deg,
      rgba(6, 30, 61, .88) 0%,
      rgba(7, 47, 95, .72) 38%,
      rgba(11, 78, 140, .42) 68%,
      rgba(20, 103, 200, .28) 100%),
    radial-gradient(90% 80% at 85% 15%, rgba(94, 179, 240, .28), transparent 60%);
}

.hero__content { padding-top: var(--header-h); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  color: var(--sky-200);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 12px 2px rgba(94, 179, 240, .9);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 179, 240, .7); }
  60%      { box-shadow: 0 0 0 9px rgba(94, 179, 240, 0); }
}

.hero__title { margin-top: 26px; }
.hero__word {
  display: block;
  font: 800 clamp(52px, 9.2vw, 132px) / 1.02 var(--font-display);
  letter-spacing: .01em;
  color: var(--white);
  text-shadow: 0 10px 44px rgba(6, 30, 61, .55);
  overflow: hidden;
  padding-bottom: .08em;
}
.hero__accent {
  background: linear-gradient(120deg, var(--blue-300) 10%, var(--sky-200) 50%, var(--blue-300) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* после JS-разбивки на буквы каждый span получает собственный градиент,
   иначе background-clip родителя не красит текст детей */
.hero__accent .char {
  background: linear-gradient(120deg, var(--blue-300) 10%, var(--sky-200) 50%, var(--blue-300) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__word .char {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  animation: char-in .9s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 55ms + .15s);
}
@keyframes char-in {
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero__sub {
  display: block;
  margin-top: 18px;
  font: 600 clamp(16px, 2.2vw, 24px)/1.45 var(--font-body);
  color: var(--sky-200);
  max-width: 30ch;
}

.hero__lead {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(233, 244, 253, .88);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 22px; height: 22px; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 9px); }
}

/* ============================================================
   Секции — общее
   ============================================================ */
.section { padding: clamp(84px, 10vw, 130px) 0; }

.section__head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-500);
  padding-left: 34px;
  position: relative;
}
.section__kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
}
.section__kicker--light { color: var(--sky-200); }
.section__kicker--light::before { background: linear-gradient(90deg, var(--sky-200), var(--blue-300)); }

.section__title {
  margin-top: 14px;
  font: 700 clamp(30px, 4.4vw, 52px)/1.12 var(--font-display);
  color: var(--blue-950);
  letter-spacing: .005em;
}
.section--alt .section__title,
.request .section__title { color: var(--white); }

.section__lead { margin-top: 16px; font-size: 18px; color: #40566E; max-width: 58ch; }
.section--alt .section__lead,
.request .request__lead { color: rgba(233, 244, 253, .85); }

/* ---------- 2. Преимущества ---------- */
.advantages {
  background:
    radial-gradient(60% 45% at 88% 0%, var(--sky-100) 0%, transparent 70%),
    radial-gradient(50% 40% at 0% 100%, var(--sky-100) 0%, transparent 70%),
    var(--white);
}

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

.card {
  padding: 34px 30px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(94, 179, 240, .25);
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px -18px rgba(11, 78, 140, .32);
  border-color: rgba(20, 103, 200, .45);
}
.card__icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blue-600);
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  margin-bottom: 22px;
  transition: transform .35s var(--ease-out);
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { font: 700 19.5px/1.3 var(--font-body); color: var(--blue-950); margin-bottom: 10px; }
.card p  { font-size: 15.5px; color: #4A5F76; }

/* ---------- 3. География ---------- */
.location {
  background:
    linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  position: relative;
  overflow: clip;
}
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 38% at 12% 8%, rgba(94, 179, 240, .22), transparent 70%),
    radial-gradient(38% 42% at 92% 88%, rgba(185, 223, 249, .14), transparent 70%);
  pointer-events: none;
}

.location__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.location__map {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(185, 223, 249, .2);
  overflow: hidden;
}
.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.location__list li {
  flex: 1;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(185, 223, 249, .22);
  backdrop-filter: blur(8px);
  transition: background .3s;
}
.location__list li:hover { background: rgba(255, 255, 255, .12); }
.location__list strong { display: block; font-size: 18px; color: var(--white); margin-bottom: 8px; }
.location__list span  { font-size: 15px; color: rgba(233, 244, 253, .8); }

/* ---------- 4. Заявка ---------- */
.request {
  background:
    radial-gradient(50% 60% at 100% 0%, var(--sky-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--sky-100) 100%);
}

.request__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.request__info .section__title { color: var(--blue-950); }

.request__contacts { list-style: none; margin-top: 34px; display: grid; gap: 14px; }
.request__contacts li { display: flex; align-items: center; gap: 14px; }
.request__contacts svg {
  width: 44px; height: 44px;
  padding: 11px;
  border-radius: 14px;
  color: var(--blue-600);
  background: var(--white);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.request__contacts a { font-weight: 800; font-size: 19px; color: var(--blue-900); }

.form {
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-deep);
  display: grid;
  gap: 20px;
}

.form__field { display: grid; gap: 8px; }
.form__field label { font-weight: 700; font-size: 14.5px; color: var(--blue-900); }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #D5E6F5;
  border-radius: 14px;
  background: var(--sky-100);
  font: 500 16px var(--font-body);
  color: var(--ink);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form__field textarea { resize: vertical; min-height: 88px; }
.form__field input::placeholder,
.form__field textarea::placeholder { color: #8FA9C2; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(94, 179, 240, .22);
}
.form__field input[aria-invalid="true"] { border-color: #E3453C; background: #FFF6F5; }

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #5B7188;
  cursor: pointer;
}
.form__consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--blue-500); flex-shrink: 0; }
.form__consent a { color: var(--blue-600); text-decoration: underline; }

.form__submit { width: 100%; margin-top: 4px; }

.form__success {
  padding: 16px 20px;
  border-radius: 14px;
  background: #E9F9EF;
  color: #1C7C3C;
  font-weight: 700;
  text-align: center;
}

.form__error {
  padding: 16px 20px;
  border-radius: 14px;
  background: #FDEDEC;
  color: #C0392B;
  font-weight: 700;
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {  background: var(--blue-950);
  color: rgba(233, 244, 253, .75);
  padding: 56px 0 40px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.footer__brand p { margin-top: 14px; font-size: 15px; max-width: 30ch; }
.footer__nav { display: grid; gap: 10px; justify-items: start; }
.footer__nav a { color: rgba(233, 244, 253, .75); font-weight: 600; }
.footer__nav a:hover { color: var(--white); }
.footer__meta { display: grid; gap: 10px; justify-items: end; text-align: right; }
.footer__meta a { color: var(--sky-200); font-weight: 800; font-size: 17px; }
.footer__meta p { font-size: 13.5px; }

/* ============================================================
   Reveal-анимации при скролле
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1180px) {
  .truck-rail { display: none; } /* на узких экранах машина перекрывала бы контент */
  .cards { grid-template-columns: repeat(2, 1fr); }
}

/* Широкие экраны: контент живёт в области левее «колеи» молоковоза */
@media (min-width: 1181px) {
  :root { --rail-w: 340px; }
  .truck-rail { width: var(--rail-w); }
  .truck { width: 425px; }

  .section .container,
  .hero__content,
  .footer .container {
    width: min(1200px, calc(100% - var(--rail-w) - 48px));
    margin-left: max(24px, calc((100% - var(--rail-w) - 24px - 1200px) / 2));
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; }
  .request__grid { grid-template-columns: 1fr; }
  .footer__row { grid-template-columns: 1fr 1fr; }
  .footer__meta { justify-items: start; text-align: left; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px 24px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 40px -20px rgba(7, 47, 95, .3);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { color: var(--blue-800); font-size: 17px; padding: 13px 18px; }

  .burger { display: flex; margin-left: auto; }
  .header__actions { display: none; }

  .hero__content { text-align: left; }
  .hero__cta .btn { width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  /* Unbounded — широкий шрифт: на узких экранах «ТРАНСЛИВ» масштабируем от
     ширины вьюпорта, иначе последняя буква переносится на новую строку */
  .hero__word { font-size: clamp(38px, 11.5vw, 52px); letter-spacing: 0; }
  .cards { grid-template-columns: 1fr; }
  .footer__row { grid-template-columns: 1fr; gap: 26px; }
  .location__map { min-height: 340px; }
  .location__tag { font-size: 12.5px; padding: 8px 14px; }
  .container { width: calc(100% - 36px); }
}

/* ---------- Пользователь предпочитает меньше анимаций ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__word .char { transform: none; opacity: 1; animation: none; }
}

/* ============================================================
   Внутренние страницы (Политика и т.п.)
   ============================================================ */
.body--inner .header {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 6px 30px -12px rgba(7, 47, 95, .25);
}
.body--inner .header .logo__text { color: var(--blue-900); }
.body--inner .header .logo__text span { color: var(--blue-500); }
.body--inner .header .nav a { color: var(--blue-800); }
.body--inner .header .nav a:hover { background: var(--sky-100); color: var(--blue-600); }
.body--inner .header .header__phone { color: var(--blue-800); }
.body--inner .burger span { background: var(--blue-800); }
@media (max-width: 860px) {
  .body--inner .nav a { color: var(--blue-800); }
}

.policy {
  padding: calc(var(--header-h) + 48px) 0 90px;
  background:
    radial-gradient(50% 40% at 100% 0%, var(--sky-100) 0%, transparent 60%),
    var(--white);
}
.policy__container { max-width: 860px; }
.policy__title {
  margin-top: 14px;
  font: 700 clamp(26px, 3.6vw, 42px)/1.15 var(--font-display);
  color: var(--blue-950);
}
.policy__meta {
  margin: 14px 0 34px;
  font-size: 14px;
  font-weight: 600;
  color: #6E8399;
}
.policy section { margin-bottom: 34px; }
.policy h2 {
  font: 700 20px/1.35 var(--font-body);
  color: var(--blue-800);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sky-200);
}
.policy p { margin-bottom: 12px; color: #33475C; font-size: 16px; }
.policy ul { margin: 0 0 14px 20px; }
.policy li { margin-bottom: 8px; color: #33475C; font-size: 16px; }

.policy__table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.policy__table th,
.policy__table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--sky-100);
  font-size: 15.5px;
}
.policy__table tr:last-child th,
.policy__table tr:last-child td { border-bottom: 0; }
.policy__table th {
  width: 34%;
  background: var(--sky-100);
  color: var(--blue-900);
  font-weight: 700;
}
.policy__table td { background: var(--white); color: #33475C; }
