:root {
  --navy:    #1e3a6e;
  --navy2:   #162d57;
  --navy3:   #0f2040;
  --orange:  #f5a623;
  --orange2: #e8941a;
  --gold:    #c8a84b;
  --green:   #3a7d3f;
  --green2:  #2e6332;
  --white:   #ffffff;
  --bg:      #f8f9fc;
  --bg2:     #f0f3f8;
  --border:  #dde3ef;
  --border2: #c8d0e0;
  --t1:      #1a2340;
  --t2:      #4a5570;
  --t3:      #8090ae;
  --shadow:  0 2px 20px rgba(30,58,110,0.08);
  --shadow2: 0 8px 40px rgba(30,58,110,0.14);
  --f1: 'Exo 2', sans-serif;
  --f2: 'Inter', sans-serif;
  --r: 8px; --r2: 14px; --r3: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--t1);
  font-family: var(--f2);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--f2); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ━━━ HEADER ━━━ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(30,58,110,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.logo-name {
  font-family: var(--f1); font-size: 18px; font-weight: 800;
  letter-spacing: 0.08em; color: var(--navy);
  line-height: 1;
}
.logo-name span { color: var(--orange); }

nav { display: flex; gap: 0; flex: 1; justify-content: center; }
nav a {
  color: var(--t2); font-family: var(--f2); font-size: 13px; font-weight: 500;
  padding: 8px 13px; border-radius: var(--r);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
nav a:hover { color: var(--navy); background: rgba(30,58,110,0.05); }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-family: var(--f1); font-weight: 700; font-size: 16px;
  color: var(--navy); transition: color 0.2s; white-space: nowrap;
}
.header-phone:hover { color: var(--orange); }
.btn-header {
  background: var(--navy); color: var(--white);
  font-family: var(--f1); font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--r);
  border: none; transition: background 0.2s; white-space: nowrap;
}
.btn-header:hover { background: var(--navy2); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 32px 24px;
  border-top: 1px solid var(--border); gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--t1); font-size: 18px; font-weight: 600;
  font-family: var(--f1); padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mob-phone {
  font-family: var(--f1); font-size: 22px; font-weight: 800;
  color: var(--navy); margin-top: 20px;
}

/* ━━━ BUTTONS ━━━ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f1); font-weight: 700; border: none;
  transition: all 0.22s; cursor: pointer; text-decoration: none;
  border-radius: var(--r2); white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 32px; font-size: 15px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 30px; font-size: 15px;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-outline-orange {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
  padding: 14px 30px; font-size: 15px;
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 17px; border-radius: var(--r2); }

/* ━━━ SECTION LABELS ━━━ */
.label {
  display: inline-block;
  font-family: var(--f1); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.label::before { content: '—  '; }

h2.sec-title {
  font-family: var(--f1); font-weight: 800; line-height: 1.15;
  font-size: clamp(28px, 3.5vw, 44px); color: var(--navy);
}
h2.sec-title em { font-style: normal; color: var(--orange); }

.sec-sub {
  color: var(--t2); font-size: 17px; line-height: 1.7;
  max-width: 560px; margin-top: 14px;
}

/* ━━━ HERO ━━━ */
#hero {
  padding: 148px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; right: -120px; top: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape2 {
  position: absolute; left: -80px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,196,122,0.1); border: 1px solid rgba(0,196,122,0.25);
  color: var(--green); font-size: 12px; font-weight: 700;
  font-family: var(--f1); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--f1); font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.08; color: var(--navy);
  margin-bottom: 20px;
}
.hero-title span { color: var(--orange); display: block; }
.hero-desc { color: var(--t2); font-size: 17px; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden;
}
.hero-stat {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--f1); font-size: 26px; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 12px; color: var(--t2); font-weight: 500; }

