:root {
  --ink: #0f172a;
  --gold: #c9a24d;
  --gold-light: #e0bc63;
  --gold-dark: #a88432;
  --home-bg: #0a0a0b;
  --home-panel: #141416;
  --home-panel-border: rgba(201, 162, 77, 0.22);
  --home-text: #f5f5f5;
  --home-muted: rgba(255, 255, 255, 0.68);
  --container: 1180px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --step-num-size: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--home-text);
  background: var(--home-bg);
  line-height: 1.55;
}

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

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

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

.page-dark {
  min-height: 100vh;
  background: var(--home-bg);
}

/* Header */

.site-header {
  position: relative;
  z-index: 50;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: 13px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  overflow: visible;
}

.header-nav > a,
.header-nav-trigger {
  color: inherit;
}

.header-nav > a:hover,
.header-nav-trigger:hover,
.header-nav-trigger.active {
  color: #fff;
}

.header-nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.header-nav-trigger {
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: default;
  appearance: none;
  -webkit-appearance: none;
}

.header-nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 8px;
  border-radius: 14px;
  background: #17171b;
  border: 1px solid rgba(201, 162, 77, 0.24);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}

.header-nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.header-nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.header-nav-dropdown a:hover,
.header-nav-dropdown a.active {
  color: #fff;
  background: rgba(201, 162, 77, 0.14);
}

.header-nav-dropdown-wrap:hover .header-nav-dropdown,
.header-nav-dropdown-wrap:focus-within .header-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.header-contact img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.header-viber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.header-viber img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.header-actions .btn img {
  width: 44px;
  height: 44px;
}

.header-actions .btn {
  min-height: 56px;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-gold {
  color: #fff;
  background: linear-gradient(180deg, #e8c56a 0%, #c9a24d 48%, #a88432 100%);
  box-shadow: 0 10px 28px rgba(201, 162, 77, 0.28);
}

.btn-gold img {
  filter: brightness(0) invert(1);
}

.btn-gold:hover {
  background: linear-gradient(180deg, #f0d07a 0%, #d4b05a 48%, #b89432 100%);
}

.btn-outline-gold {
  color: var(--gold-light);
  border-color: rgba(201, 162, 77, 0.55);
  background: transparent;
}

.btn-outline-gold:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 77, 0.08);
}

/* Hero block */

.home-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 162, 77, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.95) 100%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 42px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 6px 18px 6px 10px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.hero-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

a.hero-badge {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.hero-badge:hover {
  border-color: rgba(201, 162, 77, 0.75);
  background: rgba(201, 162, 77, 0.08);
}

.home-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.home-hero .hero-lead {
  margin: 0 0 34px;
  max-width: 560px;
  color: var(--home-muted);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .btn {
  min-height: 60px;
  padding: 0 25px;
  padding-left: 10px;
  font-size: 15px;
  gap: 14px;
}

.hero-buttons .btn-gold img {
  width: 44px;
  height: 44px;
}

.hero-buttons .btn-outline-gold img {
  width: 52px;
  height: 52px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  justify-self: end;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  background: #0a0a0b;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
  transform: scale(1.18);
  transform-origin: center bottom;
}

.hero-float-card {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: min(calc(100% - 44px), 300px);
  padding: 18px 18px 16px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 16px;
  background: rgba(20, 20, 22, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-float-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
}

.hero-float-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.35;
}

.hero-float-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* Benefits row */

.home-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 54px;
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px 18px;
  border: 1px solid var(--home-panel-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.home-benefit img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.home-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.home-benefit strong,
.home-benefit .gold {
  color: var(--gold-light);
  font-weight: 700;
}

/* Transport / Gruz 200 block */

.home-transport {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  color: #2a2218;
  background: linear-gradient(180deg, #f8f3e8 0%, #f3ecdf 100%);
}

.home-transport-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}

.home-transport-lilies {
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  height: min(560px, 92%);
  max-width: min(48vw, 520px);
  transform: translateY(-50%);
  object-fit: contain;
  object-position: left center;
}

.home-transport-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 243, 232, 0) 0%,
    rgba(248, 243, 232, 0.35) 22%,
    rgba(248, 243, 232, 0.92) 42%,
    #f8f3e8 55%
  );
  pointer-events: none;
}

.home-transport-inner {
  position: relative;
  z-index: 1;
}

.home-transport-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}

