.gardemeubles-page {
  background: #f3f6fa;
  color: #17213a;
}

.gardemeubles-page .scroll-top-float svg {
  transform: rotate(-90deg);
}

.gm-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 38, 28, 0.08), transparent 26rem),
    radial-gradient(circle at 84% 16%, rgba(11, 21, 51, 0.1), transparent 28rem),
    #f3f6fa;
}

.gm-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -32% 42%;
  height: 24rem;
  border-radius: 999px;
  background: rgba(11, 21, 51, 0.06);
  filter: blur(46px);
}

.gm-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: clamp(3.5rem, 6vw, 4.5rem);
}

.gm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(1.3rem, 2vw, 1.8rem);
  color: #5e6a7d;
  font-size: 0.9rem;
  font-weight: 700;
}

.gm-breadcrumb a {
  color: #17213a;
}

.gm-breadcrumb a:hover,
.gm-breadcrumb a:focus-visible {
  color: var(--color-red-600);
}

.gm-hero-copy h1 {
  max-width: 15ch;
  margin-top: 0.85rem;
  color: var(--color-navy-900);
  font-size: clamp(3.15rem, 5.4vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.gm-hero-copy p {
  max-width: 62ch;
  color: #5e6a7d;
  font-size: 1.05rem;
  line-height: 1.72;
}

.gm-hero-copy .gm-hero-lead {
  max-width: 58ch;
  margin-top: 1.35rem;
  color: #17213a;
  font-size: clamp(1.18rem, 1.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
}

.gm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.gm-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
  padding: 0;
  list-style: none;
}

.gm-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-navy-900);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11, 21, 51, 0.06);
}

.gm-proof-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-red-600);
  flex-shrink: 0;
}

.gm-hero-panel {
  display: grid;
  gap: 0;
  border-radius: 28px;
  background: var(--color-white);
  border: 1px solid rgba(11, 21, 51, 0.08);
  box-shadow: 0 28px 65px rgba(11, 21, 51, 0.14);
  overflow: hidden;
}

.gm-hero-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce5f0;
}

.gm-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gm-lead-form {
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
  background: var(--color-white);
}

.gm-form-head {
  margin-bottom: 1.2rem;
}

.gm-form-head h2 {
  margin: 0 0 0.35rem;
  color: var(--color-navy-900);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.gm-form-head p,
.gm-form-note,
.gm-form-privacy {
  color: #5e6a7d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.gm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.gm-field {
  display: grid;
  gap: 0.45rem;
}

.gm-field-wide {
  grid-column: 1 / -1;
}

.gm-field label {
  color: var(--color-navy-900);
  font-size: 0.83rem;
  font-weight: 800;
}

.gm-field input,
.gm-field select,
.gm-field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(11, 21, 51, 0.12);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--color-text);
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.gm-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.gm-field input:focus,
.gm-field select:focus,
.gm-field textarea:focus {
  outline: none;
  border-color: rgba(225, 38, 28, 0.5);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(225, 38, 28, 0.12);
}

.gm-field.is-error input,
.gm-field.is-error select,
.gm-field.is-error textarea {
  border-color: rgba(185, 28, 28, 0.64);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.09);
}

.gm-field-error {
  min-height: 1rem;
  color: var(--color-danger);
  font-size: 0.78rem;
  line-height: 1.25;
}

.gm-lead-form .btn {
  margin-top: 1rem;
}

.gm-form-note {
  margin-top: 0.8rem;
}

.gm-form-privacy {
  margin-top: 0.55rem;
  font-size: 0.78rem;
}

.gm-form-status {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.gm-form-status.is-success {
  color: var(--color-success);
}

.gm-form-status.is-error {
  color: var(--color-danger);
}

.gm-form-status.is-loading {
  color: var(--color-navy-900);
}

.gm-trust-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-white);
}

.gm-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gm-trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.06);
}

.gm-trust-card svg,
.gm-use-card svg,
.gm-org-card svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-red-600);
}

.gm-trust-card svg {
  margin-top: 0.25rem;
}

.gm-trust-card h2 {
  margin: 0 0 0.25rem;
  color: var(--color-navy-900);
  font-size: 1rem;
}

.gm-trust-card p {
  color: #5e6a7d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.gm-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: #f3f6fa;
}

.gm-soft-section {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #f3f6fa 100%);
}

.gm-dark-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(225, 38, 28, 0.14), transparent 22rem),
    linear-gradient(135deg, #0b1533 0%, #111d3f 100%);
  color: var(--color-white);
}

.gm-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gm-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.gm-heading h2,
.gm-zone-panel h2,
.gm-price-panel h2,
.gm-final-card h2 {
  color: var(--color-navy-900);
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.gm-heading p:not(.eyebrow),
.gm-zone-panel p,
.gm-price-panel p,
.gm-final-card p:not(.eyebrow) {
  color: #5e6a7d;
  font-size: 1.02rem;
  line-height: 1.72;
}

.gm-heading-light h2,
.gm-heading-light p:not(.eyebrow) {
  color: var(--color-white);
}

.gm-heading-light p:not(.eyebrow) {
  opacity: 0.82;
}

.gm-card-grid {
  display: grid;
  gap: 1.25rem;
}

.gm-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gm-use-card,
.gm-org-card {
  padding: 1.45rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gm-use-card:hover,
.gm-org-card:hover,
.gm-solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(11, 21, 51, 0.12);
}

.gm-use-card h3,
.gm-org-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--color-navy-900);
  font-size: 1.12rem;
}

