/* ======================================================
   ROOT & BASE
====================================================== */
.landing-theme {
  --brand:#844369;
  --brand-light:#b46a95;
  --ink:#111;
  --muted:#6b7280;
  --bg-soft:#f7f7fb;
  --radius:18px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}

/* ======================================================
   GLOBAL TYPOGRAPHY (SECTIONS)
====================================================== */
.section-title{
  font-size:3.1rem;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  margin-bottom:18px;
  text-align:center;
}

.section-subtitle{
  font-size:1.2rem;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 60px;
  line-height:1.6;
  text-align:center;
}

/* ======================================================
   ANNOUNCE
====================================================== */
.announce-bar{
  background:linear-gradient(90deg,var(--brand),var(--brand-light));
  color:#fff;
  text-align:center;
  padding:10px 16px;
  font-size:.9rem;
}
.announce-bar a{
  color:#fff;
  text-decoration:underline;
  margin-left:6px;
}

/* ======================================================
   NAVBAR
====================================================== */
.navbar{
  background:#fff;
  border-bottom:1px solid #eee;
}
.logo{height:34px}
.brand-nfc{
  margin-left:8px;
  font-weight:700;
  color:var(--brand);
}
.nav-link{color:#333}
.nav-link:hover{color:var(--brand)}

.nav-auth{
  display:flex;
  gap:16px;
  align-items:center;
}
.btn-create{
  background:var(--brand);
  color:#fff;
  padding:10px 18px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
}
.nav-login{
  color:#444;
  text-decoration:none;
  font-weight:500;
}
/* ======================================================
   HERO — SECTION BASE (RESTORED)
====================================================== */
.hero{
  position:relative;
    padding:80px 0 100px; /* 👈 сразу станет плотнее */
  overflow:hidden;

  background:
    radial-gradient(60% 40% at 20% 20%, rgba(132,67,105,.08), transparent 60%),
    linear-gradient(180deg, #fafafb 0%, #ffffff 65%);
}

/* GRID */
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:64px;
    align-items:flex-start; /* было center */
}
.lp-card--popular {
    border: 2px solid #000;
    transform: scale(1.03);
}
.hero-text{
    margin-top:-20px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(132,67,105,.1);
  color:var(--brand);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-80px;
    height:160px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0),
        #f7f7fb
    );
}
.hero-showcase{
    margin-top:40px;
    display:flex;
    gap:60px;
    align-items:center;
}
.hero-metrics{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:12px;
    margin-top:30px;
    max-width:760px;
}
.hero-metric{
    padding:16px 14px;
    border-radius:18px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(132,67,105,.12);
    box-shadow:0 16px 32px rgba(17, 17, 17, .05);
}
.hero-metric strong{
    display:block;
    font-size:1.05rem;
    font-weight:800;
    letter-spacing:-.03em;
    color:var(--brand);
}
.hero-metric span{
    display:block;
    margin-top:6px;
    font-size:.85rem;
    line-height:1.5;
    color:#5f5860;
}

