:root {
  --mint: #e6f4f1;
  --mint-2: #d3ece7;
  --teal: #00a896;
  --teal-deep: #05887b;
  --bg: #ffffff;
  --text: #1f2a2e;
  --muted: #647279;
  --border: #e2ebe9;
  --shadow: 0 18px 40px -18px rgba(0, 168, 150, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted {
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 12px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.btn:hover {
  background: var(--teal-deep);
}

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

.btn-outline:hover {
  background: var(--mint);
  color: var(--teal-deep);
}

.btn-light {
  background: #fff;
  color: var(--teal-deep);
}

.btn-light:hover {
  background: var(--mint);
}

.btn-block {
  width: 100%;
}

.soft-shadow {
  box-shadow: var(--shadow);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-city {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--teal-deep);
}

/* Hero */
.mint-panel {
  background-image: linear-gradient(160deg, #f4fbf9 0%, #dcefeb 100%);
}

.hero {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 64px 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero p {
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* Sections */
section.wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-sub {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Catalog */
.grid-2 {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.card h3 {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 800;
}

.card-sub {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 0;
}

.price {
  background: var(--mint);
  border-radius: 14px;
  padding: 12px 16px;
}

.price dt {
  font-size: 0.75rem;
  color: var(--muted);
}

.price dd {
  margin: 2px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-deep);
}

.card .btn {
  margin-top: 22px;
}

/* Slider */
.slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--mint);
  aspect-ratio: 4 / 3;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slider img.is-active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.4);
}

.slider-btn:hover {
  background: #fff;
  color: var(--teal-deep);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 20px;
  background: #fff;
}

/* Accessories */
.accessories {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mint);
  padding: 24px;
}

.accessories h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.accessory-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.accessory {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
}

/* Grid of cards */
.grid-4 {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
}

.tile.mint {
  background: var(--mint);
}

.tile h3 {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 800;
}

.tile p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.tile.mint .icon-box {
  background: #fff;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
}

.info-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 800;
}

.info-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* CTA */
.cta {
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 48px 28px;
}

.cta p {
  max-width: 36rem;
  margin: 12px auto 0;
  opacity: 0.9;
}

.cta .btn {
  margin-top: 26px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--mint);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-contacts {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contacts a,
.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-decoration: none;
}

.footer-contacts a {
  font-weight: 700;
}

.footer-contacts a:hover {
  color: var(--teal-deep);
}

.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon-sm {
  width: 15px;
  height: 15px;
}

@media (min-width: 640px) {
  .accessory-list,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 96px 20px;
  }
  section.wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 639px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    gap: 0;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .hero > div:last-child {
    display: none;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-height: 56px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-phone {
    display: none;
  }
}