.home-transport-copy {
  position: relative;
  z-index: 1;
}

.gruz-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.gruz-label span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(168, 132, 50, 0.55);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gruz-label-line {
  position: relative;
  width: 72px;
  height: 1px;
  background: rgba(168, 132, 50, 0.45);
}

.gruz-label-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(168, 132, 50, 0.55);
  transform: translateY(-50%) rotate(45deg);
  background: #f8f3e8;
}

.home-transport-copy h2 {
  margin: 0 0 18px;
  max-width: none;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  font-weight: 600;
  color: #241c12;
}

.home-transport-copy > p {
  margin: 0 0 28px;
  max-width: none;
  color: #6a5f50;
  font-size: 16px;
}

.home-transport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-transport-actions .btn {
  min-height: 56px;
  padding: 0 28px 0 14px;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  border-radius: 14px;
}

.btn-transport-primary {
  color: #fff;
  border: 1px solid #a88432;
  box-shadow: 0 10px 28px rgba(168, 132, 50, 0.22);
}

.btn-transport-primary img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-transport-actions .btn-light {
  color: #2a2218;
  background: #faf6ee;
  border: 1.5px solid rgba(168, 132, 50, 0.62);
  box-shadow: 0 8px 22px rgba(42, 34, 24, 0.05);
}

.home-transport-actions .btn-light img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.home-transport-actions .btn-light:hover {
  color: #1a1204;
  border-color: rgba(168, 132, 50, 0.85);
  background: #fffdf8;
}

.home-transport-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  gap: 18px;
  --step-gap: 18px;
}

.home-transport-steps li {
  position: relative;
  display: grid;
  grid-template-columns: var(--step-num-size) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.home-transport-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: var(--step-num-size);
  left: calc(var(--step-num-size) / 2);
  bottom: calc(-1 * var(--step-gap));
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.65), rgba(201, 162, 77, 0.35));
  pointer-events: none;
}

.step-num {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--step-num-size);
  height: var(--step-num-size);
  flex-shrink: 0;
  object-fit: contain;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 108px;
  padding: 20px 22px;
  border: 1px solid rgba(168, 132, 50, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 40px rgba(42, 34, 24, 0.07);
}

.step-card img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.step-card strong {
  display: block;
  margin-bottom: 6px;
  color: #241c12;
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: #6a5f50;
  font-size: 14px;
  line-height: 1.45;
}

.home-transport-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(168, 132, 50, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(42, 34, 24, 0.06);
}

.home-transport-cta-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 50%;
  background: #fff;
}

.home-transport-cta-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.home-transport-cta-copy strong {
  display: block;
  margin-bottom: 8px;
  color: #241c12;
  font-size: 20px;
}

.home-transport-cta-copy p {
  margin: 0;
  max-width: 560px;
  color: #6a5f50;
  font-size: 15px;
}

.btn-cta-arrow {
  min-height: 54px;
  padding: 0 24px;
  white-space: nowrap;
}

.btn-cta-arrow span {
  font-size: 18px;
  line-height: 1;
}

/* Services block */

.home-services {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(201, 162, 77, 0.08), transparent 28%),
    linear-gradient(180deg, #121214 0%, #0a0a0b 100%);
}

.home-services-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: min(36vw, 420px);
  pointer-events: none;
  opacity: 0.95;
}

.home-services-deco img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right top;
}

.home-services-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 36px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-label img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.home-services-head h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 600;
}

