:root {
  --bg: #f7f3ec;
  --surface: #fffcf7;
  --fg: #2a221a;
  --muted: #6b5e52;
  --border: #e5dcd0;
  --accent: #8b5e3c;
  --accent-hover: #734c30;
  --wood: #c4a07a;
  --wood-light: #e8d5b5;
  --dark: #1c1612;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(42, 34, 26, 0.08);
  --font: "Inter", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.muted { color: var(--muted); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.15s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--dark);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn--ghost:hover { background: var(--surface); }
.btn--block { width: 100%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo__main {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
}
.logo__sub { font-size: 12px; color: var(--accent); }
.nav { display: flex; gap: 20px; margin-left: auto; font-size: 14px; color: var(--muted); }
.nav a:hover { color: var(--dark); }
.nav a[href^="tel"],
.nav a[href*="t.me"],
.nav a[href*="max.ru"] { display: none; }
.header__contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.header__phone:hover { color: var(--accent); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  margin-left: 12px;
  cursor: pointer;
}
.burger span {
  width: 22px; height: 2px; background: var(--dark); display: block;
}

.channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.channel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: 0.15s ease;
}
.channel:hover {
  border-color: var(--accent);
  background: var(--surface);
}
.channel strong { font-size: 13px; color: var(--dark); }
.channel span { font-size: 14px; color: var(--muted); }
.form-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.form-note a { color: var(--accent); font-weight: 600; }
/* Hero */
.hero { padding: 28px 0 64px; }
.hero__media {
  width: min(1120px, 92%);
  margin: 0 auto 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__media img { width: 100%; height: min(52vw, 480px); object-fit: cover; }
.hero__content { max-width: 720px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 14px;
}
.hero__text { color: var(--muted); max-width: 560px; margin-bottom: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Lines */
.lines { padding: 40px 0 72px; }
.lines__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.line-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.2s ease;
}
.line-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.line-card img { width: 100%; height: 260px; object-fit: cover; }
.line-card__body { padding: 22px; }
.line-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.line-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; }
.line-card span { font-size: 14px; font-weight: 600; color: var(--accent); }

/* Products */
.products { padding: 72px 0; background: rgba(255, 252, 247, 0.55); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product img { width: 100%; height: 200px; object-fit: cover; }
.product h3 { font-size: 1.05rem; padding: 14px 16px 4px; }
.product p { font-size: 0.9rem; color: var(--muted); padding: 0 16px 16px; }
.product .price {
  display: block;
  padding: 0 16px 16px;
  font-size: 1.05rem;
  color: var(--dark);
}
.note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* InnoBlok */
.innoblok { padding: 72px 0; }
.blocks-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blocks-info img { width: 100%; height: 280px; object-fit: cover; }
.blocks-info > div { padding: 28px 28px 28px 0; }
.blocks-info h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.blocks-info li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: var(--muted);
}
.blocks-info li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.kits-title {
  font-family: var(--display);
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.kits { grid-template-columns: repeat(3, 1fr); margin-bottom: 48px; }
.kits .product img { height: 240px; }

/* Constructor */
.constructor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.constructor__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.constructor__form h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.field { display: block; margin-top: 14px; }
.field span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field select, .form input, .form textarea {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  padding: 0 12px;
  font: inherit;
  color: var(--fg);
  outline: none;
}
.field select:focus, .form input:focus, .form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.15);
}
.form textarea { height: auto; padding: 12px; resize: vertical; }
.fields-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 0.92rem;
}
.check input { margin-top: 3px; accent-color: var(--accent); }
.check small { color: var(--muted); }
.result-rows {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}
.result-rows div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted);
}
.result-rows strong { color: var(--fg); font-variant-numeric: tabular-nums; }
.result-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 14px 0 16px;
}
.result-price span { color: var(--muted); }
.result-price strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.plan__title {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.plan__layer { margin-bottom: 10px; }
.plan__layer p {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.plan__legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.plan__legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}
.c80 { background: #8b5e3c; }
.c40 { background: #c4a07a; }
.c20 { background: #e8d5b5; }
.plan__note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.layout-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Build */
.build { padding: 72px 0; background: rgba(255, 252, 247, 0.55); }
.build__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.build h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.build video {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  background: #000;
}
.steps { display: flex; flex-direction: column; gap: 22px; }
.steps li { display: flex; gap: 14px; }
.steps span {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
}
.steps h4 { margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 0.92rem; }

/* Custom */
.custom { padding: 72px 0; }
.custom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.custom h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.custom p { color: var(--muted); margin-bottom: 14px; }
.custom ul { margin-bottom: 20px; }
.custom li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--muted);
}
.custom li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.custom img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Material */
.material { padding: 40px 0 72px; }
.material__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.material img { width: 100%; height: 300px; object-fit: cover; }
.material > div { padding: 28px 28px 28px 0; }
.material h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.material p { color: var(--muted); margin-bottom: 10px; }


/* FAQ */
.faq { padding: 48px 0 64px; background: var(--surface); }
.faq__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin: 0 0 10px;
}
.faq__lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.5;
}
.faq__list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 18px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  padding: 16px 28px 16px 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.faq__item p a { color: var(--accent); font-weight: 600; }
.faq__item p a:hover { text-decoration: underline; }

/* Contact */
.contact { padding: 40px 0 80px; }
.contact__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.contact p { color: var(--muted); }
.form { display: flex; flex-direction: column; gap: 10px; }