.hero-visual { position: relative; }
.hero-cards { position: relative; height: 460px; }
.hero-card-main {
  position: absolute; top: 0; right: 0; left: 40px;
  background: var(--navy); border-radius: var(--r3);
  padding: 36px; color: var(--white);
  box-shadow: 0 20px 60px rgba(30,58,110,0.3);
}
.hero-card-main h3 {
  font-family: var(--f1); font-size: 20px; font-weight: 700;
  margin-bottom: 8px; color: var(--white);
}
.hero-card-main p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.hc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hc-row:last-child { margin-bottom: 0; }
.hc-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.hc-val { font-family: var(--f1); font-weight: 700; color: var(--white); font-size: 14px; }
.hc-badge {
  display: inline-block; background: var(--orange);
  color: var(--white); font-family: var(--f1); font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

.hero-card-float {
  position: absolute; bottom: 30px; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px 24px;
  box-shadow: var(--shadow2); width: 220px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hcf-label { font-size: 12px; color: var(--t2); margin-bottom: 4px; }
.hcf-val { font-family: var(--f1); font-size: 22px; font-weight: 800; color: var(--navy); }
.hcf-sub { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }

/* ━━━ FEATURES STRIP ━━━ */
#features {
  padding: 0;
  background: var(--navy);
}
.features-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.feat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(255,255,255,0.04); }
.feat-icon {
  width: 36px; height: 36px; margin-bottom: 14px;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-name {
  font-family: var(--f1); font-size: 13px; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: 6px;
}
.feat-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ━━━ LEAD FORM ━━━ */
#lead { background: var(--bg); }
.lead-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.lead-discount-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--f1); font-size: 13px; font-weight: 800;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.lead-title {
  font-family: var(--f1); font-size: clamp(26px, 3vw, 38px);
  font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 14px;
}
.lead-title span { color: var(--orange); }
.lead-sub { color: var(--t2); font-size: 16px; margin-bottom: 8px; }
.lead-timer { color: var(--orange); font-weight: 700; font-size: 14px; margin-top: 4px; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--t2); letter-spacing: 0.04em; }
.form-input {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 16px;
  color: var(--t1); font-family: var(--f2); font-size: 15px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,110,0.1); }
.form-input::placeholder { color: var(--t3); }
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type=checkbox] { display: none; }
.cb-box {
  width: 18px; height: 18px; border: 2px solid var(--border2);
  border-radius: 4px; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; background: var(--white);
}
.form-check input:checked + .cb-box { background: var(--navy); border-color: var(--navy); }
.form-check input:checked + .cb-box::after { content: ''; display: block; width: 5px; height: 9px; border: 2px solid white; border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.form-check-text { font-size: 13px; color: var(--t2); }
.form-check-text a { color: var(--navy); text-decoration: underline; }

/* ━━━ PAINS ━━━ */
#pains { background: var(--white); }
.pains-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r3); overflow: hidden; margin-top: 56px;
}
.pain-item {
  background: var(--white); padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
}
.pain-item:hover { background: var(--bg); }
.pain-num {
  font-family: var(--f1); font-size: 64px; font-weight: 900;
  color: var(--border); line-height: 1; margin-bottom: 16px;
  position: absolute; top: 28px; right: 28px;
}
.pain-problem {
  font-family: var(--f1); font-size: 16px; font-weight: 700;
  color: var(--t3); margin-bottom: 8px; line-height: 1.4;
}
.pain-title {
  font-family: var(--f1); font-size: 19px; font-weight: 800;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.pain-text { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 16px; }
.pain-solve {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(58,125,63,0.07); border-left: 3px solid var(--green);
  padding: 12px 16px; border-radius: 0 var(--r) var(--r) 0;
}
.pain-solve-icon { color: var(--green); font-size: 15px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pain-solve-text { font-size: 13px; color: var(--green2); font-weight: 600; }

/* ━━━ PORTFOLIO ━━━ */
#portfolio { background: var(--bg); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.port-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.port-img {
  height: 200px; position: relative; overflow: hidden;
  background: var(--bg2);
}
.port-img-inner {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.port-card:hover .port-img-inner { transform: scale(1.05); }
.port-img-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy3), var(--navy));
}
.port-img-ph svg { width: 48px; height: 48px; opacity: 0.3; color: white; fill: white; }
.port-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--white);
  font-family: var(--f1); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.port-body { padding: 24px; }