.home-services-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.home-services-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(201, 162, 77, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(201, 162, 77, 0.42);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.service-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.service-card-lg img {
  border-radius: 12px;
}

.service-card-lg img[src*="photo_hands"] {
  object-fit: cover;
  border-radius: 12px;
}

.service-card-sm img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.service-card-sm strong {
  font-size: 16px;
}

.service-card p {
  margin: 0 0 16px;
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.service-link {
  margin-top: auto;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

.service-card-lg .service-link {
  margin-top: 14px;
}

.service-card-accent {
  border-color: rgba(201, 162, 77, 0.55);
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 77, 0.08);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-services-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.home-services-cta-lily {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
}

.home-services-cta-lily img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-services-cta-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.home-services-cta-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.home-services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-services-cta-actions .btn {
  min-height: 56px;
  padding: 0 22px 0 12px;
  font-size: 14px;
  gap: 10px;
}

.home-services-cta-actions .btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Turnkey funeral block */

.home-turnkey {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  color: #2a2218;
    background-image: url(/assets/img/biblia.png);
    background-image: no-repeat;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-turnkey-inner {
  position: relative;
  z-index: 1;
}

.home-turnkey-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

.home-turnkey-left {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  isolation: isolate;
}

.home-turnkey-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: min(440px, 68%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.home-turnkey-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    #f3ecdf 0%,
    rgba(243, 236, 223, 0.72) 18%,
    rgba(243, 236, 223, 0.28) 48%,
    transparent 78%
  );
  z-index: 1;
}

.home-turnkey-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.home-turnkey-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-turnkey-copy {
  flex-shrink: 0;
}

.home-turnkey-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  font-weight: 600;
  color: #241c12;
}

.turnkey-accent {
  color: var(--gold-dark);
}

.home-turnkey-copy > p {
  margin: 0;
  color: #6a5f50;
  font-size: 16px;
  line-height: 1.6;
}

.home-turnkey-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 135px;
  flex-shrink: 0;
}

.home-turnkey-actions .btn {
  width: 100%;
  max-width: none;
  min-height: 56px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  border-radius: 14px;
  justify-content: flex-start;
  text-align: left;
}

.btn-turnkey-primary {
  color: #fff;
  border: 1px solid #a88432;
  box-shadow: 0 10px 28px rgba(168, 132, 50, 0.22);
}

.btn-turnkey-primary span {
  font-size: 18px;
  line-height: 1;
}

.home-turnkey-actions .btn-light {
  padding: 15px 14px 15px 12px;
  color: #2a2218;
  background: #faf6ee;
  border: 1.5px solid rgba(168, 132, 50, 0.62);
  box-shadow: 0 8px 22px rgba(42, 34, 24, 0.05);
}

.home-turnkey-actions .btn-light img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.home-turnkey-actions .btn-light:hover {
  color: #1a1204;
  border-color: rgba(168, 132, 50, 0.85);
  background: #fffdf8;
}

.home-turnkey-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  gap: 14px;
  --step-gap: 14px;
}

.home-turnkey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: var(--step-num-size) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.home-turnkey-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: var(--step-num-size);
  left: calc(var(--step-num-size) / 2);
  bottom: calc(-1 * var(--step-gap));
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201, 162, 77, 0.65), rgba(201, 162, 77, 0.35));
  pointer-events: none;
}

.home-turnkey-steps .step-card {
  min-height: 96px;
  padding: 18px 20px;
}

/* Pricing block */

.home-pricing {
  padding: 80px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 162, 77, 0.07), transparent 32%),
    linear-gradient(180deg, #0a0a0b 0%, #121214 100%);
}

.home-pricing-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.home-pricing-head {
  max-width: 520px;
}

.home-pricing-head h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: 600;
}

.home-pricing-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.home-pricing-note {
  margin-top: 16px !important;
  color: var(--gold-light) !important;
  font-weight: 600;
}

.home-pricing-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.home-pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.home-pricing-card-lg {
  min-height: 220px;
}

.home-pricing-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.home-pricing-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1.3;
}

.home-pricing-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.home-pricing-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(201, 162, 77, 0.24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.home-pricing-cta-photo {
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
}

.home-pricing-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-pricing-cta-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.home-pricing-cta-copy > p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.home-pricing-checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 0px;
}

.home-pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.home-pricing-checklist img {
  width: 40px;
  height: 40px;
  margin-top: 1px;
  flex-shrink: 0;
  object-fit: contain;
}

.home-pricing-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.home-pricing-cta-actions .btn {
  min-height: 56px;
  padding: 0 22px;
  font-size: 14px;
  white-space: nowrap;
}

.home-pricing-cta-actions .btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Trust block */

.home-trust {
  padding: 72px 0 80px;
  color: #2a2218;
  background: linear-gradient(180deg, #f8f3e8 0%, #f3ecdf 100%);
}

.home-trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: start;
}

.home-trust-copy {
  position: relative;
  min-height: 100%;
}

.home-trust-bg {
  position: absolute;
  left: -12px;
  bottom: 0;
  width: min(100%, 440px);
  pointer-events: none;
}

.home-trust-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #f3ecdf 0%, rgba(243, 236, 223, 0.2) 42%, transparent 100%);
}

.home-trust-bg img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: left bottom;
}

.home-trust-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding-bottom: 28px;
}

