/* ============================================================
   DAMU PREMIUM DESIGN SYSTEM — Visual Refinement
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  --color-primary: #1E40AF;
  --color-primary-light: #3B82F6;
  --color-accent: #F59E0B;
  --color-text: #0F172A;
  --color-text-muted: #64748B;
  --color-bg: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-border: #E2E8F0;
  --color-good: #10B981;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
  --shadow-diffuse: 0 24px 64px rgba(15,23,42,0.10);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1160px;
  --section-pad: 48px;
}

/* ============================================ RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; position: relative; width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }

/* ============================================ TYPOGRAPHY SYSTEM */
.mobile-break { display: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }

.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--color-text);
}
.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: #EFF6FF;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(130deg, #1E40AF 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
  border: none; outline: none; gap: 8px; white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 12px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--color-primary); color: white;
  box-shadow: 0 4px 16px rgba(30,64,175,0.30);
}
.btn-primary:hover { background: #2563EB; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(30,64,175,0.40); }

.btn-ghost { background: transparent; color: var(--color-text); border: 1.5px solid var(--color-border); }
.btn-ghost:hover { background: var(--color-surface); border-color: #CBD5E1; }

.btn-nav { padding: 9px 18px; font-size: 14px; border-radius: 9px; }

/* ============================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 72px;
  display: flex; align-items: center; z-index: 1000;
  transition: all var(--transition); border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  height: 64px; background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--color-border); box-shadow: 0 1px 12px rgba(15,23,42,0.06);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--color-text); letter-spacing: -0.5px; }
.nav-logo-accent { color: var(--color-primary); }

/* ============================================ SECTION 1: HERO */
.section-1 {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; background: var(--color-bg); position: relative; overflow: hidden;
}
.section-1::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,175,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.section-1::after {
  content: ''; position: absolute; bottom: -100px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 960px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; background: white; border: 1px solid var(--color-border);
  border-radius: 99px; font-size: 11px; font-weight: 600; color: var(--color-text-muted);
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--color-good); border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,0.6); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.4); opacity:0.6; } }

.hero-title { margin-bottom: 16px; line-height: 1.1; }
.hero-subtitle { margin-bottom: 24px; font-size: clamp(16px, 2vw, 18px); color: var(--color-text-muted); max-width: 660px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: white; border: 1px solid var(--color-border);
  border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.hero-stat { padding: 14px 24px; text-align: center; }
.hero-stat + .hero-stat { border-left: 1px solid var(--color-border); }
.hero-stat-num { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 2px; }
.hero-stat-label { font-size: 10.5px; color: var(--color-text-muted); font-weight: 500; line-height: 1.3; max-width: 85px; display: inline-block; }
.hero-stat-divider { display: none; }

.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.hero-scroll-indicator span { display: block; width: 18px; height: 30px; border: 1.5px solid var(--color-border); border-radius: 9px; position: relative; }
.hero-scroll-indicator span::before { content: ''; position: absolute; top: 4px; left: 50%; width: 3px; height: 7px; background: var(--color-primary); border-radius: 2px; transform: translateX(-50%); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%,100%{opacity:0;transform:translate(-50%,0)} 50%{opacity:1;transform:translate(-50%,8px)} }

/* ============================================ LOGOS */
.section-logos { padding-top: 20px; padding-bottom: calc(var(--section-pad) - 20px); }
.hero-logos { padding: 32px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.hero-logos-track { display: grid; grid-template-columns: repeat(5, auto); gap: 32px 48px; justify-content: center; align-items: center; }
.bank-full-logo { height: 28px; width: auto; object-fit: contain; opacity: 0.8; transition: opacity var(--transition); mix-blend-mode: multiply; }
.bank-full-logo:hover { opacity: 1; }
.bank-item { display: flex; align-items: center; gap: 10px; transition: opacity var(--transition); opacity: 0.8; }
.bank-item:hover { opacity: 1; }
.bank-item img { width: 24px; height: 24px; border-radius: 4px; object-fit: contain; }
.bank-item span { font-size: 16px; font-weight: 800; color: var(--color-text-muted); font-family: var(--font-head); letter-spacing: -0.02em; text-transform: uppercase; }
.bank-item:first-child span { color: var(--color-primary); }

/* ============================================ REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================ SECTION 2: PROBLEMS */
.section-2 { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: white; border: 1px solid var(--color-border);
  padding: 36px 32px; border-radius: 20px; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.problem-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(30,64,175,0.04) 0%, transparent 60%);
  opacity:0; transition: opacity 0.3s;
}
.problem-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30,64,175,0.15); }
.problem-card:hover::after { opacity: 1; }

