:root {
  --bg: #F7F4EE;
  --card: #E6E0D6;
  --text: #2E363C;
  --muted: #6D7682;
  --accent: #C0603B;
  --accent-hover: #A14D45;
  --line: #707988;
  --field: #D9D1C7;
  --surface: #FBF8F2;
  --shadow: 0 24px 70px rgba(46, 54, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(112, 121, 136, 0.18);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 4px solid transparent;
  border-radius: 50%;
  background:
    conic-gradient(#C0603B 0 24%, #D7A953 24% 49%, #707988 49% 74%, #8D9C86 74% 100%) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.brand-letters {
  position: relative;
  z-index: 1;
}

.segment {
  display: none;
}

.brand-name,
.brand-line {
  display: block;
  white-space: nowrap;
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
}

.brand-line {
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.phone {
  color: var(--text);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-button:hover {
  background: var(--accent-hover);
}

.section {
  padding: 112px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 42px 0 56px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 50px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.hero-list {
  display: grid;
  gap: 10px;
  max-width: 710px;
  margin: 24px 0 24px;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.header-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-ghost {
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button-ghost:hover {
  color: #fff;
  background: var(--accent);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.hero-cta p,
.section-action p,
.price-footnote,
.micro {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.15;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 22px 52px 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: #F7F4EE;
  background: rgba(46, 54, 60, 0.78);
  border-radius: 8px;
  font-size: 14px;
}

.process {
  border-top: 1px solid rgba(112, 121, 136, 0.16);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  min-height: 320px;
  padding-right: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(112, 121, 136, 0.45);
}

.timeline-item:last-child::before {
  right: 50%;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: var(--card);
  border: 1px solid rgba(112, 121, 136, 0.28);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.is-accent .step-number {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.step-body {
  padding-top: 2px;
}

.step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.process-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--card);
  border-radius: 8px;
}

.process-note strong {
  font-size: 20px;
}

.process-note span {
  color: var(--muted);
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.price {
  padding-top: 128px;
  background:
    linear-gradient(180deg, rgba(230, 224, 214, 0.36), rgba(247, 244, 238, 0) 260px);
}

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

.tariff-card {
  min-height: 255px;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid rgba(112, 121, 136, 0.18);
  border-radius: 8px;
}

.tariff-price {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.tariff-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.price-footnote {
  margin-top: 22px;
}

.logistics {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  margin-top: 38px;
  padding: 34px;
  background: var(--card);
  border-radius: 8px;
}

.logistics h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.logistics p {
  margin-bottom: 0;
}

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

.logistics li {
  position: relative;
  padding-left: 24px;
}

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

.logistics .micro {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(112, 121, 136, 0.28);
}

.terms-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.terms-row article {
  padding: 2px 0 0;
}

.terms-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.price-action {
  padding-bottom: 10px;
}

.anchor-target {
  display: block;
  height: 1px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-line {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .phone {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: transparent;
    border: 1px solid rgba(112, 121, 136, 0.28);
    border-radius: 8px;
  }

  .phone::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--text);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .timeline,
  .tariff-grid,
  .logistics,
  .terms-row {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 18px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 18px;
    padding-right: 0;
  }

  .timeline-item::before {
    top: 58px;
    bottom: -18px;
    left: 29px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .timeline-item:last-child::before {
    display: none;
  }

  .process-note,
  .section-action {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .process-note,
  .section-action {
    display: grid;
  }

  .logistics .micro {
    grid-column: auto;
  }

  .mobile-sticky {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 25;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--accent);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(46, 54, 60, 0.2);
    font-size: 16px;
    font-weight: 800;
    transform: translateY(90px);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-sticky.is-visible {
    transform: translateY(0);
  }
}

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

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

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-line {
    max-width: 170px;
    font-size: 11px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 24px 0 58px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .section-heading p {
    font-size: 17px;
  }

  .hero-list {
    margin: 26px 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-lead {
    order: 1;
  }

  .hero-cta {
    order: 2;
    margin-top: 2px;
    margin-bottom: 24px;
  }

  .hero-list {
    order: 3;
    margin-top: 0;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-media figcaption {
    position: static;
    margin-top: 10px;
    color: var(--muted);
    background: transparent;
    padding: 0;
  }

  .hero-media::after {
    display: none;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .timeline-item {
    gap: 15px;
  }

  .step-number {
    width: 52px;
    height: 52px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
  }

  .timeline-item::before {
    left: 26px;
    top: 52px;
  }

  .process-note,
  .logistics,
  .tariff-card {
    padding: 22px;
  }

  .process-note {
    gap: 10px;
  }

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

  .tariff-price {
    margin-bottom: 14px;
    font-size: 25px;
  }

  .price {
    padding-top: 76px;
  }
}