.gm-use-card p,
.gm-org-card p {
  color: #5e6a7d;
  line-height: 1.65;
}

.gm-storage-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gm-list-panel {
  padding: clamp(1.5rem, 3vw, 1.9rem);
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 40px rgba(11, 21, 51, 0.08);
}

.gm-list-panel-warning {
  border-color: rgba(225, 38, 28, 0.14);
}

.gm-list-panel h3 {
  margin-bottom: 1rem;
  color: var(--color-navy-900);
  font-size: 1.3rem;
}

.gm-check-list,
.gm-alert-list,
.gm-price-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.gm-check-list li,
.gm-alert-list li,
.gm-price-list li,
.gm-checklist li {
  position: relative;
  padding-left: 1.65rem;
  color: #334155;
  line-height: 1.55;
}

.gm-check-list li::before,
.gm-price-list li::before,
.gm-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--color-red-600);
  box-shadow: 0 0 0 4px rgba(225, 38, 28, 0.1);
}

.gm-alert-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(225, 38, 28, 0.85);
}

.gm-section-note {
  margin-top: 1.1rem;
  color: #5e6a7d;
  font-weight: 700;
}

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

.gm-timeline li {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.gm-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-red-600);
  color: var(--color-white);
  font-weight: 800;
}

.gm-timeline h3 {
  color: var(--color-white);
  font-size: 1.05rem;
}

.gm-timeline p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.gm-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.gm-solution-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.45rem, 2.5vw, 1.85rem);
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gm-solution-card.is-featured {
  border-color: rgba(225, 38, 28, 0.22);
  box-shadow: 0 24px 55px rgba(11, 21, 51, 0.12);
}

.gm-badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(225, 38, 28, 0.09);
  color: var(--color-red-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gm-solution-card h3 {
  color: var(--color-navy-900);
  font-size: 1.35rem;
}

.gm-solution-card p {
  margin-top: 0.75rem;
  color: #5e6a7d;
  line-height: 1.65;
}

.gm-solution-card h4 {
  margin-top: 1.25rem;
  color: var(--color-navy-900);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gm-solution-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 1.4rem;
  padding-left: 1.05rem;
  color: #475569;
}

.gm-solution-card .btn {
  margin-top: auto;
}

.gm-zone-panel,
.gm-price-panel,
.gm-final-card {
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 24px 55px rgba(11, 21, 51, 0.12);
}

.gm-zone-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.gm-zone-panel .btn {
  margin-top: 1.2rem;
}

.gm-zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gm-zone-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(11, 21, 51, 0.1);
  border-radius: 999px;
  background: #f7f9fc;
  color: var(--color-navy-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.gm-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr) auto;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.gm-price-action {
  display: flex;
  justify-content: flex-end;
}

.gm-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.gm-checklist li {
  padding: 1rem 1rem 1rem 2.7rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy-900);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(11, 21, 51, 0.05);
}

.gm-checklist li::before {
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
}

.gm-faq-list {
  max-width: 840px;
  margin-inline: auto;
}

.gm-faq-list .faq-question {
  align-items: center;
}

.gm-final-cta {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: #f3f6fa;
}

.gm-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 2.4rem);
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.7rem, 4vw, 2.6rem);
}

.gm-final-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 260px;
}

@media (max-width: 1120px) {
  .gm-hero-grid {
    grid-template-columns: 1fr;
  }

  .gm-hero-copy h1 {
    max-width: 15ch;
  }

  .gm-hero-panel {
    max-width: 720px;
  }

  .gm-trust-grid,
  .gm-card-grid-3,
  .gm-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gm-price-panel {
    grid-template-columns: 1fr;
  }

  .gm-price-action {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .gm-hero {
    padding-top: 3.5rem;
  }

  .gm-hero-copy h1 {
    max-width: 14.5ch;
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .gm-hero-copy p,
  .gm-hero-copy .gm-hero-lead {
    max-width: none;
  }

  .gm-hero-actions,
  .gm-final-actions {
    width: 100%;
  }

  .gm-hero-actions .btn,
  .gm-final-actions .btn,
  .gm-zone-panel .btn,
  .gm-price-action .btn {
    width: 100%;
  }

  .gm-trust-grid,
  .gm-card-grid-3,
  .gm-storage-rules,
  .gm-solution-grid,
  .gm-zone-panel,
  .gm-checklist,
  .gm-final-card {
    grid-template-columns: 1fr;
  }

  .gm-timeline {
    grid-template-columns: 1fr;
  }

  .gm-zone-pills {
    gap: 0.55rem;
  }

  .gm-zone-pills span {
    font-size: 0.84rem;
  }
}

@media (max-width: 620px) {
  .gm-hero {
    padding: 2.8rem 0 3.2rem;
  }

  .gm-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    line-height: 1;
  }

  .gm-hero-actions {
    display: grid;
  }

  .gm-proof-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gm-hero-panel {
    border-radius: 22px;
  }

  .gm-form-grid {
    grid-template-columns: 1fr;
  }

  .gm-lead-form {
    padding: 1.15rem;
  }

  .gm-heading h2,
  .gm-zone-panel h2,
  .gm-price-panel h2,
  .gm-final-card h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .gm-section,
  .gm-final-cta {
    padding: 3.5rem 0;
  }

  .gm-trust-card {
    padding: 1rem;
  }

  .gm-checklist li {
    border-radius: 18px;
  }

  .gm-final-actions {
    min-width: 0;
  }
}
