:root {
  --bg: #f7f1ea;
  --card: #ffffff;
  --text: #211d1b;
  --muted: #6f6862;
  --accent: #b8893d;
  --border: #e8dccc;

  --shadow:
    0 20px 60px rgba(60, 40, 10, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.hero {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(184, 137, 61, .14),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #fffaf5,
      #f3e6d7
    );
}

/* NAVBAR */

.navbar {
  width: min(1180px, 92%);
  margin: 0 auto;

  padding: 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
}

.nav-btn,
button {
  border: 0;
  outline: 0;

  cursor: pointer;

  background: #1f1917;
  color: white;

  border-radius: 999px;

  padding: 16px 28px;

  font-weight: 700;

  transition: .25s;
}

.nav-btn:hover,
button:hover {
  transform: translateY(-2px);
}

/* HERO */

.hero__inner {
  width: min(1180px, 92%);
  margin: 0 auto;

  padding: 60px 0 90px;

  display: grid;
  grid-template-columns: 1fr 420px;

  gap: 70px;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  border: 1px solid var(--border);

  color: var(--accent);

  font-weight: 700;
  font-size: 14px;
}

.hero__content h1 {
  font-size: clamp(50px, 6vw, 88px);

  line-height: .98;

  letter-spacing: -2px;

  margin: 24px 0;
}

.hero__content p {
  font-size: 20px;

  line-height: 1.7;

  color: var(--muted);

  max-width: 620px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 22px;

  margin: 34px 0;
}

.old-price {
  font-size: 22px;

  color: #7d746d;

  text-decoration: line-through;
}

.new-price {
  font-size: 54px;

  font-weight: 800;

  color: var(--accent);
}

.lead-form {
  display: flex;
  gap: 14px;

  max-width: 620px;
}

.lead-form input {
  flex: 1;

  border: 1px solid var(--border);

  background: white;

  border-radius: 999px;

  padding: 18px 22px;

  font-size: 16px;

  outline: none;
}

small {
  display: block;

  margin-top: 18px;

  color: var(--muted);
}

/* PHONE */

.phone-mockup {
  width: 360px;

  background: #111;

  padding: 14px;

  border-radius: 44px;

  box-shadow: var(--shadow);

  margin: 0 auto;
}

.phone-screen {
  min-height: 640px;

  border-radius: 34px;

  background:
    linear-gradient(
      180deg,
      #fff8f0,
      #f1dfc8
    );

  padding: 40px 26px;

  text-align: center;
}

.phone-label {
  font-size: 16px;
}

.phone-screen h2 {
  font-size: 60px;

  line-height: 1.25;

  margin-top: 70px;
}

.phone-date {
  margin-top: 20px;
}

.mock-line {
  width: 90px;
  height: 2px;

  background: var(--accent);

  margin: 26px auto;
}

.mock-card {
  background: rgba(255,255,255,.72);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 20px;

  margin-top: 16px;

  font-size: 18px;
}

/* FEATURES */

.features {
  padding: 90px 0;
}

.features h2 {
  text-align: center;

  font-size: 64px;

  margin-bottom: 40px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.feature-card {
  background: white;

  border: 1px solid var(--border);

  border-radius: 32px;

  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 20px;

  font-size: 22px;

  box-shadow: var(--shadow);
}

/* STEPS */

.steps {
  padding: 90px 0;
}

.steps h2 {
  text-align: center;

  font-size: 72px;

  margin-bottom: 40px;
}

.steps-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.step-card {
  background: white;

  border: 1px solid var(--border);

  border-radius: 32px;

  padding: 34px;

  min-height: 190px;
}

.step-card b {
  color: var(--accent);

  font-size: 52px;
}

.step-card p {
  margin-top: 18px;

  color: var(--muted);

  font-size: 22px;
}

/* CATALOG */

.catalog {
  padding: 90px 0;
}

.catalog h2 {
  text-align: center;

  font-size: 64px;
}

.section-desc {
  text-align: center;

  color: var(--muted);

  margin-top: 12px;
}

.catalog-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 26px;

  margin-top: 46px;
}

.catalog-card {
  overflow: hidden;

  background: white;

  border-radius: 32px;

  box-shadow: var(--shadow);
}

.catalog-card img {
  height: 340px;

  object-fit: cover;
}

.catalog-content {
  padding: 26px;
}

.catalog-content h3 {
  font-size: 34px;
}

.catalog-content p {
  margin-top: 10px;
}

/* PRICING */

.pricing {
  padding: 90px 20px;
}

.pricing-card {
  max-width: 760px;

  margin: 0 auto;

  background: white;

  border-radius: 36px;

  padding: 50px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  text-align: center;
}

.pricing-card h2 {
  font-size: 76px;

  margin: 18px 0;
}

.pricing-card p {
  max-width: 540px;

  margin: 0 auto;

  color: var(--muted);
}

.pricing-card ul {
  list-style: none;

  display: grid;
  gap: 14px;

  margin: 36px 0;
}

.pricing-card li {
  font-size: 18px;
}

.pricing-card li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 800;
}

/* FAQ */

.faq {
  padding: 90px 0;
}

.faq h2 {
  text-align: center;

  font-size: 72px;

  margin-bottom: 40px;
}

details {
  max-width: 840px;

  margin: 0 auto 18px;

  background: white;

  border-radius: 24px;

  border: 1px solid var(--border);

  padding: 24px 28px;

  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;

  font-weight: 700;

  font-size: 18px;
}

details p {
  margin-top: 18px;
}

/* FOOTER */

.footer {
  padding: 40px 20px;

  text-align: center;

  color: var(--muted);
}

/* MOBILE */

@media (max-width: 1100px) {

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

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
  }

  .price-row {
    justify-content: center;
  }

  .lead-form {
    margin: 0 auto;
  }

  .phone-mockup {
    width: 340px;
  }

  .nav-links {
    display: none;
  }

}

@media (max-width: 700px) {

  .navbar {
    padding: 18px 0;
  }

  .logo {
    font-size: 28px;
  }

  /* КНОПКА BUYURTMA BERISH */
  .nav-btn {
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 16px;
  }

  .hero__inner {
    padding: 34px 0 60px;
    gap: 34px;
  }

  /* ГЛАВНЫЙ ЗАГОЛОВОК */
  .hero__content h1 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 18px 0;
  }

  /* ОПИСАНИЕ */
  .hero__content p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* ЦЕНЫ */
  .price-row {
    gap: 10px;
    margin: 26px 0;
  }

  .old-price {
    font-size: 18px;
  }

  .new-price {
    font-size: 34px;
  }

  /* ФОРМА */
  .lead-form {
    flex-direction: column;
    gap: 12px;
  }

  .lead-form input {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
  }

  .lead-form button {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }

  small {
    font-size: 13px;
  }

  /* ТЕЛЕФОН */
  .phone-mockup {
    width: 280px;
  }

  .phone-screen {
    min-height: 500px;
    padding: 30px 18px;
  }

  .phone-screen h2 {
    font-size: 42px;
    margin-top: 50px;
  }

  .mock-card {
    padding: 16px;
    font-size: 15px;
  }

  /* FEATURES */
  .features h2,
  .steps h2,
  .catalog h2,
  .faq h2 {
    font-size: 38px;
  }

  .feature-grid,
  .steps-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 120px;
    font-size: 18px;
  }

  .step-card {
    min-height: 140px;
    padding: 24px;
  }

  .step-card b {
    font-size: 38px;
  }

  .step-card p {
    font-size: 18px;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-card h2 {
    font-size: 46px;
  }

}