/* LEFT SIDE */
.hero-benefits{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.benefit{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.benefit-ico{
    width:36px;
    height:36px;
    border-radius:10px;
    background:rgba(132,67,105,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.benefit strong{
    display:block;
    font-size:14px;
    font-weight:700;
}

.benefit span{
    font-size:13px;
    color:#777;
}

/* RIGHT SIDE */
.hero-mini-ui{
    background:#fff;
    padding:18px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    gap:10px;
    min-width:180px;
}

.hero-mini-ui .mini-card{
    background:#f5f5f7;
    padding:10px 12px;
    border-radius:10px;
    font-size:13px;
    display:flex;
    justify-content:space-between;
}
.card-showcase h2{
    font-size:3.1rem;
    font-weight:800;
    text-align:center;
    margin-bottom:18px;
}
.lp-badge-popular {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}
/* TEXT */
.hero-text h1{
  font-size:3rem;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  margin-bottom:18px;
}

.hero-text p{
  font-size:1.15rem;
  color:var(--muted);
  max-width:520px;
  line-height:1.6;
}

/* ILLUSTRATION */
.hero-illustration{
  position:absolute;
  right:-120px;
  top:50%;
  transform:translateY(-50%);
  max-width:680px;
  opacity:.85;
  pointer-events:none;
}

/* ======================================================
   HERO BUTTONS — SAME AS CTA
====================================================== */

/* wrapper */
.hero-actions{
  display:flex;
  gap:18px;
  margin-top:36px;
}

/* reset bootstrap */
.hero .btn{
  all:unset;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:16px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition:.25s ease;
}

/* PRIMARY */
.hero .btn-brand{
  background:var(--brand);
  color:#fff;
  box-shadow:0 12px 30px rgba(132,67,105,.35);
}

/* SECONDARY */
.hero .btn-outline-light{
  background:rgba(132,67,105,.08);
  color:var(--brand);
  border:1px solid rgba(132,67,105,.35);
}

/* hover */
.hero .btn:hover{
  transform:translateY(-2px);
}
.hero .btn-brand{
  box-shadow:0 16px 36px rgba(132,67,105,.45);
}


/* PHONE */
.hero-phone{
  display:flex;
  justify-content:center;
}
.phone-frame{
  width:280px;
  border-radius:32px;
  padding:12px;
  background:#000;
}
.phone-screen{
  background:#fff;
  border-radius:24px;
  padding:24px;
  text-align:center;
}
.phone-screen .avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  background:#ddd;
  margin:0 auto 12px;
}
.phone-screen button{
  margin-top:14px;
  width:100%;
  background:var(--brand);
  color:#fff;
  border:none;
  padding:10px;
  border-radius:12px;
}
.phone-mock{
  width:100%;
  max-width:352px;
  border-radius:34px;
  padding:12px;
  background:linear-gradient(180deg, #1f1720 0%, #0f0c10 100%);
  box-shadow:0 26px 70px rgba(32, 14, 26, .24);
}
.phone-cover{
  position:relative;
  min-height:138px;
  background-size:cover;
  background-position:center;
  border-radius:24px 24px 0 0;
  overflow:hidden;
}
.phone-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(19, 12, 18, .12) 0%, rgba(19, 12, 18, .34) 100%);
}
.mock-share{
  position:absolute;
  top:14px;
  right:14px;
  z-index:1;
  border:none;
  border-radius:999px;
  padding:9px 14px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:.82rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}
.mock-avatar{
  position:absolute;
  left:20px;
  bottom:-34px;
  z-index:1;
  width:76px;
  height:76px;
  border-radius:22px;
  overflow:hidden;
  border:4px solid #fff;
  box-shadow:0 16px 28px rgba(32, 14, 26, .18);
}
.mock-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.phone-card{
  background:#fff;
  padding:52px 18px 16px;
}
.mock-status{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(132,67,105,.08);
  color:var(--brand);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.mock-name{
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:-.03em;
}
.mock-role{
  margin-top:7px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.55;
}
.mock-blocks{
  display:grid;
  gap:10px;
  padding:0 18px 18px;
  background:#fff;
}
.mock-block{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-radius:16px;
  background:#faf7fa;
  border:1px solid rgba(132,67,105,.1);
  font-weight:700;
}
.block-arrow{
  color:var(--brand);
}
.mock-save{
  margin:0 18px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border-radius:18px;
  background:linear-gradient(180deg, #96547b 0%, var(--brand) 100%);
  color:#fff;
  font-weight:800;
  box-shadow:0 16px 30px rgba(132,67,105,.24);
}

/* ======================================================
   TRUST
====================================================== */
.trust{
  padding:60px 0;
}
.trust-title{
  font-weight:700;
  color:var(--muted);
  margin-bottom:24px;
  text-align:center;
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.trust-chip{
  padding:13px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(132,67,105,.12);
  box-shadow:0 14px 28px rgba(0,0,0,.05);
  font-size:.95rem;
  font-weight:700;
  color:#443843;
}

/* ======================================================
   FLOW
====================================================== */
.flow-intro{
  background:var(--bg-soft);
  padding:100px 0;
}
.flow-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.flow-points{
  padding:0;
}
.flow-points li{
  list-style:none;
  margin:12px 0;
}
.flow-points i{
  color:var(--brand);
  margin-right:8px;
}
.flow-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}
.flow-card{
  background:#fff;
  padding:24px 28px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ======================================================
   HOW IT WORKS
====================================================== */
.section-soft{
  padding:100px 0;
}
.section-soft h2{
  font-size:3.1rem;
  font-weight:800;
  text-align:center;
}
.section-soft h2 span{
  color:var(--brand);
}
.section-soft > .container > p{
  font-size:1.2rem;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 60px;
  text-align:center;
}

.how-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
}
.step{
  width:180px;
  text-align:center;
}
.step-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--bg-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  color:var(--brand);
  font-size:22px;
}

/* ARROWS */
.step-arrow{
  flex:0 0 60px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--brand),transparent);
  position:relative;
  top:-10px;
}
.step-arrow::after{
  content:"";
  position:absolute;
  right:-6px;
  top:-4px;
  border-left:8px solid var(--brand);
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
}
/* ======================================================
   BASE BUTTONS — RESTORE
====================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:14px;
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  cursor:pointer;
  transition:.25s ease;
}

/* PRIMARY */
.btn-brand{
  background:var(--brand);
  color:#fff;
  border:none;
  box-shadow:0 10px 24px rgba(132,67,105,.35);
}

/* HOVER */
.btn-brand:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(132,67,105,.45);
}

