:root {
  --navy: #0f2847;
  --navy-2: #1a3a5c;
  --green: #2d8a4e;
  --green-light: #3cb371;
  --orange: #e87722;
  --orange-dark: #c96212;
  --bg: #f4f7fb;
  --card: #fff;
  --text: #1a2332;
  --muted: #5c6b80;
  --border: #dce4ef;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(15, 40, 71, 0.1);
  --font: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: #e4ebf4;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -5%, rgba(45, 138, 78, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(232, 119, 34, 0.1), transparent 50%),
    linear-gradient(rgba(15, 40, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 40, 71, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(15, 40, 71, 0.08) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px, 20px 20px;
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px 28px;
  min-height: 76px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.header__nav a {
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--green);
}

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

.header__phone {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
  text-decoration: none;
}

.header__cta {
  padding: 11px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  justify-self: end;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.header__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.header__mobile a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.header__mobile.is-open {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 119, 34, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 28px rgba(232, 119, 34, 0.45);
}

.btn--green {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 138, 78, 0.3);
}

.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(232, 119, 34, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(232, 119, 34, 0.55);
  }
}

/* Icons */
.icon-box {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 138, 78, 0.15), rgba(45, 138, 78, 0.05));
  color: var(--green);
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.icon-box--sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.icon-box--sm svg {
  width: 20px;
  height: 20px;
}

.icon-box--lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.icon-box--lg svg {
  width: 28px;
  height: 28px;
}

.offer-card--hot .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-light);
}

.stat__icon {
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-light);
}

.step__icon {
  margin: 0 auto 8px;
}

/* Hero */
.hero {
  padding: 40px 0 56px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(228, 235, 244, 0.4) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 24px 32px;
  align-items: stretch;
}

.hero__intro {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  min-width: 0;
}

.hero__visual {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  min-width: 0;
}

.hero__form {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.hero__offer-banner {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  line-height: 0;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.hero__offer-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(15, 40, 71, 0.18);
  text-decoration: none;
}

.hero__offer-banner img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(45, 138, 78, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--green);
}

.hero__text {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin-bottom: 0;
}

.hero-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(15, 40, 71, 0.06);
}

.hero-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: currentColor;
}

.hero-offer--green {
  color: var(--green);
  background: linear-gradient(160deg, #fff 0%, rgba(45, 138, 78, 0.1) 100%);
  border-color: rgba(45, 138, 78, 0.25);
}

.hero-offer--orange {
  color: var(--orange);
  background: linear-gradient(160deg, #fff 0%, rgba(232, 119, 34, 0.1) 100%);
  border-color: rgba(232, 119, 34, 0.3);
}

.hero-offer--navy {
  color: var(--navy);
  background: linear-gradient(160deg, #fff 0%, rgba(15, 40, 71, 0.06) 100%);
  border-color: rgba(15, 40, 71, 0.15);
}

.hero-offer .icon-box {
  margin-bottom: 2px;
}

.hero-offer__value {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-offer__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.85;
}

.hero__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Form card */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.form-card--accent {
  border-color: rgba(45, 138, 78, 0.2);
  box-shadow: 0 20px 56px rgba(15, 40, 71, 0.14);
}

.form-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.15);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}

.form-msg.ok {
  color: var(--green);
}

.form-msg.err {
  color: #c0392b;
}

/* Trust */
.trust {
  padding: 56px 0;
  position: relative;
}

.section--mesh {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-block: 1px solid rgba(15, 40, 71, 0.06);
}

.section--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(45, 138, 78, 0.06), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(232, 119, 34, 0.05), transparent 40%);
  pointer-events: none;
}

.section--mesh > .container {
  position: relative;
  z-index: 1;
}

.section__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 12px;
  border-radius: 100px;
  background: rgba(45, 138, 78, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.trust-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(15, 40, 71, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 138, 78, 0.3);
  box-shadow: 0 16px 40px rgba(15, 40, 71, 0.1);
}

.trust-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Section common */
.section {
  padding: 56px 0;
}

.section--white {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

.section--pattern {
  position: relative;
}

.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 138, 78, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(15, 40, 71, 0.03) 25%, transparent 25%);
  background-size: 32px 32px;
  pointer-events: none;
}