.home-trust-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-trust-content h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.18;
  font-weight: 600;
  color: #241c12;
}

.home-trust-content > p {
  margin: 0;
  color: #6a5f50;
  font-size: 16px;
  line-height: 1.6;
}

.home-trust-list {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.home-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a4034;
  font-size: 15px;
  line-height: 1.4;
}

.home-trust-list img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-trust-help {
  min-height: 56px;
  padding: 0 22px 0 28px;
  font-size: 15px;
  gap: 14px;
  box-shadow: 0 10px 28px rgba(168, 132, 50, 0.22);
}

.btn-trust-help img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.home-trust-card {
  overflow: hidden;
  border: 1px solid rgba(168, 132, 50, 0.14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 40px rgba(42, 34, 24, 0.06);
}

.home-trust-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5efe4;
}

.home-trust-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-trust-card-body {
  padding: 18px 18px 20px;
}

.home-trust-card-body strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #241c12;
}

.home-trust-card-body p {
  margin: 0;
  color: #6a5f50;
  font-size: 14px;
  line-height: 1.45;
}

/* Documents block */

.home-docs {
  padding: 80px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 162, 77, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0a0b 0%, #121214 100%);
}

.home-docs-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
}

.home-docs-visual {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
}

.home-docs-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.home-docs-head {
  margin-bottom: 24px;
}

.home-docs-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-docs-label .gruz-label-line {
  background: rgba(201, 162, 77, 0.45);
}

.home-docs-label .gruz-label-line::after {
  background: #121214;
  border-color: rgba(201, 162, 77, 0.45);
}

.home-docs-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.18;
  font-weight: 600;
}

.home-docs-head p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

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

.home-docs-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(201, 162, 77, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.home-docs-item-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.06);
  flex-shrink: 0;
}

.home-docs-item-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.home-docs-item-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--gold-light);
}

.home-docs-num {
  margin-right: 6px;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-docs-item-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

/* FAQ block */

.home-faq {
  padding: 80px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 162, 77, 0.07), transparent 28%),
    linear-gradient(180deg, #121214 0%, #0a0a0b 100%);
}

.home-faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: stretch;
}

.home-faq-copy {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.home-faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-faq-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.82) 0%,
    rgba(10, 10, 11, 0.42) 34%,
    rgba(10, 10, 11, 0.08) 58%,
    transparent 100%
  );
}

.home-faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.home-faq-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
  min-height: 100%;
  padding: 8px 40px 28px;
}

.home-faq-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-faq-label .gruz-label-line {
  background: rgba(201, 162, 77, 0.45);
}

.home-faq-label .gruz-label-line::after {
  background: #121214;
  border-color: rgba(201, 162, 77, 0.45);
}

.home-faq-content h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.18;
  font-weight: 600;
}

.home-faq-content > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

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

.home-faq-item {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-faq-item.is-open {
  border-color: rgba(201, 162, 77, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.home-faq-trigger {
  display: grid;
  grid-template-columns: 52px 1px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.home-faq-num {
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.home-faq-divider {
  width: 1px;
  height: 38px;
  background: rgba(201, 162, 77, 0.35);
}

.home-faq-question {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}

.home-faq-toggle {
  width: 28px;
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease;
}

.home-faq-item.is-open .home-faq-toggle {
  transform: rotate(45deg);
}

.home-faq-panel {
  padding: 0 22px 20px 92px;
}

.home-faq-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.home-faq-cta {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.home-faq-cta-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}

.home-faq-cta-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.home-faq-cta-divider {
  width: 1px;
  height: 72px;
  background: rgba(201, 162, 77, 0.28);
}

.home-faq-cta-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.home-faq-cta-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.home-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-faq-cta-actions .btn {
  min-height: 56px;
  padding: 0 22px 0 14px;
  font-size: 14px;
  gap: 10px;
  white-space: nowrap;
}

.home-faq-cta-actions .btn-gold img {
  filter: brightness(0) invert(1);
}

.home-faq-cta-actions .btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Footer */

.home-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #0a0a0b 0%, #080809 100%);
  border-top: 1px solid rgba(201, 162, 77, 0.12);
}

.home-footer-deco {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(34vw, 360px);
  pointer-events: none;
  opacity: 0.22;
}

.home-footer-deco img {
  width: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.home-footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.75fr));
  gap: 36px;
  padding-bottom: 36px;
}

.home-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.home-footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.home-footer-logo strong,
.home-footer-logo small {
  display: block;
}

.home-footer-logo strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.home-footer-logo small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-footer-brand > p {
  margin: 0 0 22px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
}

.home-footer-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 380px;
}

.home-footer-features article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.home-footer-features img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.home-footer-features span {
  display: grid;
  gap: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.home-footer-features strong {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.home-footer-col h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-footer-ornament {
  display: block;
  width: 42px;
  height: 10px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.7;
}

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

.home-footer-col nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}

.home-footer-col nav a::before {
  content: "›";
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.home-footer-col nav a:hover {
  color: #fff;
}

.home-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.home-footer-contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.home-footer-contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.06);
}

.home-footer-contact-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.home-footer-contact-list span {
  display: grid;
  gap: 2px;
}

.home-footer-contact-list a,
.home-footer-contact-list strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.home-footer-contact-list small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.35;
}

