@charset "UTF-8";
:root {
  --bg: #fbf9f8;
  --text: #503e29;
  --muted: #7e7365;
  --muted2: #7e7365;
  --line: rgba(28,28,28,.10);
  --soft: #fbf9f8;
  --gold: #c9b37e;
  --gold-hover: #b89e65;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.07);
  --max: 1248px;
  --pad: 96px; }

* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease; }

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

button, input {
  font-family: inherit; }

/* Layout */
.container {
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto; }

@media (max-width: 1024px) {
  :root {
    --pad: 28px; } }
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 242, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 210, 195, 0.08); }

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: .02em; }

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 179, 126, 0.25), rgba(201, 179, 126, 0.05));
  border: 1px solid rgba(201, 179, 126, 0.35);
  box-shadow: 0 10px 25px rgba(201, 179, 126, 0.15); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px; }

.nav-links a {
  padding: 10px 8px;
  border-radius: 10px;
  color: #483328; }

.nav-links a:hover {
  transform: scale(1.03); }

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

/* Buttons */
.btn {
  height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(230, 210, 195, 0.8);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 3px 0px #fff inset;
  text-shadow: 0 0 2px #fff, 0 0 4px #fff;
  color: #483328;
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none; }

.btn:hover {
  background: #f5ede7; }

.btn:active {
  transform: translateY(0px);
  box-shadow: none; }

.btn-link {
  border: none;
  background: transparent;
  height: auto;
  padding: 0;
  color: var(--muted);
  font-weight: 600; }

.btn-link:hover {
  color: var(--text);
  box-shadow: none;
  transform: none; }

/* Type */
.h1, .h2, .h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 400;
  text-shadow: 0px 0px 3px #fff, 0px 0px 1px #fff; }

.h1 {
  font-size: 40px;
  line-height: 1.12; }

.h2 {
  font-size: 40px;
  line-height: 1.2; }

.h3 {
  font-size: 22px;
  line-height: 1.25; }

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch; }

.meta {
  font-size: 14px;
  color: var(--muted2);
  letter-spacing: .02em; }

@media (max-width: 1024px) {
  .h1 {
    font-size: 40px; }

  .h2 {
    font-size: 30px; }

  .lead {
    font-size: 16px; }

  .nav-links {
    display: none; } }
/* Sections */
section {
  padding: 40px 0; }

.section-tight {
  padding: 64px 0; }

.divider {
  border-top: 1px solid rgba(28, 28, 28, 0.08); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease; }

.reveal.in {
  opacity: 1;
  transform: translateY(0); }

/* Hero */
.hero {
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
  background: url(../img/header.jpg) center center;
  background-size: cover; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center; }

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px; } }
.hero-card {
  border: 2px solid rgba(181, 157, 133, 0.8);
  border-radius: var(--radius);
  background: rgba(251, 249, 248, 0.85);
  box-shadow: 0 0 0px 3px rgba(248, 239, 232, 0.8), 0 0 10px 3px inset rgba(248, 239, 232, 0.8);
  backdrop-filter: blur(10px);
  padding: 28px;
  color: #3d2515; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px; }

.hero-micro {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted2);
  font-size: 13px; }

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.22);
  display: inline-block; }

/* Device mock */
.device {
  max-width: 560px;
  border-radius: 26px;
  border: 1px solid rgba(28, 28, 28, 0.14);
  background: #0f0f0f;
  box-shadow: var(--shadow);
  padding: 8px;
  position: relative;
  overflow: hidden; }
  .device iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.device::before {
  content: "";
  position: absolute;
  inset: -60px -100px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(201, 179, 126, 0.35), transparent 60%);
  filter: blur(4px);
  opacity: .75;
  pointer-events: none; }

.device-screen {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  aspect-ratio: 16/9; }

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); }

.device-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  backdrop-filter: blur(8px); }

/* Problem */
.problem {
  text-align: center; }

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

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr; } }
.problem-item {
  display: flex;
  align-items: center;
  padding: 22px 22px;
  color: var(--muted);
  text-align: left; }
  .problem-item img {
    flex-shrink: 0;
    max-width: 70px;
    margin-right: 20px; }

.problem-close {
  margin-top: 22px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: rgba(28, 28, 28, 0.72);
  font-style: italic; }