.port-meta { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.port-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--t2); font-weight: 500; }
.port-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.port-title { font-family: var(--f1); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* ━━━ PROCESS ━━━ */
#process { background: var(--white); }

.process-tabs {
  display: inline-flex; gap: 3px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 4px; border-radius: var(--r2); margin-bottom: 56px;
}
.proc-tab {
  padding: 11px 28px; border-radius: 10px;
  font-family: var(--f1); font-weight: 700; font-size: 14px;
  background: none; border: none; color: var(--t2);
  transition: all 0.2s; cursor: pointer;
}
.proc-tab.active { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(30,58,110,0.25); }

/* SHARED STEPS — horizontal timeline */
.proc-timeline {
  position: relative; margin-bottom: 48px;
}
.proc-line {
  position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: var(--border);
}
.proc-line-fill {
  position: absolute; top: 0; left: 0; width: 60%; height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--orange));
}
.proc-steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative;
}
.proc-step-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.proc-dot {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f1); font-size: 16px; font-weight: 800; color: var(--t3);
  margin-bottom: 16px; z-index: 1; transition: all 0.3s; flex-shrink: 0;
}
.proc-step-item.done .proc-dot { background: var(--navy); border-color: var(--navy); color: var(--white); }
.proc-step-item.active .proc-dot { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(245,166,35,0.4); }
.proc-step-name { font-family: var(--f1); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.proc-step-desc { font-size: 13px; color: var(--t2); line-height: 1.5; }

.proc-divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--t3); font-size: 13px; font-weight: 600;
  margin-bottom: 40px;
}
.proc-divider::before, .proc-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Specific steps — vertical left timeline */
.proc-content { display: none; }
.proc-content.active { display: block; }

.proc-specific {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.proc-spec-step {
  display: flex; gap: 20px; padding: 28px;
  border: 1px solid var(--border); border-radius: var(--r2);
  background: var(--bg); transition: border-color 0.2s, background 0.2s;
}
.proc-spec-step:hover { border-color: var(--navy); background: var(--white); }
.proc-spec-num {
  font-family: var(--f1); font-size: 42px; font-weight: 900;
  color: var(--orange); line-height: 1; flex-shrink: 0; width: 52px;
}
.proc-spec-title { font-family: var(--f1); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.proc-spec-text { font-size: 14px; color: var(--t2); line-height: 1.6; }

/* ━━━ PRICING ━━━ */
#pricing { background: var(--bg); }
.pricing-tabs {
  display: inline-flex; gap: 3px;
  background: var(--white); border: 1px solid var(--border);
  padding: 4px; border-radius: var(--r2); margin-bottom: 48px;
}
.price-tab {
  padding: 11px 28px; border-radius: 10px;
  font-family: var(--f1); font-weight: 700; font-size: 14px;
  background: none; border: none; color: var(--t2);
  transition: all 0.2s; cursor: pointer;
}
.price-tab.active { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(30,58,110,0.25); }
.price-section { display: none; }
.price-section.active { display: block; }

.price-category { margin-bottom: 36px; }
.price-cat-title {
  font-family: var(--f1); font-size: 13px; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.price-table { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.price-row {
  display: grid; grid-template-columns: 1fr 120px 140px;
  gap: 16px; padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center; transition: background 0.15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg); }
.price-row.hdr {
  background: var(--navy); padding: 12px 24px;
  font-family: var(--f1); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em;
}
.price-row.hdr:hover { background: var(--navy); }
.price-name { font-size: 14px; color: var(--t1); }
.price-unit { font-size: 13px; color: var(--t2); text-align: center; }
.price-val { font-family: var(--f1); font-size: 15px; font-weight: 700; color: var(--navy); text-align: right; }
.price-note {
  margin-top: 14px; padding: 14px 18px;
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r); font-size: 13px; color: var(--t2);
}

/* ━━━ CALCULATOR ━━━ */
#calculator { background: var(--white); }
.calc-box {
  max-width: 720px; margin: 56px auto 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 48px;
}
.calc-step { margin-bottom: 28px; }
.calc-step-label {
  font-family: var(--f1); font-size: 11px; font-weight: 800;
  color: var(--t3); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px; display: block;
}
.tog-group { display: flex; gap: 8px; flex-wrap: wrap; }
.tog-btn {
  padding: 11px 22px; border-radius: var(--r);
  border: 1.5px solid var(--border2); background: var(--white);
  font-family: var(--f1); font-size: 14px; font-weight: 600;
  color: var(--t2); cursor: pointer; transition: all 0.2s;
}
.tog-btn:hover { border-color: var(--navy); color: var(--navy); }
.tog-btn.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.calc-result {
  display: none; margin-top: 20px; padding: 24px;
  background: rgba(58,125,63,0.07); border: 1px solid rgba(58,125,63,0.25);
  border-radius: var(--r2);
}
.calc-result.show { display: block; }
.calc-result-label { font-size: 13px; color: var(--t2); margin-bottom: 4px; }
.calc-result-val { font-family: var(--f1); font-size: 36px; font-weight: 900; color: var(--navy); }
.calc-result-note { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 8px; }

/* ━━━ REVIEWS ━━━ */
#reviews { background: var(--bg); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.review-photo {
  height: 200px; overflow: hidden; background: var(--bg2); position: relative;
}
.review-photo-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg2), var(--border));
}
.review-photo-ph svg { width: 48px; height: 48px; opacity: 0.2; }
.review-body { padding: 24px; }
.review-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 14px; color: var(--t2); line-height: 1.7;
  margin-bottom: 18px; font-style: italic;
}
.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.review-name { font-family: var(--f1); font-weight: 700; font-size: 14px; color: var(--navy); }
.review-badge {
  background: rgba(30,58,110,0.07); color: var(--navy);
  font-size: 11px; font-weight: 600; font-family: var(--f1);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em;
}

