:root {
  --bg: #f7f4ef;
  --card: #ffffff;
  --text: #1f1a17;
  --muted: #6b625c;
  --accent: #b85c38;
  --accent-dark: #8f4528;
  --soft: #efe6dd;
  --line: #e7ddd3;
  --success: #2f7a57;
  --shadow: 0 20px 60px rgba(31, 26, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #fbf8f4 0%, #f6efe7 100%);
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184, 92, 56, 0.1);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.header {
  padding: 22px 0;
}

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

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

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: white;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--text);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  background: #111;
}

.hero {
  padding: 28px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.98;
  margin: 18px 0 18px;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero__bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__bullets div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.dot {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.signup-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 420px;
  margin: 0 auto;
}

.signup-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.signup-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.form {
  display: grid;
  gap: 14px;
}

.input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.12);
}

.btn-primary {
  width: 100%;
  border: none;
  padding: 17px 20px;
  border-radius: 16px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #faf6f1;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.visual-card {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(184, 92, 56, 0.16), rgba(255,255,255,0.0)),
    linear-gradient(180deg, #f3e4d6 0%, #e9d6c6 100%);
  overflow: hidden;
  border: 1px solid #ead9ca;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(31, 26, 23, 0.12);
}

.floating-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

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

.card-1 { top: 28px; left: 28px; }
.card-2 { top: 124px; right: 24px; }
.card-3 { bottom: 24px; left: 24px; }

.phone {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 310px;
  background: #fff;
  border: 10px solid #171412;
  border-radius: 36px;
  box-shadow: 0 26px 50px rgba(31, 26, 23, 0.22);
  overflow: hidden;
}

.phone__top {
  padding: 18px 18px 12px;
  background: #fff;
  border-bottom: 1px solid #f0e8e0;
}

.live-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.phone__top h4 {
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.2;
}

.phone__body {
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #fcf8f3 100%);
}

.product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #efe8e1;
}

.product:last-child {
  border-bottom: none;
}

.thumb {
  border-radius: 18px;
  background: linear-gradient(160deg, #d6c0af, #f6e8dc);
  min-height: 84px;
}

.price {
  margin-top: 6px;
  color: var(--accent-dark);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.stat {
  background: var(--card);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat h3 {
  font-size: 34px;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.stat p {
  color: var(--muted);
  font-weight: 500;
}

.section-title {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-title .eyebrow {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  font-size: 24px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

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

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

.step {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.step__number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: var(--text);
  color: white;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

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

.cta-box {
  background: linear-gradient(145deg, #1f1a17, #342a24);
  color: white;
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  max-width: 720px;
}

.cta-box p {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 18px;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 680px;
}

.cta-form .input {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: white;
}

.cta-form .input::placeholder {
  color: rgba(255,255,255,0.54);
}

.cta-form .btn-primary {
  width: auto;
  min-width: 220px;
}

.cta-form .small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.75);
}

.cta-form-note {
  min-height: 20px;
  margin-top: -6px;
}

.footer {
  padding: 34px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

@media (max-width: 1080px) {
  .hero__grid,
  .cards,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 620px;
  }

  .signup-card {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-bottom: 30px;
  }

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

  .phone {
    width: 260px;
  }

  .floating-card {
    padding: 14px;
  }

  .signup-card,
  .card,
  .step,
  .stat,
  .cta-box {
    padding: 22px;
  }

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

  .cta-form .btn-primary {
    width: 100%;
  }
}
