/* ═══════════════════════════════════════
   Fluffy AI — Стили лендинга
   Шрифт: Fira Sans Condensed
   Базовый цвет: #FCE0A0
═══════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Fira Sans Condensed";
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  background: #FCE0A0;
  color: #2B1D0E;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── ПЕРЕМЕННЫЕ ─── */
:root {
  --primary:   #7A5900;   /* M3 Primary — TonalSpot от seed #FCE0A0 */
  --primary-d: #4A3600;   /* M3 Primary dark */
  --secondary: #6D5C3E;   /* M3 Secondary */
  --green:     #2E7D32;

  --bg:        #FCE0A0;   /* основной фон */
  --bg2:       #F5D080;   /* секции-чередование */
  --bg3:       #EAC060;   /* акцентный блок */
  --bg-light:  #FFF8E7;   /* очень светлый */
  --bg-card:   #FFFFFF;

  --text:      #2B1D0E;
  --muted:     #7A5C30;
  --border:    rgba(160,110,30,.22);
  --shadow:    rgba(100,60,10,.10);

  --r:         10px;
  --r-sm:      6px;
}

/* ─── ТИПОГРАФИКА ─── */
h1 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}
h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}
h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
}
p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }
}

/* ─── УТИЛИТЫ ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(122,89,0,.12);
  border: 1px solid rgba(122,89,0,.28);
  border-radius: 50px;
  color: var(--primary-d);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .3px;
  margin-bottom: 12px;
}

.section-head        { text-align: center; margin-bottom: 52px; }
.section-head h2     { margin-bottom: 12px; }
.section-head .lead  { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; }

.lead-left { font-size: 17px; color: var(--muted); text-align: left; margin: 0 0 36px; }

/* КНОПКИ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--primary);
  border: none; border-radius: var(--r-sm);
  color: #fff; font-size: 15px; font-weight: 400;
  font-family: inherit;
  cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(122,89,0,.3);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: transparent;
  border: 2px solid rgba(43,29,14,.3);
  border-radius: var(--r-sm);
  color: var(--text); font-size: 15px; font-weight: 400;
  font-family: inherit;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(43,29,14,.06); transform: translateY(-1px); }

/* ─── АНИМАЦИИ ─── */
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.7); opacity: 0;  }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes glow-border {
  0%, 100% { box-shadow: 0 0 0 2px rgba(122,89,0,.3), 0 8px 30px rgba(122,89,0,.12); }
  50%       { box-shadow: 0 0 0 3px rgba(122,89,0,.5), 0 8px 40px rgba(122,89,0,.22); }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(255,248,231,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(252,224,160,.98);
  box-shadow: 0 2px 16px var(--shadow);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo        { display: flex; align-items: center; gap: 11px; }
.logo-icon   { width: 44px; height: 44px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-name   { font-size: 20px; font-weight: 400; color: var(--text); line-height: 1.1; }
.logo-slogan { font-size: 14px; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px;
  background: var(--primary);
  border-radius: var(--r-sm);
  color: #fff !important; font-weight: 400 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--primary-d) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,248,231,.99);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-weight: 400; color: var(--text); }
.mobile-close { position: absolute; top: 22px; right: 24px; font-size: 28px; cursor: pointer; color: var(--muted); }

/* ══════════════════════════════
   HERO  (светлый, оттенок FCE0A0)
══════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--bg-light);
  position: relative; overflow: hidden;
}
.hero-decor-1 {
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,89,0,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-decor-2 {
  position: absolute; bottom: -60px; left: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,224,160,.8) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.hero h1      { font-size: clamp(32px, 6vw, 56px); }
.hero-desc    { font-size: 18px; color: var(--muted); margin-bottom: 38px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats   { display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; }
.hero-stat-num   { font-size: 36px; font-weight: 400; color: var(--primary-d); }
.hero-stat-label { font-size: 16px; color: var(--muted); }

/* ══════════════════════════════
   CAROUSEL  (средний кремовый)
══════════════════════════════ */
.carousel-section { padding: 60px 0 80px; background: var(--bg2); overflow: hidden; }
.carousel-wrapper  { position: relative; overflow: hidden; padding: 20px 0; }
.carousel-track    { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.16,1,.3,1); user-select: none; }

.c-slide { flex: 0 0 260px; border-radius: 22px; overflow: hidden; transition: transform .35s, opacity .35s; transform: scale(.88); opacity: .5; }
.c-slide.active { transform: scale(1.05); opacity: 1; }

/* телефонный мокап — его фон тёмный (имитация экрана) */
.phone {
  width: 260px; height: 530px; background: #1a1a2e;
  border-radius: 24px; border: 2px solid rgba(255,255,255,.08);
  overflow: hidden; position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.phone::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 22px; background: #1a1a2e; border-radius: 0 0 12px 12px; z-index: 10;
}
.pscreen { width: 100%; height: 100%; padding: 30px 14px 14px; display: flex; flex-direction: column; gap: 7px; }

/* экраны */
.ps1 { background: linear-gradient(180deg,#1a0e2e,#0d1b2a); }
.ps2 { background: linear-gradient(180deg,#0d1b2a,#1a0e2e); }
.ps3 { background: linear-gradient(180deg,#181818,#0d0d1a); }
.ps4 { background: linear-gradient(180deg,#1a0e2e,#1a1a0d); }
.ps5 { background: linear-gradient(180deg,#0d1a1a,#1a0e2e); }

/* элементы мокапа */
.p-topbar   { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 7px; border-bottom: 1px solid rgba(255,255,255,.07); }
.p-topbar-t { font-size: 13px; font-weight: 400; color: #fff; }
.p-icon     { width: 24px; height: 24px; border-radius: 6px; background: rgba(122,89,0,.3); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.p-note     { background: rgba(255,255,255,.06); border-radius: 9px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.05); }
.p-note-t   { font-size: 10px; font-weight: 400; color: rgba(255,255,255,.9); margin-bottom: 2px; }
.p-note-s   { font-size: 8px; color: rgba(255,255,255,.35); }
.p-chk      { display: flex; align-items: center; gap: 7px; padding: 5px 10px; background: rgba(255,255,255,.04); border-radius: 7px; }
.p-chk-box  { width: 11px; height: 11px; border-radius: 3px; border: 1.5px solid rgba(122,89,0,.6); flex-shrink: 0; }
.p-chk-box.on { background: rgba(122,89,0,.75); border-color: transparent; }
.p-chk-t    { font-size: 10px; color: rgba(255,255,255,.7); }
.p-chk-t.done { text-decoration: line-through; opacity: .4; }
.p-ai       { background: rgba(122,89,0,.22); border-radius: 9px 9px 9px 2px; padding: 6px 8px; font-size: 9px; color: rgba(255,255,255,.85); max-width: 82%; border: 1px solid rgba(122,89,0,.2); line-height: 1.4; }
.p-usr      { background: rgba(255,255,255,.1); border-radius: 9px 9px 2px 9px; padding: 6px 8px; font-size: 9px; color: rgba(255,255,255,.65); max-width: 72%; margin-left: auto; }
.p-inp      { margin-top: auto; background: rgba(255,255,255,.07); border-radius: 8px; padding: 6px 9px; display: flex; align-items: center; gap: 7px; }
.p-inp-ph   { font-size: 8px; color: rgba(255,255,255,.25); flex: 1; }
.p-mic      { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 8px; flex-shrink: 0; }
.p-tag-s    { display: inline-block; padding: 2px 6px; background: rgba(122,89,0,.2); border-radius: 20px; font-size: 7px; color: rgba(200,152,0,.9); border: 1px solid rgba(122,89,0,.3); }
.p-row      { display: flex; align-items: center; justify-content: space-between; padding: 6px 9px; background: rgba(255,255,255,.05); border-radius: 8px; }
.p-row-l    { font-size: 9px; color: rgba(255,255,255,.65); }
.p-toggle   { width: 24px; height: 12px; border-radius: 6px; background: rgba(122,89,0,.6); position: relative; }
.p-toggle::after { content: ''; position: absolute; right: 2px; top: 1px; width: 10px; height: 10px; border-radius: 50%; background: #fff; }
.p-dots     { display: flex; gap: 5px; flex-wrap: wrap; padding: 3px 0; }
.p-dot      { width: 13px; height: 13px; border-radius: 50%; }

/* реальный скриншот внутри рамки телефона */
.phone-screenshot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; border-radius: 22px; }

/* подпись под слайдом */
.c-slide-caption { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; padding: 0 8px; line-height: 1.3; }

.c-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.c-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.6); border: 1px solid var(--border);
  color: var(--text); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.c-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.2); cursor: pointer; transition: all .3s;
}
.c-dot.active { width: 22px; border-radius: 4px; background: var(--primary); }

/* ══════════════════════════════
   BENEFITS  (bg-light)
══════════════════════════════ */
.benefits { padding: 90px 0; background: var(--bg-light); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.b-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.2);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.b-card-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); opacity: 0; transition: opacity .25s;
}
.b-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(122,89,0,.12); border-color: rgba(122,89,0,.2); }
.b-card:hover .b-card-line { opacity: 1; }

.b-icon  { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.b-title { font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--text); }
.b-text  { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════
   WELCOME  (bg2)
══════════════════════════════ */
.welcome { padding: 90px 0; background: var(--bg2); }
.welcome-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.w-photo-wrap { position: relative; display: flex; }
.w-photo {
  width: 100%; max-width: 380px; aspect-ratio: 4/5;
  border-radius: 18px;
  border: 3px solid rgba(255,255,255,.7);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.w-photo img { width: 100%; height: 100%; object-fit: cover; }
.w-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--primary);
  border-radius: 12px; padding: 13px 17px;
  box-shadow: 0 6px 24px rgba(122,89,0,.4);
}
.w-badge-num  { font-size: 24px; font-weight: 400; color: #fff; }
.w-badge-text { font-size: 11px; color: rgba(255,255,255,.85); }

.welcome-text h2     { margin-bottom: 18px; }
.welcome-text p      { font-size: 16px; color: var(--muted); }
.welcome-sig         { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.welcome-sig-avatar  {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.welcome-sig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.welcome-sig-name { font-size: 15px; font-weight: 400; color: var(--text); }
.welcome-sig-role { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════
   FEATURES  (bg-light)
══════════════════════════════ */
.features { padding: 90px 0; background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.f-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.2);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.f-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, #fff8e0, #fdf5e0);
  border-color: rgba(122,89,0,.22);
}
.f-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(122,89,0,.1); border-color: rgba(122,89,0,.2); }

.f-img {
  width: 100%; height: 150px; border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.f-card.featured .f-img { height: 190px; font-size: 60px; }

.f-tag   { display: inline-block; padding: 3px 10px; background: rgba(122,89,0,.1); border-radius: 50px; font-size: 10px; font-weight: 400; color: var(--primary-d); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
.f-title { font-size: 18px; font-weight: 400; margin-bottom: 6px; color: var(--text); }
.f-text  { font-size: 16px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   PRICING  (bg2)
══════════════════════════════ */
.pricing { padding: 90px 0; background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: end; }

.p-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.2);
  border-radius: var(--r);
  padding: 24px 16px;
  display: flex; flex-direction: column; text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.p-card.popular {
  border-color: rgba(122,89,0,.4);
  transform: scale(1.04);
  animation: glow-border 3s ease-in-out infinite;
  position: relative;
}
.p-card.popular::before {
  content: '★ Популярный';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  border-radius: 50px; padding: 4px 14px;
  font-size: 11px; font-weight: 400; color: #fff; white-space: nowrap;
}
.p-card:hover:not(.popular) { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(122,89,0,.1); }

.p-plan   { font-size: 12px; font-weight: 400; color: var(--primary-d); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .3px; }
.p-price  { font-size: 30px; font-weight: 400; color: var(--text); line-height: 1; margin-bottom: 2px; }
.p-price span { font-size: 17px; font-weight: 400; color: var(--muted); }
.p-period { font-size: 15px; color: var(--muted); margin-bottom: 6px; }
.p-save   { display: inline-block; padding: 2px 8px; background: rgba(46,125,50,.12); border-radius: 50px; font-size: 12px; color: var(--green); margin-bottom: 12px; font-weight: 400; }
.p-divider { height: 1px; background: rgba(160,110,30,.15); margin: 10px 0; }
.p-feats   { list-style: none; flex: 1; margin-bottom: 18px; text-align: left; }
.p-feats li { display: flex; align-items: flex-start; gap: 6px; font-size: 15px; color: var(--muted); margin-bottom: 7px; line-height: 1.4; }
.p-feats li::before {
  content: '✓'; width: 15px; height: 15px; border-radius: 50%;
  background: rgba(122,89,0,.12); color: var(--primary-d); font-size: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.p-btn {
  display: block; padding: 10px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 400; cursor: pointer; transition: all .22s;
  text-align: center; font-family: inherit;
}
.p-btn-outline { background: transparent; border: 1.5px solid rgba(122,89,0,.35); color: var(--primary-d); }
.p-btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.p-btn-fill { background: var(--primary); border: none; color: #fff; }
.p-btn-fill:hover { background: var(--primary-d); transform: translateY(-1px); }

/* ══════════════════════════════
   DOWNLOAD  (bg-light)
══════════════════════════════ */
.download { padding: 90px 0; background: var(--bg-light); }
.dl-inner  { text-align: center; }
.dl-inner h2    { margin-bottom: 12px; }
.dl-subtitle    { font-size: 17px; color: var(--muted); margin-bottom: 44px; }
.dl-btns        { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.store-btn {
  display: flex; align-items: center; gap: 13px; padding: 14px 26px;
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.3);
  border-radius: var(--r); transition: all .25s; cursor: pointer;
  box-shadow: 0 2px 12px var(--shadow);
}
.store-btn:hover { border-color: rgba(122,89,0,.3); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(122,89,0,.12); }
.store-icon { font-size: 34px; }
.store-sub  { font-size: 11px; color: var(--muted); }
.store-name { font-size: 17px; font-weight: 400; color: var(--text); }

/* ══════════════════════════════
   CONTACT  (bg2)
══════════════════════════════ */
.contact { padding: 90px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }

.c-links { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.c-link {
  display: flex; align-items: center; gap: 13px; padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.2);
  border-radius: var(--r); transition: all .22s;
  box-shadow: 0 2px 10px var(--shadow);
}
.c-link:hover { border-color: rgba(122,89,0,.25); transform: translateX(3px); background: rgba(255,255,255,.9); }
.c-link-ico { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-link-lbl { font-size: 11px; color: var(--muted); margin-bottom: 1px; }
.c-link-val { font-size: 14px; font-weight: 400; color: var(--text); }
.c-link-arr { color: var(--muted); margin-left: auto; font-size: 16px; }

.cf-box {
  background: var(--bg-card);
  border: 1px solid rgba(200,160,60,.25);
  border-radius: 18px; padding: 34px;
  box-shadow: 0 4px 20px var(--shadow);
}
.cf-title { font-size: 19px; font-weight: 400; margin-bottom: 20px; color: var(--text); }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 400;
  color: var(--muted); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 11px 13px;
  background: #f9f3e3;
  border: 1.5px solid rgba(160,110,30,.25);
  border-radius: var(--r-sm);
  color: var(--text); font-size: 15px;
  font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-input:focus { border-color: var(--primary); background: #fff; }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--primary);
  border: none; border-radius: var(--r-sm);
  color: #fff; font-size: 15px; font-weight: 400;
  cursor: pointer; transition: all .22s;
  font-family: inherit;
}
.form-submit:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(122,89,0,.28); }

/* ══════════════════════════════
   FOOTER  (bg3 — более насыщенный кремовый)
══════════════════════════════ */
.footer { background: var(--bg3); padding: 56px 0 26px; border-top: 1px solid rgba(160,110,30,.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.footer-logo-wrap  { margin-bottom: 13px; }
.footer-col-title  { font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.footer-links      { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a    { font-size: 17px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--primary-d); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(160,110,30,.2); }
.footer-copy   { font-size: 17px; color: var(--muted); }
.social-row    { display: flex; gap: 9px; }
.soc-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.5); border: 1px solid rgba(160,110,30,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .2s; cursor: pointer; color: var(--text);
}
.soc-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .p-card.popular { transform: none; }
}
@media (max-width: 960px) {
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: 1fr; }
  .f-card.featured { grid-column: span 1; }
  .welcome-inner   { grid-template-columns: 1fr; gap: 44px; }
  .w-photo-wrap    { justify-content: center; }
  .w-photo         { max-width: 300px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .benefits-grid   { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .p-card.popular  { transform: none; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats      { gap: 24px; }
  .welcome-inner   { text-align: center; }
  .welcome-sig     { justify-content: center; }
}

/* ══════════════════════════════
   PRIVACY PAGE
══════════════════════════════ */
.privacy-page { padding: 110px 0 80px; background: var(--bg-light); min-height: 100vh; }
.privacy-page h1 { font-size: 36px; margin-bottom: 6px; }
.privacy-page .privacy-date { font-size: 14px; color: var(--muted); margin-bottom: 40px; }
.privacy-section { margin-bottom: 40px; }
.privacy-section h2 { font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 14px; border-bottom: 2px solid var(--bg3); padding-bottom: 8px; }
.privacy-section p  { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 12px; }
.privacy-section ul, .privacy-section ol { padding-left: 20px; margin-bottom: 12px; }
.privacy-section li { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 6px; }
.privacy-intro { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; padding: 20px; background: rgba(122,89,0,.06); border-left: 3px solid var(--primary); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