.section--pattern > .container {
  position: relative;
  z-index: 1;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section__head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section__head p {
  color: var(--muted);
  font-size: 17px;
}

/* Offers grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(45, 138, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 40, 71, 0.12);
  border-color: rgba(45, 138, 78, 0.35);
  text-decoration: none;
}

.offer-card--hot {
  background: linear-gradient(145deg, #0f2847 0%, #1a3a5c 100%);
  border-color: rgba(45, 138, 78, 0.4);
  color: #fff;
}

.offer-card--hot .offer-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.offer-card--hot .offer-card__link {
  color: var(--green-light);
}

.offer-card--hot::after {
  background: radial-gradient(circle, rgba(232, 119, 34, 0.2) 0%, transparent 70%);
}

.offer-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-card__icon {
  display: none;
}

.offer-card .icon-box {
  margin-bottom: 4px;
}

.offer-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: inherit;
  line-height: 1.25;
  padding-right: 48px;
}

.offer-card--hot h3 {
  color: #fff;
}

.offer-card__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.offer-card--hot .offer-card__price {
  color: #ffb366;
}

.offer-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}

.offer-card__link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.offers-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45, 138, 78, 0.1) 0%, rgba(15, 40, 71, 0.06) 100%);
  border: 1px solid rgba(45, 138, 78, 0.2);
  margin-bottom: 40px;
}

.offers-bar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offers-bar__text strong {
  font-size: 18px;
  color: var(--navy);
}

.offers-bar__text span {
  font-size: 14px;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step {
  text-align: center;
  padding: 24px 14px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(15, 40, 71, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 40, 71, 0.08);
}

.step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.step strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.step span {
  font-size: 12px;
  color: var(--muted);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-light);
}

.stat span {
  font-size: 13px;
  opacity: 0.85;
}

/* Case */
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.case__amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin: 12px 0;
}

/* FAQ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
}

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

.faq__item p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* CTA banner */
.cta-banner {
  padding: 0 0 56px;
}

.cta-banner__link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 40, 71, 0.18);
}

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

/* Contact */
.contact {
  padding: 56px 0;
  background: var(--navy);
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact__info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.contact dl,
.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-light);
}

.contact-item div {
  flex: 1;
}

.contact dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

.contact dd {
  font-size: 17px;
  font-weight: 600;
}

.contact dd a {
  color: #fff;
}

.contact .form-card {
  background: #fff;
}

/* Footer */
.footer {
  padding: 28px 0;
  background: #0a1e36;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-align: center;
}

/* Float CTA */
.float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: flex;
  gap: 10px;
}

.float-cta a {
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.float-cta__call {
  background: #fff;
  color: var(--navy);
}

.float-cta__form {
  background: var(--orange);
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px 16px;
  }

  .header__nav {
    display: none;
  }

  .header__actions {
    justify-self: end;
  }

  .header__burger {
    display: flex;
  }

  .header__cta {
    display: none;
  }
}

@media (max-width: 960px) {
  .header__phone {
    font-size: 13px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__intro,
  .hero__visual,
  .hero__form,
  .hero__offer-banner {
    grid-column: 1;
    grid-row: auto;
  }

  .hero__offer-banner {
    display: none;
  }

  .hero__grid,
  .trust-grid,
  .contact__grid,
  .case {
    grid-template-columns: 1fr;
  }

  .hero-offers {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .offers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .offers-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .header__phone {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header__actions {
    display: none;
  }

  .hero-offers {
    grid-template-columns: 1fr;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .float-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}

/* Auxiliary pages */
.page-status {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, var(--bg) 55%, #e8f0f8 100%);
}

.page-status__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.page-status__icon--ok {
  background: rgba(45, 138, 78, 0.12);
  color: var(--green);
}

.page-status__icon--err {
  background: rgba(232, 119, 34, 0.12);
  color: var(--orange);
}

.page-status h1 {
  font-size: clamp(26px, 4vw, 34px);
  color: var(--navy);
  margin-bottom: 12px;
}

.page-status p {
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 28px;
}

.page-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.page-doc {
  padding: 48px 16px 64px;
}

.page-doc__inner {
  max-width: 720px;
  margin-inline: auto;
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.page-doc h1 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}

.page-doc p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.page-doc a {
  font-weight: 600;
}