/* ======================================================
   FEATURES
====================================================== */
.features-advanced{
  background:var(--bg-soft);
  padding:110px 0;
}
.features-advanced h2{
  font-size:3.1rem;
  font-weight:800;
  text-align:center;
}
.features-subtitle{
  font-size:1.2rem;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 60px;
  text-align:center;
}

.features-grid-advanced{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.feature-card{
  background:#fff;
  padding:28px;
  border-radius:20px;
  border:1px solid rgba(132,67,105,.08);
  box-shadow:0 18px 36px rgba(19, 12, 18, .05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 46px rgba(19, 12, 18, .09);
}
.feature-card i{
  font-size:26px;
  color:var(--brand);
}

/* ======================================================
   COMPARISON
====================================================== */
.comparison-section{
  padding:120px 0;
  background:linear-gradient(180deg, #fcfafc 0%, #f6eff3 100%);
}
.comparison-heading{
  max-width:860px;
  margin:0 auto 52px;
}
.comparison-eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(132,67,105,.1);
  color:var(--brand);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.comparison-grid-modern{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.comparison-card{
  padding:32px;
  border-radius:28px;
  border:1px solid rgba(132,67,105,.12);
  box-shadow:0 22px 44px rgba(27, 15, 23, .06);
}
.comparison-card-muted{
  background:linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(240,232,237,.96) 100%);
}
.comparison-card-brand{
  background:linear-gradient(180deg, #ffffff 0%, #f8eff4 100%);
}
.comparison-label{
  display:inline-flex;
  align-items:center;
  margin-bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  color:#765a68;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.comparison-card h3{
  font-size: 15px;
  line-height: 20px;
  letter-spacing:-.04em;
  margin-bottom:22px;
}
.comparison-card-brand h3{
  color:var(--brand);
}
.comparison-points{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.comparison-points li{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(132,67,105,.08);
  color:#4d434c;
  line-height:1.6;
}

/* ======================================================
   SHOWCASE
====================================================== */
/* SHOWCASE — BALANCED */
.card-showcase{
  padding:120px 0;
}

.card-showcase-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:32px;
  align-items:center;
}

.card-preview{
  max-width:260px;
  margin:auto;
}

.card-preview img{
  width:55%;
  border-radius:18px;
  box-shadow:0 16px 32px rgba(0,0,0,.14);
}

/* central */
.card-preview:nth-child(2){
  max-width:320px;
  z-index:2;
}

.tilt-left img{transform:rotateY(-8deg) rotateZ(-2deg)}
.tilt-right img{transform:rotateY(8deg) rotateZ(2deg)}
.tilt-more img{transform:rotateY(-12deg) rotateZ(4deg)}
.card-preview:hover img{
  transform:rotateY(0) rotateZ(0) scale(1.03);
}
/* ======================================================
   CTA
====================================================== */
.cta{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:linear-gradient(
    135deg,
    var(--brand),
    var(--brand-light)
  );

  color:#fff;
  padding:120px 0;
}

/* TEXT */
.cta h2{
  font-size:2.6rem;
  font-weight:800;
  margin-bottom:18px;
}

.cta p{
  font-size:1.15rem;
  opacity:.95;
  max-width:640px;
  margin:0 auto;
  line-height:1.6;
}

/* ACTIONS WRAP */
.cta-actions{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:48px;
}

/* ======================================================
   CTA BUTTONS — OVERRIDE BOOTSTRAP
====================================================== */
.cta .btn{
  all:unset;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:16px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition:.25s ease;
}

/* PRIMARY */
.cta .btn-light{
  background:#fff;
  color:var(--brand);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* SECONDARY */
.cta .btn-outline-light{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

/* HOVER */
.cta .btn:hover{
  transform:translateY(-2px);
}


/* ======================================================
   FAQ
====================================================== */
.faq-modern{
  padding:110px 0;
}
.faq-header h2{
  font-size:3.1rem;
  font-weight:800;
  text-align:center;
}
.faq-header p{
  font-size:1.2rem;
  color:var(--muted);
  max-width:650px;
  margin:0 auto 70px;
  text-align:center;
}

.faq-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
}
.faq-item{
  background:#fff;
  padding:22px;
  border-radius:18px;
  display:flex;
  gap:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  transition:.25s ease;
}
.faq-item:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}
.faq-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-light));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
}
.faq-item h5{
  margin:0 0 6px;
  font-weight:700;
}
.faq-item p{
  margin:0;
  color:var(--muted);
}

/* FAQ SIDE */
.faq-support{
  background:radial-gradient(120% 120% at 0% 0%,#fff,var(--bg-soft));
  border-radius:28px;
  padding:40px;
}
.faq-support h4{
  font-size:1.6rem;
  font-weight:800;
  margin-bottom:12px;
}
.faq-support p{
  color:var(--muted);
  line-height:1.6;
}
.faq-meta{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.9rem;
  color:#555;
}
/* =========================
   PARTNER FORM — FIX
========================= */

.partner-form{
  background:#0aa37a;
  padding:110px 0;
  color:#fff;
}

.partner-form-box{
  max-width:720px;
  margin:auto;
}

.partner-form-box .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-bottom:24px;
}

.partner-form-box input,
.partner-form-box textarea{
  width:100%;
  padding:16px 18px;
  border-radius:14px;
  border:none;
  font-size:1rem;
}

.partner-form-box textarea{
  margin-top:24px;
  min-height:140px;
}

.partner-form-box button{
  margin-top:36px;
  padding:16px 40px;
  border-radius:16px;
  border:none;
  background:#fff;
  color:#000;
  font-weight:700;
}


/* ======================================================
   FOOTER
====================================================== */
.footer{
  background:#1c1f22;
  color:#ccc;
  padding:80px 0 30px;
}
.footer h6{
  color:#fff;
  margin-bottom:14px;
}
.footer a{
  color:#ccc;
  text-decoration:none;
}
.footer a:hover{
  text-decoration:underline;
}

/* =========================
   FAQ — CLEAN ACCORDION
========================= */

.faq-list{
  max-width:760px;
  margin:0 auto;
}

.faq-row{
  border:1px solid #eee;
  border-radius:14px;
  margin-bottom:14px;
  overflow:hidden;
  background:#fff;
}

.faq-q{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  cursor:pointer;
  font-weight:600;
}

.faq-ico{
  width:26px;
  text-align:center;
}

.faq-q i{
  margin-left:auto;
  transition:transform .25s ease;
  color:#555;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  padding:0 22px;
  color:#555;
  line-height:1.6;
  transition:max-height .35s ease, padding .25s ease;
}

/* OPEN */
.faq-row.active .faq-a{
  max-height:300px;
  padding:0 22px 18px;
}

.faq-row.active .faq-q i{
  transform:rotate(180deg);
}
.faq-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  align-items:flex-start;
}

