:root {
  --brand: #b66560;
  --brand-dark: #8f514c;
  --primary: #5cc8ff;
  --primary-dark: #1f94ff;
  --ink: #1f1a1a;
  --muted: #5b4f4f;
  --bg: #faf7f6;
  --card: #ffffff;
  --accent: #f6e8e5;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 246, 0.92);
  border-bottom: 1px solid #efe2de;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #e6d2cd;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  color: var(--brand);
  font-weight: 800;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--brand);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 40px rgba(31, 148, 255, 0.28);
}

.btn.secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid #e6d2cd;
}

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

.hero {
  padding: 64px 7vw 36px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  align-items: initial;
}

.hero__tag {
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 30px;
}

.hero__visual {
  position: relative;
}

.badge {
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand);
  border: 1px solid #f0e3e0;
  font-weight: 700;
}

.glass {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #f0e3e0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.floating-card {
  position: relative;
  margin-top: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 7vw;
}

.section__title {
  font-size: 28px;
  margin: 0 0 14px;
}

.section__intro {
  margin: 0 0 36px;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid #f0e3e0;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #f0e3e0;
  box-shadow: var(--shadow-soft);
  min-width: 160px;
  margin-top: 16px;
}

.stat strong {
  display: block;
  font-size: 26px;
  color: var(--brand);
}

.offer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.offer__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
}

form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 18px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e4d5d1;
  background: #fff;
  font-size: 15px;
  transition: border 140ms ease, box-shadow 140ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(182, 101, 96, 0.2);
}

.input-error {
  border-color: #e37c75;
  box-shadow: 0 0 0 3px rgba(227, 124, 117, 0.2);
}

.full {
  grid-column: 1 / -1;
}

.notice {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

form .notice {
  grid-column: 1 / -1;
  width: 100%;
}

.notice.success {
  background: #e8f7f0;
  color: #155433;
  border: 1px solid #cde8d8;
}

.notice.error {
  background: #fdeceb;
  color: #7c1f1b;
  border: 1px solid #f5d0cf;
}

.footer {
  padding: 32px 7vw 50px;
  background: #fff;
  border-top: 1px solid #f0e3e0;
  margin-top: auto;
  color: var(--muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.highlight {
  color: var(--brand);
  font-weight: 800;
}

.cta-bar {
  padding: 18px 20px;
  background: linear-gradient(120deg, #fff, #f6e8e5);
  border-radius: 14px;
  border: 1px solid #e8d9d5;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f0e3e0;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e8d9d5;
  color: var(--brand);
  border-radius: 999px;
  font-weight: 700;
  gap: 8px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #f0e3e0;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.carousel__viewport {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 20px;
  background-size: cover;
  background-position: center;
}

.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}

.carousel__caption {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.carousel__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel__button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8d9d5;
  color: var(--brand);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease;
}

.carousel__button:hover {
  transform: translateY(-1px);
}

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

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 120ms ease;
}

.carousel__dot.is-active {
  background: #fff;
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 6vw;
  }

  .hero {
    padding: 48px 6vw 18px;
  }

  .section {
    padding: 56px 6vw;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav__actions {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 6px;
  }

  .nav.is-open .nav__actions {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

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

  .hero__visual .glass {
    padding: 14px;
  }

  .hero__badges {
    gap: 10px;
  }

  .hero__badges .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

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

  .carousel__slide {
    height: 240px;
  }

  .floating-card {
    position: relative;
    inset: 0;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 10px;
    align-items: flex-start;
  }

  .brand img {
    height: 36px;
  }

  .stat {
    width: 100%;
  }

  .card {
    padding: 18px;
  }

  .carousel__button {
    width: 38px;
    height: 38px;
  }
}
