:root {
  --green-950: #08291f;
  --green-900: #0d3d2d;
  --green-800: #14563f;
  --green-650: #228060;
  --green-500: #41b982;
  --green-100: #e5f7ee;
  --gold-500: #d8b766;
  --gold-100: #fff4cc;
  --cream: #fbfaf4;
  --white: #ffffff;
  --ink: #18241f;
  --muted: #5c6d65;
  --line: rgba(13, 61, 45, 0.14);
  --shadow: 0 26px 80px rgba(8, 41, 31, 0.17);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

iframe {
  border: 0;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(216, 183, 102, 0.38), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(65, 185, 130, 0.27), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef9f0 48%, #fbfaf4 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.35;
}

.hero::before {
  width: 480px;
  height: 480px;
  right: -250px;
  bottom: 7%;
  background: var(--green-500);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -180px;
  top: 36%;
  background: var(--gold-500);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  height: var(--header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  box-shadow: 0 16px 35px rgba(13, 61, 45, 0.24);
}

.brand__name {
  font-size: 1.1rem;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.nav__menu a {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  background: var(--green-900);
  color: var(--white);
  outline: none;
}

.nav__cta,
.btn,
.social-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.nav__cta {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(13, 61, 45, 0.2);
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 30;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
  min-height: calc(100vh - var(--header));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
  padding: 64px 0 90px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  margin-top: 20px;
  max-width: 720px;
  font-size: clamp(4rem, 11vw, 8.7rem);
  color: var(--green-950);
}

.hero__lead {
  max-width: 570px;
  margin-top: 20px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
}

.hero__lead strong {
  color: var(--green-900);
}

.hero__actions,
.catalog__actions,
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-width: 160px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible,
.social-card__link:hover,
.social-card__link:focus-visible,
.nav__cta:hover,
.nav__cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  box-shadow: 0 18px 35px rgba(13, 61, 45, 0.22);
}

.btn--ghost {
  color: var(--green-900);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.btn--ghost.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero__visual {
  min-height: 560px;
  position: relative;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-card--main {
  inset: 32px 32px auto auto;
  width: min(470px, 86%);
  min-height: 390px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(229, 247, 238, 0.9)),
    radial-gradient(circle at 25% 20%, var(--gold-100), transparent 32%);
}

.visual-card--main::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 74%;
  left: 13%;
  top: 10%;
  border-radius: 45% 55% 54% 46%;
  background: linear-gradient(135deg, var(--green-500), var(--gold-500));
  opacity: 0.88;
  z-index: -1;
}

.visual-card--main p,
.visual-card--main span {
  font-weight: 900;
  color: var(--green-800);
}

.visual-card--main h2 {
  margin: 8px 0;
  color: var(--green-950);
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.visual-card--small {
  left: 0;
  top: 82px;
  width: min(310px, 60%);
  border-radius: 28px;
  padding: 26px;
  animation: float 5s ease-in-out infinite;
}

.visual-card--small p,
.visual-card--line span {
  color: var(--muted);
  font-weight: 800;
}

.visual-card--small strong,
.visual-card--line strong {
  display: block;
  margin-top: 5px;
  color: var(--green-900);
  font-size: 1.8rem;
  line-height: 1.05;
}

.visual-card--line {
  right: 2px;
  bottom: 60px;
  border-radius: 24px;
  padding: 22px 28px;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.section__heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section__heading--center {
  text-align: center;
  margin-inline: auto;
}

.section__heading h2,
.product__copy h2,
.sales__copy h2,
.closing__card h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--green-950);
}

.section__heading p:not(.tag) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.info-card,
.social-card,
.closing__card,
.catalog__shell {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 58px rgba(8, 41, 31, 0.08);
}

.info-card {
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.info-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--green-950);
  background: var(--gold-100);
  font-weight: 950;
}

.info-card h3 {
  margin-top: 26px;
  font-size: 1.35rem;
  color: var(--green-900);
}

.info-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.product {
  background:
    linear-gradient(135deg, var(--green-950), var(--green-800)),
    radial-gradient(circle at 80% 10%, rgba(216, 183, 102, 0.44), transparent 30%);
  color: var(--white);
  overflow: hidden;
}

.product__grid,
.sales__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 50px;
}