/* ━━━ FAQ ━━━ */
#faq { background: var(--white); }
.faq-wrap { max-width: 780px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); transition: none;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; cursor: pointer;
  font-family: var(--f1); font-size: 16px; font-weight: 700; color: var(--navy);
  user-select: none;
}
.faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 18px; font-weight: 300;
  transition: all 0.3s; line-height: 1;
}
.faq-item.open .faq-q-icon { background: var(--navy); border-color: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a-text { font-size: 15px; color: var(--t2); line-height: 1.75; }

/* ━━━ WHY ━━━ */
#why { background: var(--navy); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.06); margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r3); overflow: hidden;
}
.why-item {
  padding: 40px 32px; background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.03); }
.why-item:last-child { border-right: none; }
.why-num {
  font-family: var(--f1); font-size: 48px; font-weight: 900;
  color: var(--orange); line-height: 1; margin-bottom: 20px; opacity: 0.9;
}
.why-title { font-family: var(--f1); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-text { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ━━━ GUARANTEE ━━━ */
#guarantee { background: var(--bg); }
.guarantee-wrap {
  display: grid; grid-template-columns: auto 1fr; gap: 72px;
  align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 64px;
}
.guarantee-badge {
  width: 200px; height: 200px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--green), #34d399 25%, var(--green) 50%, #2e9e68 75%, var(--green));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(0,196,122,0.25);
  animation: spin 25s linear infinite;
  position: relative;
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.guarantee-inner {
  position: absolute; inset: 10px; border-radius: 50%;
  background: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  animation: counter-spin 25s linear infinite;
}
@keyframes counter-spin { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
.guarantee-years {
  font-family: var(--f1); font-size: 58px; font-weight: 900;
  color: var(--green); line-height: 1;
}
.guarantee-years-sub { font-family: var(--f1); font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-label { font-size: 11px; font-weight: 700; color: var(--t3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.guarantee-title { font-family: var(--f1); font-size: clamp(24px, 2.5vw, 34px); font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.guarantee-text { color: var(--t2); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.guarantee-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.guarantee-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--t1); }
.g-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.g-check svg { width: 12px; height: 12px; }

/* ━━━ CERTS ━━━ */
#certs { background: var(--white); }
.certs-intro { max-width: 560px; }
.certs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.cert-card {
  border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden;
  background: var(--bg); transition: transform 0.2s, box-shadow 0.2s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.cert-img {
  width: 100%; aspect-ratio: 3/4; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.cert-img img { width: 100%; height: 100%; object-fit: cover; }
.cert-img-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, var(--bg2), var(--border));
}
.cert-img-ph svg { width: 40px; height: 40px; opacity: 0.25; color: var(--navy); }
.cert-img-ph span { font-size: 11px; color: var(--t3); font-weight: 600; font-family: var(--f1); letter-spacing: 0.06em; text-transform: uppercase; }
.cert-body { padding: 16px; }
.cert-name { font-family: var(--f1); font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.cert-sub { font-size: 12px; color: var(--t2); margin-top: 4px; }

/* ━━━ COVERAGE STRIP ━━━ */
#coverage { padding: 32px 0; background: var(--navy); }
.coverage-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.coverage-icon { color: var(--orange); flex-shrink: 0; }
.coverage-icon svg { width: 28px; height: 28px; }
.coverage-text { font-family: var(--f1); font-size: 15px; font-weight: 700; color: var(--white); }
.coverage-text span { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 13px; margin-left: 8px; }
.coverage-divider { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.coverage-cities { display: flex; gap: 8px; flex-wrap: wrap; }
.cov-city {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
}

/* ━━━ CONTACTS ━━━ */
#contacts { background: var(--bg); padding: 88px 0 0; }
.contacts-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start; padding-bottom: 56px;
}
.contact-blocks { display: flex; flex-direction: column; gap: 16px; }
.contact-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
}
.contact-block-ic {
  width: 44px; height: 44px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-block-ic svg { width: 22px; height: 22px; }
.contact-block-lbl { font-size: 11px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-block-val { font-family: var(--f1); font-size: 17px; font-weight: 700; color: var(--navy); }
.contact-block-val a { color: var(--navy); }
.contact-block-val a:hover { color: var(--orange); }
.contact-block-sub { font-size: 12px; color: var(--t2); margin-top: 3px; }

.contact-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.map-block { height: 420px; border-radius: var(--r3); overflow: hidden; border: 1px solid var(--border); position: relative; }
.map-block iframe { width: 100%; height: 100%; border: none; display: block; }
.map-block > div { border-radius: var(--r3); overflow: hidden; }

/* ━━━ FLOATING ━━━ */
.float-bar {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.float-btn svg { width: 24px; height: 24px; }
.float-btn.tg { background: #27a7e5; }
.float-btn.max { background: #005ff9; }
.float-btn.call { background: var(--green); }

/* ━━━ MODAL ━━━ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(9,12,20,0.7);
  backdrop-filter: blur(6px); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 44px; max-width: 480px; width: 100%;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--t2); transition: all 0.2s; line-height: 1;
}
.modal-close:hover { background: var(--border); color: var(--t1); }
.modal-icon { font-size: 48px; margin-bottom: 16px; text-align: center; }
.modal-title { font-family: var(--f1); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; text-align: center; }
.modal-desc { color: var(--t2); font-size: 15px; text-align: center; }

/* ━━━ PRIVACY PAGE ━━━ */
#privacy-page {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 300; overflow-y: auto; padding: 48px 24px;
}
#privacy-page.show { display: block; }
.privacy-wrap { max-width: 740px; margin: 0 auto; }
.priv-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 600; font-size: 14px;
  background: none; border: none; cursor: pointer; font-family: var(--f2);
  margin-bottom: 36px; padding: 0;
}
.privacy-wrap h1 { font-family: var(--f1); font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 32px; }
.privacy-wrap h2 { font-family: var(--f1); font-size: 16px; font-weight: 700; color: var(--orange); margin: 24px 0 10px; }
.privacy-wrap p { color: var(--t2); line-height: 1.75; font-size: 14px; margin-bottom: 10px; }

/* ━━━ FOOTER ━━━ */
footer {
  background: var(--navy3); padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-name { font-family: var(--f1); font-size: 15px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; }
.footer-logo-name span { color: var(--orange); }
.footer-text { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-right { display: flex; gap: 20px; align-items: center; }
.footer-right a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-right a:hover { color: rgba(255,255,255,0.7); }

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 1024px) {
  .features-strip { grid-template-columns: repeat(3, 1fr); }
  .feat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feat-item:nth-child(3) { border-right: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-specific { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .contacts-top { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; padding: 40px; }
  .guarantee-badge { margin: 0 auto; }
  .guarantee-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  #hero { padding: 120px 0 64px; }
  nav { display: none; }
  .btn-header { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .feat-item:nth-child(2) { border-right: none; }
  .feat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .feat-item:nth-child(4) { border-right: none; }
  .pains-layout { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps-row { grid-template-columns: 1fr; }
  .proc-line { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 0 calc(50% - 1px); }
  .price-row { grid-template-columns: 1fr auto; }
  .price-unit { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .calc-box { padding: 28px 20px; }
  .contact-cta-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .guarantee-wrap { padding: 32px 24px; gap: 36px; }
  .coverage-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .features-strip { grid-template-columns: 1fr; }
  .feat-item { border-right: none !important; }
  .hero-stats { flex-direction: column; }
  .hero-stat { flex: auto; border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .proc-specific { gap: 16px; }
  .proc-spec-step { flex-direction: column; gap: 8px; }
  .proc-spec-num { font-size: 32px; }
}