@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f8f8;
  --surface: #ffffff;
  --surface-2: #f0f0f0;
  --text: #292929;
  --muted: #6d6d6d;
  --line: #dedede;
  --accent: #ffcf42;
  --accent-dark: #e3ad00;
  --dark: #252525;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(28, 28, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  padding-top: 65px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background: rgba(248, 248, 248, 0.94);
  border-bottom: 1px solid rgba(222, 222, 222, 0.7);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 18px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo {
  width: 198px;
  height: 42px;
}

.logo img,
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.footer a {
  transition: color 0.2s ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: #202020;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.round-link,
.socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #202020;
}

.round-link svg,
.round-link img,
.socials a svg,
.socials a img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.round-link svg,
.socials a svg {
  fill: #202020;
}

.max-icon {
  width: 21px;
  height: 21px;
  filter: brightness(0) saturate(100%);
}

.floating-call {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 60;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--accent);
  color: #202020;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-call::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 207, 66, 0.5);
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-call.is-visible::before {
  animation: call-pulse 2.15s ease-out infinite;
}

.floating-call svg {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  fill: #202020;
}

@keyframes call-pulse {
  0% {
    opacity: 0.58;
    transform: scale(0.82);
  }

  68% {
    opacity: 0.08;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-call,
  .floating-call.is-visible::before {
    animation: none;
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 64px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #202020;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #ffd85f;
  transform: translateY(-1px);
}

.btn-small {
  min-height: 34px;
  padding: 0 16px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: #232323;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
  border-radius: 10px;
}

.mobile-panel {
  display: none;
}

.section {
  padding: 42px 0;
}

.section-tight {
  padding: 0 0 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 350px;
  border-radius: 0;
  background: linear-gradient(115deg, #f2f2f2 0%, #ededed 58%, #e6e6e6 100%);
}

.hero-card::after {
  content: none;
}

.hero-ship {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: -74px;
  z-index: 0;
  width: min(46vw, 560px);
  height: auto;
  opacity: 0.5;
  object-fit: contain;
  pointer-events: none;
}

.hero-seagulls {
  position: absolute;
  top: 94px;
  right: max(24px, calc((100vw - 1120px) / 2 - 95px));
  z-index: 1;
  display: block;
  width: min(24vw, 360px);
  height: 170px;
  opacity: 0.78;
  pointer-events: none;
}

.hero-mark {
  flex: 0 0 clamp(70px, 6.4vw, 96px);
  width: clamp(70px, 6.4vw, 96px);
  height: clamp(66px, 6vw, 90px);
  border-radius: 7px;
  background: transparent;
}

.hero-mark img,
.media-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 0 48px;
}

.hero-title {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  max-width: 1120px;
  margin-bottom: 22px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.h1-main,
.h1-sub {
  display: block;
}

.h1-main {
  font-weight: 700;
}

.h1-sub {
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.hero-list,
.check-list,
.dash-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 600;
}

.hero-content > .btn {
  margin-top: 28px;
}

.hero-list li,
.check-list li,
.dash-list li {
  position: relative;
  padding-left: 25px;
}

.hero-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 207, 66, 0.18);
}

.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 11px;
  height: 2px;
  background: var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 26px 0 0;
  text-align: center;
}

.stat {
  position: relative;
  min-height: 106px;
  border: 1px solid rgba(32, 32, 32, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px 14px 18px;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--accent);
}

.stat strong {
  display: block;
  color: #202020;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.stat span {
  display: block;
  max-width: 150px;
  margin: 4px auto 0;
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: start;
}

.intro {
  background: linear-gradient(180deg, #f2f2f2 0%, #eeeeee 100%);
}

.intro .split {
  align-items: center;
}

.intro-heading h2 {
  max-width: 620px;
  margin-bottom: 22px;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  min-height: 46px;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 13px 14px 13px 40px;
  color: #303030;
  font-size: 15px;
  font-weight: 600;
}

.intro-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 207, 66, 0.18);
  transform: translateY(-50%);
}

.lead-copy {
  display: grid;
  gap: 15px;
  font-size: 18px;
}

.lead-copy p {
  position: relative;
  margin-bottom: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 18px 20px;
}

.section-head {
  max-width: 730px;
  margin-bottom: 32px;
}