.faq-support{
  background:#f7f7fb;
  padding:32px;
  border-radius:24px;
}

.faq-support h4{
  font-weight:800;
  margin-bottom:12px;
}

.faq-meta{
  margin-top:20px;
  font-size:.9rem;
  color:#555;
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* =========================
   FLOW — USE CASE SCENE
========================= */

.flow-intro{
  background:#f9fafb;
  padding:120px 0;
}

.flow-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

.flow-content{
  max-width:520px;
}

.flow-facts{
  margin-top:32px;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:#333;
}

/* RIGHT SCENE */
.flow-visual{
  display:flex;
  justify-content:center;
}

.flow-scene{
  display:flex;
  align-items:center;
  gap:24px;
}

.scene-card{
  background:#fff;
  padding:18px 26px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  font-weight:600;
}

.scene-arrow{
  font-size:22px;
  color:#555;
}

.scene-phone{
  width:220px;
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  text-align:center;
}

.scene-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#ddd;
  margin:0 auto 12px;
}

.scene-name{
  font-weight:600;
  margin-bottom:14px;
}

.scene-btn{
  background:var(--brand);
  color:#fff;
  padding:10px;
  border-radius:12px;
  font-size:.9rem;
}
/* HOW IT WORKS — SPACING FIX */
.section-soft{
  padding:130px 0;
}

.section-soft h2{
  margin-top:0;
  margin-bottom:22px;
}