.product__copy .tag,
.sales__copy .tag,
.closing__card .tag {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.product__copy h2,
.sales__copy h2,
.closing__card h2 {
  color: var(--white);
}

.product__copy p {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.product__showcase {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 244, 204, 0.95), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.product__showcase::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 45% 55% 50% 50%;
  background: linear-gradient(135deg, var(--green-500), var(--gold-500));
  opacity: 0.95;
}

.product__badge,
.product__name,
.product__showcase p {
  position: relative;
  z-index: 2;
}

.product__badge {
  align-self: end;
  color: var(--green-950);
  background: var(--gold-100);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 950;
}

.product__name {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-shadow: 0 12px 45px rgba(8, 41, 31, 0.3);
}

.product__showcase p {
  align-self: start;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.catalog {
  position: relative;
}

.catalog__shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.catalog__topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, var(--green-100));
}

.catalog__topbar span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--gold-500);
}

.catalog__topbar span:nth-child(2) {
  background: var(--green-500);
}

.catalog__topbar span:nth-child(3) {
  background: var(--green-800);
}

.catalog__topbar p {
  margin-left: 8px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 900;
}

.catalog__viewer {
  min-height: 720px;
  position: relative;
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 183, 102, 0.18), transparent 22%),
    linear-gradient(135deg, #ffffff, #edf9f2);
}

.catalog__viewer iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: 720px;
  background: transparent;
}

.catalog__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  padding: 30px;
  color: var(--green-900);
}

.catalog__fallback strong {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.catalog__fallback p {
  max-width: 520px;
  color: var(--muted);
}

.catalog__fallback a {
  justify-self: center;
  margin-top: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
  font-weight: 900;
}

.catalog__actions {
  justify-content: center;
}

.sales {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 24%, rgba(216, 183, 102, 0.26), transparent 30%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
}

.sales__map {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.map-card {
  width: min(440px, 100%);
  min-height: 350px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(65, 185, 130, 0.18), rgba(255, 255, 255, 0.06));
  background-size: 42px 42px, 42px 42px, auto;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.map-card strong {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 12px rgba(216, 183, 102, 0.18);
}

.map-pin--one { left: 18%; top: 28%; }
.map-pin--two { right: 22%; top: 44%; }
.map-pin--three { left: 42%; bottom: 22%; }

.sales__copy p:not(.tag) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

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

.social-card {
  min-height: 270px;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.social-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  font-size: 2rem;
  font-weight: 950;
}

.social-card p {
  color: var(--muted);
  font-weight: 850;
}

.social-card h3 {
  margin-top: 8px;
  color: var(--green-900);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.social-card__link {
  margin-top: 24px;
  color: var(--green-950);
  background: var(--gold-100);
  font-family: inherit;
  font-size: 1rem;
}

.closing {
  padding-top: 0;
}

.closing__card {
  text-align: center;
  padding: clamp(34px, 8vw, 76px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 183, 102, 0.22), transparent 30%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  color: var(--white);
}

.closing__actions {
  justify-content: center;
}

.footer {
  padding: 30px 0;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer__links a,
.footer__links span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(8, 41, 31, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 25;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    border-radius: 0;
    background: rgba(251, 250, 244, 0.96);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav__menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__menu a {
    font-size: 1.45rem;
    padding: 14px 18px;
  }

  .nav__cta {
    display: none;
  }

  .hero__content,
  .product__grid,
  .sales__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 18px;
    padding-top: 44px;
  }

  .hero__visual {
    min-height: 480px;
  }

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

  .sales__map {
    order: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 76px;
  }

  .wrap,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero__content {
    min-height: auto;
    padding-bottom: 62px;
  }

  .hero__actions,
  .catalog__actions,
  .closing__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: 420px;
  }

  .visual-card--main {
    inset: 30px auto auto 0;
    width: 100%;
    min-height: 310px;
    padding: 26px;
  }

  .visual-card--small {
    width: 72%;
    top: 8px;
    left: 16px;
  }

  .visual-card--line {
    right: 12px;
    bottom: 10px;
  }

  .info-grid,
  .social__grid {
    grid-template-columns: 1fr;
  }

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

  .product__showcase,
  .sales__map {
    min-height: 330px;
  }

  .catalog__viewer,
  .catalog__viewer iframe {
    min-height: 560px;
  }

  .catalog__topbar p {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .floating {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
  }
}