.row-head {
  display: flex;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.panel,
.step-card,
.benefit-card {
  border-radius: var(--radius);
  background: var(--surface-2);
}

.panel {
  padding: 28px;
}

.panel h3,
.step-card h3,
.benefit-card h3 {
  color: #2d2d2d;
}

.panel p {
  margin: 22px 0 0;
}

.panel-dark {
  background: #282828;
  color: #ffffff;
}

.panel-dark h3,
.panel-dark p {
  color: #ffffff;
}

.check-list,
.dash-list {
  display: grid;
  gap: 13px;
  color: #555;
  font-size: 15px;
}

.panel-dark .dash-list {
  color: #efefef;
}

.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card,
.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  column-gap: 16px;
  row-gap: 12px;
  min-height: 170px;
  padding: 26px;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #202020;
  font-size: 15px;
  font-weight: 800;
}

.step-card h3,
.benefit-card h3 {
  align-self: center;
  margin-bottom: 0;
}

.step-card p,
.benefit-card p {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0;
  font-size: 14px;
}

.benefits-grid.compact .benefit-card {
  min-height: 170px;
}

.risk-section {
  padding-top: 16px;
}

.risk-panel {
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  background: #282828;
  padding: 28px;
}

.risk-panel p {
  margin-bottom: 14px;
  color: #efefef;
}

.risk-panel p:last-child {
  margin-bottom: 0;
}

.icon-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #242424 0 22%, transparent 23%), var(--accent);
}

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

.image-card,
.cargo-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.cargo-img,
.gallery-item,
.ship-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #d7d7d7;
}

.cargo-img::before,
.gallery-item::before,
.ship-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.26), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 8px, transparent 8px 24px);
}

.format-img {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8e8e8;
}

.format-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-body {
  padding: 20px;
}

.image-card-body p {
  min-height: 82px;
  margin-bottom: 10px;
  font-size: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 5px;
  background: var(--accent);
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

.gray-band {
  background: #eeeeee;
}

.feature,
.request-layout {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 58px;
  align-items: center;
}

.request-layout > * {
  min-width: 0;
}

.feature-text-only {
  display: block;
}

.feature-text-only .feature-copy {
  max-width: 760px;
}

.feature-copy p {
  font-size: 17px;
}

.feature-copy h2 + p {
  margin-top: 16px;
}

.feature-copy .btn {
  margin-top: 10px;
}

.feature-visual {
  min-height: 360px;
  border-radius: var(--radius);
  background: #232323;
  padding: 26px;
}

.mini-table {
  display: grid;
  height: 100%;
  gap: 12px;
}

.mini-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 6px;
  background: #ffffff;
  font-size: 14px;
}

.mini-table b {
  color: var(--accent-dark);
  font-size: 12px;
}

.price-table-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #cfcfcf;
  background: #ffffff;
}

.price-table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 15px;
}

.price-table th {
  background: var(--accent);
  color: #252525;
  text-align: left;
}

.price-table th:first-child {
  border-top-left-radius: calc(var(--radius) - 1px);
}

.price-table th:last-child {
  border-top-right-radius: calc(var(--radius) - 1px);
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid #d7d7d7;
}

.price-table th:last-child,
.price-table td:last-child {
  width: 220px;
  text-align: right;
  font-weight: 800;
}

.request-layout {
  align-items: stretch;
  padding: 38px;
  border-radius: var(--radius);
  background: #252525;
}

.form-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px;
}

.form-card h2 {
  margin-bottom: 22px;
  font-size: 24px;
}

.request-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.request-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #f2f2f2;
  color: #202020;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.request-form input {
  height: 46px;
  padding: 0 15px;
}

.request-form textarea {
  resize: vertical;
  padding: 13px 15px;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
}

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

.agree {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: #777 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.agree input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.agree a {
  color: var(--accent-dark);
  font-weight: 700;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: #3d7a35;
  font-size: 13px;
  font-weight: 700;
}

.form-note.is-error {
  color: #b3261e;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 24, 24, 0.48);
  backdrop-filter: blur(6px);
}

.success-modal[hidden] {
  display: none;
}

.success-modal__card {
  width: min(430px, 100%);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.success-modal__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #1fa463;
}

.success-modal__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-modal__card h2 {
  margin-bottom: 10px;
}

.success-modal__card p {
  margin-bottom: 22px;
  font-size: 16px;
}

.request-media {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.74) 100%),
    #496376;
  color: #ffffff;
}

.media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  width: 70px;
  height: 66px;
  border-radius: 0;
  background: transparent;
}

.ship-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.74) 100%);
}

.ship-placeholder span {
  position: absolute;
  left: 28px;
  bottom: 120px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 56px);
  border-radius: 7px;
  background: rgba(32, 32, 32, 0.58);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.ship-placeholder span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.request-media .ship-placeholder::before {
  display: none;
}

