/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-main: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navy:   #0f2044;
  --blue:   #1a3a6e;
  --accent: #c9a84c;
  --accent2:#e8c96a;
  --light:  #f5f7fc;
  --white:  #ffffff;
  --text:   #1e2a3b;
  --muted:  #6b7a99;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(15,32,68,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--alt { background: var(--light); }

.badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ── Header ── */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all .3s;
}

header.site-header.scrolled {
  background: rgba(15,32,68,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text { font-weight: 800; font-size: 1.28rem; }
.logo-text span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 8px; }

.site-nav a {
  color: rgba(255,255,255,.8);
  font-size: .96rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .2s;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav a.active { color: var(--accent); background: rgba(201,168,76,.12); }
.site-nav a.nav-cta.active { color: var(--navy) !important; background: var(--accent2); }

.header-phone {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--accent2) !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4a8a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: #4a90e2; bottom: -100px; left: -50px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--accent2);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.75rem, 5.4vw, 4.35rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title span { color: var(--accent); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  gap: 32px;
}

.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-main);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust-label { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: 4px; }

/* Hero Form Card */
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}

.hero-card-title {
  font-family: var(--font-main);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.hero-card-sub { color: var(--muted); font-size: 1rem; margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.06rem;
  font-weight: 700;
  margin-top: 8px;
}

.form-privacy {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.form-alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.form-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

.turnstile-wrap {
  margin: 4px 0 12px;
  min-height: 65px;
}

.turnstile-wrap iframe {
  max-width: 100%;
}

/* ── Stats Strip ── */
.stats {
  background: var(--navy);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-main);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label { color: rgba(255,255,255,.65); font-size: .98rem; margin-top: 8px; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #e8edf5;
  border-radius: var(--radius);
  padding: 36px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 28px; height: 28px; color: var(--accent); }

.service-title {
  font-family: var(--font-main);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }

.service-link {
  color: var(--accent);
  font-size: .98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link svg { width: 16px; height: 16px; }

/* ── How it works ── */
.steps { margin-top: 56px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc { color: var(--muted); font-size: .98rem; line-height: 1.65; }

/* ── Benefits ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.benefits-list { display: flex; flex-direction: column; gap: 20px; }

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

.benefit-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 22px; height: 22px; color: var(--navy); }

.benefit-title { font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.benefit-desc { color: var(--muted); font-size: 1rem; }

.benefits-visual {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px;
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .1;
}

.benefits-visual-title {
  font-family: var(--font-main);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 32px;
  position: relative;
}

.visual-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.visual-stat:last-child { border-bottom: none; }

.visual-stat-label { color: rgba(255,255,255,.7); font-size: 1rem; }
.visual-stat-val { font-weight: 800; color: var(--accent); font-size: 1.2rem; }

.progress-bar-wrap { margin-top: 8px; }
.progress-bar-track { height: 4px; background: rgba(255,255,255,.15); border-radius: 99px; margin-top: 4px; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 99px; }

.license-card {
  margin-top: 32px;
  padding: 20px;
  background: rgba(201,168,76,.15);
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,.3);
}
.license-card-label { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 8px; }
.license-card-val { color: white; font-weight: 800; }
.license-card-meta { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 4px; }

/* ── FAQ ── */
.faq-list { margin-top: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }

.faq-item {
  border: 1.5px solid #e8edf5;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open { border-color: var(--accent); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
}

.faq-q svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--accent);
  transition: transform .3s;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid #e8edf5;
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s;
}

.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }

.testimonial-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.author-name { font-weight: 800; font-size: 1rem; color: var(--navy); }
.author-info { font-size: .9rem; color: var(--muted); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 24px; height: 24px; color: var(--accent); }

.contact-label { font-size: .9rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-val { font-size: 1.15rem; font-weight: 700; color: var(--navy); }

.messenger-btns { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
  color: white;
}

.messenger-btn svg { width: 20px; height: 20px; }

.btn-viber { background: #7360f2; }
.btn-viber:hover { background: #5a4bd1; }
.btn-telegram { background: #2aabee; }
.btn-telegram:hover { background: #179bd7; }
.btn-whatsapp { background: #25d366; }
.btn-whatsapp:hover { background: #1da851; }

.contact-form-wrap {
  background: var(--light);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-title {
  font-family: var(--font-main);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ── Footer ── */
footer.site-footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; color: white; margin-bottom: 16px; }

.footer-desc { color: rgba(255,255,255,.5); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: var(--navy); }
.social-btn svg { width: 18px; height: 18px; }

.footer-col-title { color: white; font-weight: 800; margin-bottom: 20px; font-size: 1.05rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li { color: rgba(255,255,255,.6); font-size: 1rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 1rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  padding-right: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { color: rgba(255,255,255,.35); font-size: .9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .9rem; transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s;
  color: white;
}

.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; }

.float-phone { background: var(--accent); color: var(--navy); width: 60px; height: 60px; }
.float-tg { background: #2aabee; }
.float-wa { background: #25d366; }

/* Lang switcher */
.lang-switch {
  display: flex;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 12px;
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  border: none;
  background: none;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}
.lang-btn.active { background: var(--accent); color: var(--navy); }
.lang-btn:hover { color: var(--white); }
.lang-btn.active:hover { color: var(--navy); }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 100px;
  right: 32px;
  background: #22c55e;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transform: translateY(120%);
  opacity: 0;
  transition: all .4s;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast { pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; }

/* ── Sub-page content ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-breadcrumb {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb a:hover { color: var(--accent2); }

.page-content {
  padding: 64px 0;
}
.page-content .container > h1,
.page-content .container > h2,
.page-content .container > h3,
.page-content h3.text-primary {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.page-content p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.page-content ul { margin: 0 0 20px 20px; }
.page-content li { margin-bottom: 8px; color: var(--text); }
.page-content img.img-thumbnail {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.page-content .bg-light {
  background: var(--light);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 20px 0;
}
.page-content .row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.page-content .row > .col-12 { grid-column: span 2; }
.page-content .row > .col-lg-6 { grid-column: span 1; }
.page-content .text-primary { color: var(--accent) !important; }
.page-content .text-center { text-align: center; }

@media (max-width: 768px) {
  .page-content .row { grid-template-columns: 1fr; }
  .page-content .row > .col-lg-6 { grid-column: span 1; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { padding: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .trust-num { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding-right: 0; padding-bottom: 80px; }
  .float-cta { bottom: 20px; right: 20px; }
  .header-phone { display: none !important; }
}