.problem-number { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: #F1F5F9; letter-spacing: -0.04em; line-height: 1; margin-bottom: -8px; }
.problem-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 20px; }
.problem-icon-1 { background: #EFF6FF; color: #2563EB; }
.problem-icon-2 { background: #FFF1F2; color: #E11D48; }
.problem-icon-3 { background: #F0FDF4; color: #16A34A; }
.problem-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.35; color: var(--color-text); }
.problem-text { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; }

/* ============================================ SECTION 3: BIG STAT + COMPARE */
.section-3 { background: white; }
.solution-inner { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 48px; align-items: center; }

.solution-number { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.counter-num { font-family: var(--font-head); font-size: clamp(52px, 9vw, 96px); font-weight: 900; color: var(--color-primary); letter-spacing: -0.04em; line-height: 1; }
.solution-currency { font-family: var(--font-head); font-size: clamp(52px, 9vw, 96px); font-weight: 900; color: var(--color-primary); letter-spacing: -0.04em; }

.solution-sublabel { font-size: 14px; color: var(--color-text-muted); font-weight: 500; margin-bottom: 12px; }
.solution-desc { font-size: 15.5px; line-height: 1.6; color: var(--color-text); margin-bottom: 12px; }
.solution-promo { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 24px; line-height: 1.6; }
.solution-highlight { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 32px; padding: 16px 20px; background: #EFF6FF; border-radius: 12px; border-left: 3px solid var(--color-primary); }

.compare-card { background: var(--color-surface); border-radius: 16px; padding: 6px; border: 1px solid var(--color-border); max-width: 280px; margin-left: auto; }
.compare-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: 10px; }
.compare-bad { background: #FFF1F2; }
.compare-good { background: #F0FDF4; }
.compare-content { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.compare-value { font-family: var(--font-head); font-size: 24px; font-weight: 900; letter-spacing: -0.02em; }
.compare-bad .compare-value { color: #BE123C; }
.compare-good .compare-value { color: #15803D; }
.compare-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; margin-bottom: 2px; }
.compare-caption { padding: 8px 16px; text-align: center; font-size: 13px; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================ SECTION 4: CONDITIONS */
.section-4 { 
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%); 
  border-top: 1px solid var(--color-border); 
}
.conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }

.condition-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px; background: white; border: 1px solid var(--color-border);
  border-radius: 16px; transition: all var(--transition);
}
.condition-item:hover { border-color: rgba(30,64,175,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.condition-check {
  width: 28px; height: 28px; border-radius: 6px; background: #DCFCE7; color: #15803D;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 12px; font-weight: 800;
}
.condition-body { flex: 1; }
.condition-num { font-size: 10px; font-weight: 700; color: var(--color-primary); opacity: 0.45; display: block; margin-bottom: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.condition-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--color-text); line-height: 1.3; }
.condition-desc { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.5; }

/* .condition-warning remains as a grid item wrapper */
.warning-card { 
  background: #FFF1F2; border: 1px solid #FECDD3; padding: 24px; border-radius: 16px; 
  text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.warning-big { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: #E11D48; line-height: 1; margin-bottom: 8px; }
.warning-text { font-size: 14px; line-height: 1.4; color: #991B1B; font-weight: 700; margin-bottom: 16px; }

/* ============================================ SECTION 5: 9 POINTS */
.section-5 { background: white; border-top: 1px solid var(--color-border); }
.consult-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 60px; }
.consult-intro-left .section-title { max-width: 400px; }

.consult-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.consult-item {
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 24px; border-radius: 16px; display: flex; flex-direction: column; gap: 12px;
  transition: all var(--transition);
}
.consult-item:hover { background: white; border-color: rgba(30,64,175,0.25); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.consult-grid .consult-item:nth-child(9) { grid-column: 1 / -1; }
.consult-item-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--color-primary);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.consult-item-title { font-size: 15px; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.consult-item-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }



/* Цена и Таймер */
.price-block { margin-top: 48px; display: flex; justify-content: center; width: 100%; }
.price-pill {
  background: white; color: var(--color-text);
  padding: 40px; border-radius: 20px;
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  box-shadow: var(--shadow-md);
  width: 100%; max-width: 480px; position: relative; overflow: hidden;
}
.price-pill-label { font-size: 24px; font-weight: 900; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.05em; background: rgba(37,99,235,0.05); padding: 12px 32px; border-radius: 12px; margin-bottom: 8px; width: 100%; text-align: center; }
.price-pill-value { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.price-old { font-size: 16px; font-weight: 600; color: var(--color-text-muted); text-decoration: line-through; }
.price-new { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--color-text); line-height: 1; letter-spacing: -0.02em; }

.price-pill .btn { width: 100%; }

/* Timer Container */
.timer-container { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 8px; }
.timer-label { font-size: 14px; color: var(--color-text-muted); text-align: center; }
.countdown-timer { display: flex; gap: 12px; justify-content: center; }
.timer-circle {
  width: 64px; height: 64px;
  border-radius: 50%; border: 2px solid var(--color-text);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: white;
}
.timer-val { font-size: 20px; font-weight: 700; line-height: 1; margin-bottom: 2px; }
.timer-text { font-size: 11px; color: var(--color-text); }

/* ============================================ SECTION 6: OBJECTIONS */
.section-6 { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.objections-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; align-items: stretch; }
.objection-col {
  padding: 36px; border-radius: 20px; border: 1px solid transparent;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.objection-single { max-width: 800px; margin: 0 auto 24px auto; }
.objection-single:last-of-type { margin-bottom: 48px; }
.objection-single-title { font-size: 24px; font-weight: 800; color: var(--color-text); margin-bottom: 24px; text-align: center; line-height: 1.3; }
.objection-col-bad { background: #FFF1F2; border-color: #FECDD3; }
.objection-col-good { background: #F0FDF4; border-color: #A7F3D0; box-shadow: var(--shadow-md); }
.objection-col h3 { font-size: 20px; margin-bottom: 16px; }
.objection-col-bad h3 { color: #9F1239; }
.objection-col-good h3 { color: #065F46; }
.objection-lead { font-size: 14px; line-height: 1.6; margin-bottom: 20px; opacity: 0.8; }
.objection-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.objection-list li { font-size: 14px; line-height: 1.5; font-weight: 500; }
.objection-col-bad .objection-list li { color: #7F1D1D; }
.objection-col-good .objection-list li { color: #064E3B; }

.price-cta-banner {
  text-align: center; padding: 40px; background: white;
  border: 1px solid var(--color-border); border-radius: 20px;
}
.price-cta-banner p { font-size: 17px; font-weight: 700; margin-bottom: 24px; }

/* ============================================ SECTION 7: EXPERT */
.section-7 { background: white; border-top: 1px solid var(--color-border); }
.expert-card {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 24px; padding: 52px; box-shadow: var(--shadow-diffuse);
}
.expert-photo-frame { width: 100%; aspect-ratio: 4/5; background: white; border-radius: 18px; overflow: hidden; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; }
.expert-photo-placeholder { color: #CBD5E1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.expert-name { font-size: 36px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.expert-role { font-size: 15px; font-weight: 600; color: var(--color-primary); margin-bottom: 28px; }
.expert-facts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.expert-fact { display: flex; gap: 16px; padding: 20px; background: white; border: 1px solid var(--color-border); border-radius: 14px; }
.expert-fact-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--color-primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.expert-fact-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.expert-fact-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }
.expert-promo { padding: 20px 24px; background: #EFF6FF; border-radius: 14px; font-size: 14px; font-weight: 500; border-left: 3px solid var(--color-primary); margin-bottom: 28px; line-height: 1.6; color: var(--color-text); }

/* ============================================ SECTION 8: FOOTER */
.section-8 { padding: 32px 0 20px; background: #0F172A; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 0.9fr 1.8fr; gap: 32px; margin-bottom: 24px; }
.footer-brand p, .footer-legal p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; color: rgba(255,255,255,0.35); }
.footer-link { display: block; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 8px; font-size: 14px; transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 12px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3); }


/* ============================================ SECTION: FAQ */
.section-faq { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--color-border); border-radius: 20px; overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: rgba(30,64,175,0.2); }
.faq-item.faq-open { border-color: var(--color-primary); box-shadow: var(--shadow-md); }

.faq-trigger {
  width: 100%; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; outline: none; cursor: pointer; text-align: left; gap: 20px;
}
.faq-question { font-size: 18px; font-weight: 700; color: var(--color-text); line-height: 1.4; margin-bottom: 0; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--color-surface);
  color: var(--color-primary); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 600; transition: all var(--transition); flex-shrink: 0;
}
.faq-item.faq-open .faq-icon { transform: rotate(45deg); background: var(--color-primary); color: white; }

.faq-content { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.faq-open .faq-content { max-height: 500px; }
.faq-content-inner { padding: 0 32px 32px; }
.faq-content-inner p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 12px; }
.faq-content-inner p:last-child { margin-bottom: 0; }

/* ============================================ RESPONSIVE */

@media (max-width: 1024px) {
  :root { --section-pad: 36px; }
  .solution-inner,
  .expert-card,
  .conditions-layout,
  .consult-intro { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .consult-item.accent { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 16px; }
  .mobile-break { display: block; }

  /* Typography Normalization */
  h1 { font-size: 26px; line-height: 1.15; word-break: break-word; }
  h2, .section-title { font-size: 26px; line-height: 1.25; word-break: break-word; }
  h3, .problem-title, .consult-title { font-size: 18px; line-height: 1.3; }
  .section-subtitle, .problem-text, .consult-desc, .solution-desc, .solution-promo { font-size: 15px; line-height: 1.6; }
  
  /* Condition & Consult matching typography */
  .condition-title, .consult-item-title { font-size: 14px; line-height: 1.2; margin-bottom: 6px; }
  .condition-desc, .consult-item-desc { font-size: 12px; line-height: 1.4; }
  .section-label, .hero-badge { font-size: 12px; }

  /* Navbar */
  .navbar { height: 60px; }
  .navbar.scrolled { height: 56px; }
  .nav-logo-text { font-size: 16px; }
  .btn-nav { padding: 7px 13px; font-size: 14px; }

  /* Buttons */
  .btn { white-space: normal; text-align: center; line-height: 1.3; padding: 14px 24px; font-size: 14px; }
  
  /* Hero */
  .section-1 { padding-top: 60px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: auto; max-width: 100%; justify-content: center; }

  /* Grids & Cards */
  .problems-grid,
  .objections-compare { grid-template-columns: 1fr; gap: 12px; }
  .conditions-grid,
  .consult-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    align-items: stretch;
  }
  .conditions-grid .condition-item:nth-child(5) { grid-column: 1 / -1; }
  .condition-item, .consult-item { height: 100%; display: flex; flex-direction: column; }
  .condition-body, .consult-item-desc { flex: 1; }
  .hero-logos-track { display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; gap: 32px; }
  .hero-logos-track::-webkit-scrollbar { display: none; }
  .consult-item.accent { grid-column: span 1; flex-direction: column; }
  
  /* Card Paddings (Unified) */
  .problem-card { padding: 16px; }
  .condition-item, .consult-item { padding: 14px 12px; }
  .price-pill { padding: 24px 20px; flex-direction: column; text-align: center; gap: 20px; }
  .expert-card { padding: 20px 16px; gap: 24px; }
  .expert-fact { padding: 16px; gap: 12px; }
  .expert-facts { gap: 12px; }
  .expert-promo { padding: 16px; }
  .objection-col { padding: 20px 16px; }
  .compare-card { margin-left: auto; margin-right: auto; max-width: 100%; }

  /* Stats */
  .hero-stats { display: flex; flex-direction: row; padding: 0; background: white; border: 1px solid var(--color-border); border-radius: 12px; box-shadow: var(--shadow-sm); gap: 0; width: 100%; justify-content: space-between; }
  .hero-stat { border: none; border-radius: 0; padding: 12px 8px; background: transparent; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .hero-stat + .hero-stat { border-left: 1px solid var(--color-border); }
  .hero-stat-num { font-size: 16px; margin-bottom: 2px; }
  .hero-stat-label { font-size: 9.5px; max-width: 100%; line-height: 1.2; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand .nav-logo { margin-bottom: 12px !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; align-items: center; justify-content: center; }
  
  /* WhatsApp */
  .floating-wa { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .floating-wa svg { width: 28px; height: 28px; }

  /* ───── Центрирование заголовков секций ───── */
  .section-title,
  .section-subtitle,
  .section-label { text-align: center; margin-left: auto; margin-right: auto; }
  .section-subtitle { max-width: 100%; }

  /* ───── Секция "Боли": иконки и текст по центру ───── */
  .problem-card { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .problem-icon { margin-left: auto; margin-right: auto; }

  /* ───── Секция FAQ: по центру ───── */
  .faq-trigger { padding: 16px 20px; gap: 12px; }
  .faq-question { font-size: 15px; }
  .faq-icon { width: 28px; height: 28px; font-size: 18px; }
  .faq-content-inner { padding: 0 20px 20px; }
  .faq-content-inner p { font-size: 14px; }

  /* ───── Секция "Условия": по центру ───── */

  .condition-item { align-items: center; text-align: center; }
  .condition-check { margin-left: auto; margin-right: auto; }
  .condition-body { text-align: center; display: flex; flex-direction: column; height: 100%; width: 100%; }
  .condition-desc { flex: 1; }

  /* ───── Секция "Диагностика": по центру ───── */
  .consult-item { text-align: center; align-items: center; }
  .consult-item-icon { margin-left: auto; margin-right: auto; }
  .consult-item-desc { margin-top: -8px; }
  
  .price-pill { padding: 24px; }
  .price-pill .btn { font-size: 14px; padding: 12px 16px; width: 100%; }
  .timer-circle { width: 56px; height: 56px; }
  .timer-val { font-size: 18px; }
  .timer-text { font-size: 10px; }
  .price-new { font-size: 30px; }
  .warning-big { font-size: 36px; }

  /* ───── Секция "Решение": заголовок по центру ───── */
  .solution-inner { text-align: center; }
  .solution-number { justify-content: center; }
  .counter-num, .solution-currency { font-size: 40px !important; line-height: 1.1; }
  .solution-highlight { text-align: left; }

  /* ───── Секция "Возражения": заголовок блока по центру ───── */
  .section-6 .section-title { text-align: center; }

  /* ───── Секция "Эксперт": по центру ───── */
  .expert-name { font-size: 24px; text-align: center; margin-left: auto; margin-right: auto; }
  .expert-role, .expert-promo { text-align: center; margin-left: auto; margin-right: auto; }
  .expert-content .btn { margin-left: auto; margin-right: auto; display: flex; }
}

/* ============================================ TOUCH OPTIMIZATIONS */
@media (hover: none) {
  .btn:hover, .bank-item:hover, .condition-item:hover, .problem-card:hover, .consult-item:hover {
    transform: none !important;
  }
}

/* ============================================ FLOATING WHATSAPP */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background-color: #25D366; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; z-index: 999;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa:hover { transform: scale(1.1); }