.request-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.request-media h3,
.request-media p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.request-media h3 {
  font-size: 28px;
}

.request-media p {
  max-width: 280px;
  margin-bottom: 0;
}

.cargo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cargo-img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: #e8e8e8;
}

.cargo-img::before {
  display: none;
}

.cargo-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cargo-grid h3 {
  min-height: 70px;
  margin: 0;
  padding: 16px;
  font-size: 15px;
}

.wide-text {
  max-width: 900px;
  margin: 26px 0 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #222;
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-height: 260px;
}

.gallery-photo::before {
  display: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

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

.result-grid div {
  position: relative;
  min-height: 92px;
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 24px 24px 24px 58px;
  font-weight: 800;
}

.result-grid div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22a460;
}

.result-grid div::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.data-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 44px;
  align-items: start;
}

.data-layout p {
  margin: 18px 0 0;
}

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

.data-list span {
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 17px 18px;
  color: #343434;
  font-size: 14px;
  font-weight: 800;
}

.cta-strip {
  padding-top: 20px;
}

.dark-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 207, 66, 0.16), transparent 25%),
    #252525;
  padding: 42px;
  color: #ffffff;
}

.dark-cta h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: 28px;
}

.dark-cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #d4d4d4;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.policy-main {
  background: var(--bg);
}

.policy-hero {
  padding: 42px 0 24px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.policy-hero-card {
  min-width: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 207, 66, 0.14), transparent 32%),
    #eeeeee;
  padding: 42px;
}

.policy-hero-card h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.policy-hero-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: #666;
  font-size: 19px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  border-radius: 6px;
  background: #ffffff;
  padding: 0 12px;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-side {
  align-self: start;
  border-radius: var(--radius);
  background: #252525;
  padding: 26px;
  color: #ffffff;
}

.policy-side h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 22px;
}

.policy-side p {
  color: #d8d8d8;
}

.policy-side .btn {
  width: 100%;
  margin-top: 10px;
  padding: 0 18px;
}

@media (min-width: 1021px) {
  .policy-side {
    position: sticky;
    top: calc(65px + 24px);
    z-index: 2;
  }
}

.policy-content {
  border-radius: var(--radius);
  background: #ffffff;
  padding: 34px 38px;
  box-shadow: var(--shadow);
}

.policy-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 700;
}

.policy-content p {
  margin-bottom: 14px;
  color: #626262;
  font-size: 16px;
}

.policy-content a {
  color: var(--accent-dark);
  font-weight: 700;
}

.policy-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.policy-content li {
  position: relative;
  padding-left: 24px;
  color: #626262;
}

.policy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

details {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  position: relative;
  min-height: 58px;
  padding: 19px 56px 18px 22px;
  color: #323232;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--accent);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 14px;
}

.footer {
  padding: 72px 0 46px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  margin-bottom: 28px;
  width: 196px;
  height: 44px;
}

.footer h3 {
  margin-bottom: 18px;
  font-size: 14px;
}

.footer p,
.footer a {
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #222;
  margin: 0;
}