/* Footer */
.footer {
  background: #1c1612;
  border-top: none;
  padding: 36px 0 28px;
  color: #e8d5b5;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer .logo__main { color: #fffcf7; }
.footer .logo__sub { color: #c4a07a; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.soc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.08);
  color: #f7f3ec;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(232, 213, 181, 0.18);
  transition: 0.15s ease;
}
.soc:hover {
  background: rgba(255, 252, 247, 0.16);
  color: #fff;
  border-color: rgba(232, 213, 181, 0.4);
}
.soc__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.soc__icon--phone { background: #2e7d32; }
.soc__icon--tg { background: #229ED9; border-radius: 50%; }
.soc__icon--max {
  background: linear-gradient(135deg, #7B61FF 0%, #5B3FE8 100%);
  border-radius: 50%;
}
.soc__icon--avito {
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}
.soc__icon--avito svg { width: 22px; height: 22px; }
.soc__icon--mail { background: #c4a07a; }

.footer__copy {
  font-size: 0.85rem;
  color: rgba(232, 213, 181, 0.65);
}


.btn--max {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1c1612;
  color: #fffcf7;
  border: 1px solid rgba(232, 213, 181, 0.25);
}
.btn--max:hover {
  background: #2a221a;
  color: #fff;
}
.btn--max .btn__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}
.soc__icon--max {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 50% !important;
  overflow: hidden;
}
.soc__icon--max img {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 960px) {
  .lines__grid,
  .constructor,
  .build__grid,
  .custom__grid,
  .blocks-info,
  .material__grid,
  .contact__box { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .kits { grid-template-columns: 1fr; }
  .blocks-info > div,
  .material > div { padding: 22px; }
  .nav, .header__contacts { display: none; }
  .burger { display: flex; }
  .nav.open .header-mobile-contacts { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 4%;
    gap: 14px;
  }
  .nav.open a[href^="tel"],
  .nav.open a[href*="t.me"],
  .nav.open a[href*="max.ru"] { display: block; font-weight: 600; color: var(--dark); }
}
@media (max-width: 560px) {
  .products__grid { grid-template-columns: 1fr; }
  .fields-row { grid-template-columns: 1fr; }
  .hero__media img { height: 240px; }
}

.channel--addr {
  cursor: default;
  pointer-events: none;
}
.soc__icon--max {
  background: linear-gradient(145deg, #8B7CFF 0%, #5B3FE8 100%);
  border-radius: 10px;
}


/* New architecture sections */
.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin: 0 0 12px;
  font-weight: 600;
}
.lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.55;
}
.idea { padding: 56px 0; }
.idea__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}
.idea h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.idea p { color: var(--muted); margin-bottom: 12px; }
.idea__cards { display: grid; gap: 14px; }
.idea__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.idea__card img { width: 100%; height: 160px; object-fit: cover; }
.idea__card span {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.innoblok, .how, .kits-section, .compare, .constructor-section,
.build, .kit-contents, .finish { padding: 48px 0; }
.innoblok { background: var(--surface); }
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature strong { color: var(--dark); font-size: 1rem; }
.feature span { color: var(--muted); font-size: 0.88rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.step__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}
.step h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.how__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.how__visual img { width: 100%; height: auto; max-height: 360px; object-fit: cover; }
.compare__table-wrap { overflow-x: auto; margin: 20px 0; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}
.compare__table th, .compare__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare__table th {
  background: var(--dark);
  color: #fffcf7;
  font-weight: 600;
}
.compare__table td:first-child { font-weight: 600; color: var(--dark); width: 28%; }
.compare__hint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.compare__hint p { color: var(--muted); font-size: 0.95rem; }
.finish { background: var(--surface); }
.finish__box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
.finish h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.finish p { color: var(--muted); margin-bottom: 10px; }
.finish__price { font-size: 1.15rem; color: var(--dark) !important; }
.finish__box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.contents-list {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contents-list li {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--dark);
  font-weight: 500;
}
.custom__list { margin: 16px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.custom__list li { color: var(--muted); }
.custom__list strong { color: var(--dark); }
.build__steps { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.field select, .form input, .form textarea {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--surface);
  color: var(--dark);
}
.form textarea { height: auto; padding: 12px; resize: vertical; }
.fields-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check { display: flex; align-items: center; gap: 8px; margin: 8px 0 16px; font-size: 0.92rem; color: var(--muted); }
.result {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}
.result__title { font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.result-grid span { font-size: 0.85rem; color: var(--muted); }
.result-grid strong { display: block; color: var(--dark); }
.result-price { margin-bottom: 12px; }
.result-price span { font-size: 0.85rem; color: var(--muted); }
.result-price strong { display: block; font-size: 1.35rem; color: var(--dark); }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.plan__title { font-weight: 600; margin-bottom: 12px; color: var(--dark); }
.plan__layer { margin-bottom: 12px; }
.plan__layer p { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.plan__layer svg { width: 100%; height: auto; background: var(--bg); border-radius: 8px; }
.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product img { width: 100%; height: 200px; object-fit: cover; }
.product h3 { padding: 14px 16px 4px; font-size: 1.05rem; color: var(--dark); }
.product p { padding: 0 16px; color: var(--muted); font-size: 0.92rem; flex: 1; }
.product .price { padding: 8px 16px 16px; color: var(--dark); font-size: 1.1rem; }
.product .btn { margin: 0 16px 16px; width: auto; }
.note { color: var(--muted); font-size: 0.92rem; margin-top: 18px; max-width: 640px; }
.channel--addr { cursor: default; pointer-events: none; }

@media (max-width: 960px) {
  .idea__grid, .finish__box, .features, .steps, .compare__hint { grid-template-columns: 1fr; }
  .fields-row { grid-template-columns: 1fr; }
}