.section-soft > .container > p{
  margin-top:0;
  margin-bottom:70px;
}
/* =========================
   FOOTER — REBUILT
========================= */

.footer-new{
  background:#1c1f22;
  color:#ccc;
  padding:90px 0 0;
}

.footer-main{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:60px;
  padding-bottom:70px;
}

.footer-logo{
  height:36px;
  margin-bottom:18px;
}

.footer-col h6{
  color:#fff;
  font-weight:700;
  margin-bottom:14px;
}

.footer-col a{
  display:block;
  color:#ccc;
  margin-bottom:10px;
  text-decoration:none;
}

.footer-col a:hover{
  color:#fff;
}

.footer-socials{
  margin-top:18px;
  display:flex;
  gap:14px;
}

.footer-socials a{
  color:#ccc;
  font-size:18px;
}

.footer-ecosystem{
  border-top:1px solid #2a2d30;
  padding:24px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.95rem;
}

.footer-bottom-new{
  border-top:1px solid #2a2d30;
  padding:18px 0;
  text-align:center;
  font-size:.85rem;
  color:#777;
}
#how h2{
  margin-bottom:36px;
}

#how .how-steps{
  margin-top:56px;
}
#how h2{
  margin-bottom:72px;
}
/* ======================================================
   TOUCH VALUE — CONTACTS & LEADS
====================================================== */
.touch-value{
  background:var(--bg-soft);
  padding:140px 0;
}

.touch-head{
  text-align:center;
  margin-bottom:80px;
}

.touch-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

.touch-item{
  background:#fff;
  border-radius:24px;
  padding:40px 34px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.touch-icon{
  font-size:28px;
  margin-bottom:18px;
}

.touch-item h5{
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:10px;
}

.touch-item p{
  color:var(--muted);
  line-height:1.6;
  margin:0;
}
/* ======================================================
   INLINE CTA BUTTON — HERO STYLE, SMALLER
====================================================== */
.partner-form .btn,
.faq-support .btn{
  all:unset;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 22px;        /* меньше, чем hero */
  border-radius:14px;       /* чуть компактнее */
  font-weight:700;
  font-size:.95rem;

  background:var(--brand);
  color:#fff;

  cursor:pointer;
  transition:.25s ease;
  box-shadow:0 10px 22px rgba(132,67,105,.35);
}

.partner-form .btn:hover,
.faq-support .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(132,67,105,.45);
}
/* ======================================================
   ANALYTICS & CRM — ADDED
====================================================== */
.crm-hero{
  padding:140px 0 120px;
  background:
    radial-gradient(60% 40% at 20% 20%, rgba(132,67,105,.06), transparent 60%),
    #fff;
}
.crm-hero .badge{
  display:inline-block;
  background:rgba(132,67,105,.12);
  color:var(--brand);
  padding:8px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:24px;
}
.crm-hero h1{
  font-size:3.2rem;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.02em;
  margin-bottom:28px;
}
.crm-hero .lead{
  font-size:1.25rem;
  color:var(--muted);
  max-width:720px;
  line-height:1.65;
  margin-bottom:80px;
}
.crm-shot{
  height:440px;
  border-radius:28px;
  background:#fff;
  border:1px dashed #ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#999;
}
.crm-block{padding:140px 0}
.crm-block.alt{background:var(--bg-soft)}
.crm-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}
.crm-block h2{
  font-size:2.6rem;
  font-weight:800;
  margin-bottom:24px;
}
.crm-block p{
  font-size:1.15rem;
  color:var(--muted);
  max-width:520px;
}
.crm-points{
  list-style:none;
  margin:36px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}