.socials a svg,
.socials a img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 1020px) {
  .nav,
  .header-actions .btn {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .logo {
    width: 138px;
    height: 42px;
  }

  .phone {
    display: none;
  }

  .header-actions .round-link {
    display: inline-grid;
    width: 34px;
    height: 34px;
  }

  .header-actions .round-link svg,
  .header-actions .round-link img {
    width: 19px;
    height: 19px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 65px 20px auto;
    z-index: 30;
    display: none;
    flex-direction: column;
    border-radius: var(--radius);
    background: #ffffff;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow);
  }

  .mobile-panel.is-open {
    display: flex;
  }

  .mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(32, 32, 32, 0.08);
    font-weight: 700;
  }

  .mobile-panel a:last-child {
    margin-top: 10px;
    border-bottom: 0;
  }

  .mobile-panel .btn {
    justify-content: center;
    min-height: 60px;
    padding: 0 16px;
    font-weight: 500;
  }

  .mobile-panel .mobile-phone {
    min-height: 60px;
    color: #202020;
    font-size: 18px;
    font-weight: 800;
  }

  .steps-grid,
  .benefits-grid,
  .cards-row,
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature,
  .request-layout,
  .data-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-side {
    position: static;
  }

  .request-media {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .section {
    padding: 20px 0;
  }

  .section-tight {
    padding: 0 0 14px;
  }

  .hero-card {
    min-height: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .hero-card::after {
    content: none;
  }

  .hero-ship {
    right: -120px;
    bottom: -34px;
    width: 430px;
    opacity: 0.42;
  }

  .hero-seagulls {
    display: none;
  }

  .hero-mark {
    flex-basis: 46px;
    width: 46px;
    height: 44px;
  }

  .hero-content {
    padding: 34px 24px 28px;
  }

  .hero-content > .btn,
  .feature-copy .btn {
    display: flex;
    width: min(430px, 100%);
    min-height: 58px;
    margin: 24px auto 0;
    font-size: 16px;
  }

  .hero-title {
    gap: 11px;
    align-items: center;
    margin-bottom: 22px;
  }

  h1 {
    max-width: 330px;
    font-size: 22px;
    line-height: 1.08;
    text-wrap: auto;
  }

  h2 {
    font-size: 25px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 22px 0 0;
  }

  .split,
  .two-columns,
  .steps-grid,
  .benefits-grid,
  .cards-row,
  .result-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    padding: 24px 0 12px;
  }

  .policy-hero-card,
  .policy-content,
  .policy-side {
    padding: 24px;
  }

  .policy-hero-card p,
  .policy-content p {
    font-size: 15px;
  }

  .policy-hero-card h1 {
    font-size: 30px;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 52px 0 36px;
  }

  .footer-logo {
    width: 176px;
    height: 40px;
    margin-bottom: 14px;
  }

  .footer h3 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .footer p,
  .footer a {
    font-size: 15px;
  }

  .split {
    gap: 24px;
  }

  .risk-section {
    padding-top: 0;
  }

  .lead-copy {
    font-size: 16px;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .lead-copy p {
    padding: 16px 18px;
  }

  .panel,
  .step-card,
  .benefit-card,
  .form-card {
    padding: 22px;
  }

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

  .image-card-body p {
    min-height: auto;
  }

  .feature {
    gap: 28px;
  }

  .feature-visual {
    min-height: 300px;
  }

  .feature-visual {
    min-height: auto;
    padding: 18px;
  }

  .request-layout {
    padding: 16px;
  }

  .request-form,
  .form-grid {
    width: 100%;
  }

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

  .data-list {
    grid-template-columns: 1fr;
  }

  .request-media {
    min-height: 320px;
  }

  .mini-table div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    min-height: 58px;
    padding: 10px 14px;
  }

  .mini-table {
    height: auto;
    gap: 10px;
  }

  .mini-table b {
    text-align: left;
    line-height: 1.15;
  }

  .cargo-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .cargo-grid article {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .gallery {
    display: flex;
  }

  .gallery-item {
    flex: 0 0 78%;
    min-height: 230px;
  }

  .row-head {
    align-items: flex-start;
  }

  .dark-cta {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .dark-cta h2 {
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-top: 59px;
    font-size: 15px;
  }

  .header-inner {
    min-height: 58px;
    gap: 6px;
  }

  .logo {
    width: 120px;
    height: 42px;
  }

  .site-header .logo img {
    transform: scale(1.34);
    transform-origin: left center;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .round-link {
    width: 34px;
    height: 34px;
  }

  .header-actions .round-link svg,
  .header-actions .round-link img {
    width: 15px;
    height: 15px;
  }

  .floating-call {
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
  }

  .floating-call svg {
    width: 25px;
    height: 25px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .menu-toggle span {
    width: 18px;
    margin: 3px auto;
  }

  .mobile-panel {
    inset: 59px 12px auto;
  }

  h1 {
    font-size: 21px;
  }

  h2 {
    font-size: 23px;
  }

  .hero-list {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: center;
  }

  .stat {
    min-height: 104px;
    padding: 20px 10px 16px;
  }

  .stat span {
    max-width: 175px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .stat strong {
    font-size: 22px;
  }

  .price-table {
    min-width: 0;
    font-size: 12px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 34%;
  }

  .price-table td:last-child {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .cargo-grid article,
  .gallery-item {
    flex-basis: 88%;
  }
}

@media (max-width: 400px) {
  .site-header .container {
    width: calc(100% - 14px);
  }

  .header-inner {
    gap: 4px;
  }

  .header-actions {
    gap: 10px;
  }

  .logo {
    width: 108px;
  }

  .header-actions .round-link {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 380px) {
  .request-layout {
    width: min(100% - 12px, 560px);
    padding: 10px;
  }

  .form-card {
    padding: 18px;
  }

  .form-card h2 {
    font-size: 22px;
    line-height: 1.15;
  }

  .request-form input {
    height: 44px;
    padding: 0 12px;
  }

  .request-form textarea {
    padding: 12px;
  }
}