/* Решение split */
.odd-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.5); }

.odd-section.last {
  border-bottom: 1ps solid #c9b37e; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center; }

.cap-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px; }

.cap-list li {
  padding-left: 18px;
  position: relative; }

.cap-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: .55em;
  background: rgba(201, 179, 126, 0.85);
  box-shadow: 0 8px 20px rgba(201, 179, 126, 0.25); }

.img-soft {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.1);
  box-shadow: var(--shadow-soft);
  background: #f2f2f2;
  aspect-ratio: 16/9;
  max-width: 700px; }

.img-soft video {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* Modules */
.soft {
  background: var(--soft);
  border-top: 1px solid rgba(28, 28, 28, 0.06);
  border-bottom: 1px solid rgba(28, 28, 28, 0.06); }

.modules-head {
  text-align: center;
  margin-bottom: 28px; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px; }
  .card .btn {
    flex-shrink: 0;
    margin: 0 auto 28px auto;
    height: 40px;
    width: 200px; }

.card_image {
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; }
  .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

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

.tag {
  position: absolute;
  top: -17px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e1d3b5;
  border: 1px solid #c9b37e;
  color: rgba(28, 28, 28, 0.78);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .02em; }

.card_content {
  height: 100%;
  padding: 28px;
  padding-top: 20px; }

/* Why */
.why {
  text-align: center; }

.why-list {
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  max-width: 760px;
  display: grid;
  gap: 12px;
  color: var(--muted); }

.why-list li {
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04); }

/* Use cases */
.usecases-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px; }

@media (max-width: 700px) {
  .usecases-grid {
    grid-template-columns: 1fr; } }
.usecases-grid div {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 500; }
  .usecases-grid div img {
    max-height: 70px;
    margin-right: 30px; }

/* Demo (image background + overlay card) */
.demo {
  padding: 0;
  position: relative;
  overflow: hidden; }

.demo-bg {
  min-height: 560px;
  background: url("../img/header-2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center; }

.demo .overlay {
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 60px auto;
  text-align: center; }

.demo-card {
  max-width: 640px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px); }

.demo-card p {
  color: rgba(28, 28, 28, 0.72);
  margin: 10px 0 18px; }

/* Packaging */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px; }

@media (max-width: 1024px) {
  .packs {
    grid-template-columns: 1fr; } }
.pack {
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04); }

.pack h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em; }

.pack p {
  margin: 10px 0 0;
  color: var(--muted); }

/* Final CTA + form */
.final {
  text-align: center; }

.form {
  margin: 22px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left; }

@media (max-width: 800px) {
  .form {
    grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px; }

label {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: .04em;
  text-transform: uppercase; }

input, select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(28, 28, 28, 0.12);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease; }

input:focus, select:focus {
  border-color: rgba(201, 179, 126, 0.75);
  box-shadow: 0 0 0 4px rgba(201, 179, 126, 0.18); }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 6px; }

/* Footer */
footer {
  padding: 26px 0;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
  color: var(--muted2);
  font-size: 13px; }

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap; }

.messengers {
  text-align: center;
  margin-top: 20px; }
  .messengers a {
    display: inline-block;
    text-align: center;
    margin-right: 30px;
    padding: 4px; }
    .messengers a img {
      float: left;
      margin-right: 10px; }

@media (max-width: 1024px) {
  .device {
    max-width: 100%; }

  .img-soft {
    max-width: 100%; }

  .split {
    align-items: flex-start; } }
@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr); }

  .problem-grid {
    gap: 0; } }
@media (max-width: 800px) {
  #solution .split {
    grid-template-columns: initial; }

  #solution .reveal:last-child {
    display: none; }

  .hero-card {
    margin-top: 40px;
    margin-bottom: 40px; } }
@media (max-width: 600px) {
  .split {
    grid-template-columns: initial;
    display: flex;
    flex-direction: column; }
    .split .reveal:nth-child(1) {
      order: 2; }
    .split .reveal:nth-child(2) {
      order: 1; } }
@media (max-width: 500px) {
  .modules-grid {
    grid-template-columns: repeat(1, 1fr); } }

/*# sourceMappingURL=style.css.map */