.crm-points li::before{
  content:"✔";
  color:var(--brand);
  margin-right:10px;
}
/* =========================
   CONTACT MODAL
========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}

.modal-overlay.show {
  display: flex;
}

.contact-modal {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.4;
}

.modal-close:hover {
  opacity: 0.8;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  margin-bottom: 14px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #844369;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  background: #844369;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
}

.btn-submit:hover {
  background: #6f3557;
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

@media (max-width: 520px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================================
   MOBILE FIX — ≤ 768px
====================================================== */
@media (max-width: 768px){

  /* ---------- GLOBAL ---------- */
  .section-title{
    font-size:2.1rem;
    line-height:1.2;
  }

  .section-subtitle{
    font-size:1.05rem;
    margin-bottom:40px;
    padding:0 10px;
  }

  section,
  .section-soft,
  .features-advanced,
  .faq-modern,
  .touch-value,
  .crm-block{
    padding:70px 0;
  }

  /* ---------- HERO ---------- */
  .hero{
    padding:90px 0 80px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:48px;
    text-align:center;
  }

  .hero-text h1{
    font-size:2.2rem;
  }

  .hero-text p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .hero-showcase{
    flex-direction:column;
    gap:24px;
  }

  .hero-metrics{
    grid-template-columns:1fr;
    gap:10px;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero .btn{
    width:100%;
    max-width:320px;
  }

  .hero-illustration{
    position:static;
    transform:none;
    max-width:100%;
    margin-top:40px;
  }

  /* ---------- TRUST ---------- */
  .trust-strip{
    gap:10px;
  }

  /* ---------- FLOW ---------- */
  .flow-grid,
  .flow-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .flow-content{
    max-width:100%;
    text-align:center;
  }

  .flow-visual{
    flex-direction:column;
  }

  .comparison-grid-modern{
    grid-template-columns:1fr;
  }

  .comparison-card{
    padding:24px;
  }

  /* ---------- HOW IT WORKS ---------- */
  .how-steps{
    flex-direction:column;
    gap:26px;
  }

  .step{
    width:100%;
    max-width:260px;
  }

  .step-arrow{
    width:2px;
    height:28px;
    background:linear-gradient(180deg,transparent,var(--brand),transparent);
  }

  .step-arrow::after{
    top:auto;
    bottom:-6px;
    left:-4px;
    right:auto;
    border-left:none;
    border-top:8px solid var(--brand);
    border-right:5px solid transparent;
    border-left:5px solid transparent;
  }

  /* ---------- FEATURES ---------- */
  .features-grid-advanced{
    grid-template-columns:1fr;
  }

  /* ---------- SHOWCASE ---------- */
  .card-showcase-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .card-preview img{
    width:70%;
  }

  /* ---------- CTA ---------- */
  .cta{
    padding:90px 20px;
  }

  .cta h2{
    font-size:2.1rem;
  }

  .cta-actions{
    flex-direction:column;
    gap:16px;
  }

  .cta .btn{
    width:100%;
    max-width:320px;
  }

  /* ---------- FAQ ---------- */
  .faq-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  /* ---------- TOUCH VALUE ---------- */
  .touch-grid{
    grid-template-columns:1fr;
  }

  /* ---------- PARTNER FORM ---------- */
  .partner-form-box .form-row{
    grid-template-columns:1fr;
  }

  /* ---------- FOOTER ---------- */
  .footer-main{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .footer-socials{
    justify-content:center;
  }

  .footer-ecosystem{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}
.who-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1000px;
    margin:60px auto 0;


}
.who-card{
    background:#fff;
    border-radius:20px;
    padding:28px 22px;

    border:1px solid #eee;

    box-shadow:0 10px 30px rgba(0,0,0,.05); /* 👈 добавили базу */

    transition:.25s ease;
}

.who-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.who-icon{
    width:44px;
    height:44px;

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

    margin:0 auto 12px;

    border-radius:12px;
    background:rgba(132,67,105,.1);

    font-size:20px;
}

.who-card h5{
    margin-bottom:6px;
    font-weight:700;
}
.who-for .container{
    max-width:1200px;   /* сейчас у тебя узкий */
    margin:0 auto;
    text-align:center;
}
.who-card p{
    color:#6b7280;
    font-size:14px;
}

.who-for{
    background:linear-gradient(
        180deg,
        #f9f9fb 0%,
        #ffffff 60%
    );
    padding:120px 0;
}

.hero-trust{
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.trust-pill{
    display:flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;
    border-radius:999px;

    background:#fff;                        /* 👈 было прозрачное — плохо */
    border:1px solid #eee;

    font-size:13px;
    color:#374151;

    box-shadow:0 6px 16px rgba(0,0,0,.05); /* 👈 микро depth */
}

.trust-pill i{
    font-size:14px;
    color:var(--brand);
}
/* ======================================================
   SMALL MOBILE — ≤ 420px
====================================================== */
@media (max-width: 420px){

  .section-title{
    font-size:1.9rem;
  }

  .hero-text h1{
    font-size:2rem;
  }

  .cta h2{
    font-size:1.9rem;
  }

  .phone-frame{
    width:240px;
  }
}
/* ======================================================
   HIDE HERO PHONE ON MOBILE
====================================================== */
@media (max-width: 768px){
  .hero-phone{
    display:none !important;
  }
}
@media (min-width: 1400px){
    .hero{
        padding:70px 0 90px;
    }
}