.home-footer-divider {
  position: relative;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.35) 15%, rgba(201, 162, 77, 0.35) 85%, transparent);
}

.home-footer-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  transform: translate(-50%, -50%) rotate(45deg);
  background: #080809;
}

.home-footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.home-footer-bottom > div {
  display: grid;
  gap: 4px;
}

.home-footer-bottom strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.home-footer-bottom small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.4;
}

.home-footer-bottom .gold {
  color: var(--gold-light);
}

.home-footer-legal {
  display: grid;
  gap: 6px !important;
}

.home-footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.home-footer-legal a:hover {
  color: var(--gold-light);
}

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

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 36px;
  }

  .hero-visual {
    max-width: none;
    justify-self: stretch;
  }

  .hero-float-card {
    top: 18px;
    left: 18px;
    width: min(calc(100% - 36px), 300px);
  }

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

  .home-transport-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-transport-lilies {
    max-width: min(60vw, 340px);
    height: min(400px, 70%);
  }

  .home-transport-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .home-transport-cta-icon {
    justify-self: start;
  }

  .home-services-featured {
    grid-template-columns: 1fr;
  }

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

  .home-services-deco {
    width: min(50vw, 280px);
    opacity: 0.35;
  }

  .home-services-cta {
    grid-template-columns: 1fr;
  }

  .home-services-cta-actions {
    justify-content: flex-start;
  }

  .home-turnkey-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

.home-turnkey-left {
    min-height: 0;
    padding-bottom: 160px;
  }

  .home-turnkey-actions {
    margin-top: 20px;
  }

  .home-turnkey-bg {
    max-width: none;
  }

  .home-pricing-top {
    grid-template-columns: 1fr;
  }

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

  .home-pricing-cta {
    grid-template-columns: 1fr;
  }

  .home-pricing-cta-photo {
    width: 100%;
    max-width: 280px;
    height: 180px;
  }

  .home-pricing-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .home-trust-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .home-trust-content {
    max-width: none;
  }

  .home-docs-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-docs-visual {
    position: static;
    max-width: 420px;
  }

  .home-docs-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-faq-content {
    max-width: none;
  }

  .home-faq-panel {
    padding-left: 22px;
  }

  .home-faq-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .home-faq-cta-divider {
    display: none;
  }

  .home-faq-cta-icon {
    justify-self: start;
  }

  .home-faq-cta-actions {
    justify-content: flex-start;
  }

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

  .home-footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .home-transport-actions {
    flex-direction: column;
  }

  .home-transport-actions .btn {
    width: 100%;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-services-cta-actions {
    flex-direction: column;
  }

  .home-services-cta-actions .btn {
    width: 100%;
  }

  .home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-pricing-featured {
    grid-template-columns: 1fr;
  }

  .home-pricing-cta-actions {
    flex-direction: column;
  }

  .home-pricing-cta-actions .btn {
    width: 100%;
  }

  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .btn-trust-help {
    width: 100%;
    justify-content: center;
  }

  .home-faq-trigger {
    grid-template-columns: 44px 1px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 16px;
  }

  .home-faq-num {
    font-size: 18px;
  }

  .home-faq-question {
    font-size: 16px;
  }

  .home-faq-panel {
    padding: 0 16px 18px;
  }

  .home-faq-cta-actions {
    flex-direction: column;
  }

  .home-faq-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .home-footer-features {
    max-width: none;
  }

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