:root {
  --bg-dark: #0f1923;
  --bg-dark-2: #162230;
  --bg-page: #f5f7fa;
  --bg-white: #ffffff;
  --blue: #1565c0;
  --blue-light: #e3f2fd;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --orange: #ff6d00;
  --orange-light: #fff3e0;
  --red: #e53935;
  --red-dark: #c62828;
  --red-light: #ffebee;
  --text-body: #4b5563;
  --text-dark: #111827;
  --text-muted: #9ca3af;
  --text-white: #ffffff;
  --yellow: #ffd600;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --section-x: 80px;
  --shadow-soft: 0 10px 30px rgba(15, 25, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tag-red {
  background: rgba(255, 0, 0, 0.15);
  color: var(--red);
}

.tag-green {
  background: var(--green-light);
  color: var(--green);
}

.tag-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.tag-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--text-white);
}

.btn-light {
  background: var(--text-white);
  color: var(--red);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}

.icon {
  display: inline-flex;
  width: var(--icon-size, 18px);
  height: var(--icon-size, 18px);
  color: var(--icon-color, currentColor);
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

/* Header */
.site-header {
  background: var(--bg-dark);
  color: var(--text-white);
}

.urgency-bar {
  background: var(--red);
  padding: 10px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-bar {
  padding: 16px 0;
}

.main-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-box {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 11px;
  color: #8899b0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav-links a {
  color: #8899b0;
  font-weight: 500;
}

.nav-links a.active {
  color: var(--text-white);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.phone-block .phone {
  font-size: 15px;
  font-weight: 700;
}

.phone-block .phone-sub {
  font-size: 11px;
  color: #8899b0;
}

.header-cta {
  background: var(--red);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text-white);
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--bg-dark);
  color: var(--text-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  z-index: 50;
}

.mobile-nav .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

body.menu-open .mobile-nav {
  transform: translateX(0);
}

body.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  background: var(--bg-dark);
  color: var(--text-white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 580px;
  min-height: 620px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-content {
  padding: 70px 80px 70px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.hero-badge {
  background: rgba(255, 0, 0, 0.15);
  color: var(--red);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 18px;
  color: #b0bdd0;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
}

.hero-price .price {
  color: var(--yellow);
  font-size: 24px;
  font-weight: 700;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  color: #8899b0;
  font-weight: 500;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

/* Stats */
.stats-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -2px;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
}

.stat-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-label strong {
  font-size: 14px;
}

.stat-label span {
  font-size: 12px;
  color: var(--text-body);
}

/* Pain points */
.pain {
  background: var(--bg-page);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-card h4 {
  font-size: 17px;
}

.pain-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.image-card {
  border-radius: 8px;
  height: 160px;
  background-size: cover;
  background-position: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
}

/* How it works */
.how {
  background: var(--bg-dark);
  color: var(--text-white);
}

.how .section-subtitle {
  color: #8899b0;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-dark-2);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: #8899b0;
  line-height: 1.7;
}

.how-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Mid CTA band */
.cta-band {
  background: var(--red);
  color: var(--text-white);
  padding: 32px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-band-left h3 {
  font-size: 22px;
}

.cta-band-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.cta-band-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Before/After */
.before-after {
  background: var(--bg-white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ba-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 200px;
}

.ba-images div {
  background-size: cover;
  background-position: center;
}

.ba-info {
  padding: 16px 20px;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Services section */
.services-section {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card h4 {
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.service-price {
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
}

.icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Why us */
.why {
  background: linear-gradient(180deg, #0f1923 0%, #1a2a3a 100%);
  color: var(--text-white);
}

.why-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.why-title {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card {
  background: linear-gradient(180deg, #1e2d3d 0%, #162230 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.why-card .accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}

.why-card h4 {
  font-size: 17px;
}

.why-card p {
  color: #7a8fa3;
  font-size: 14px;
  line-height: 1.65;
}

.why-index {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 44px;
  right: 28px;
}

/* Prices table */
.price-section {
  background: var(--bg-white);
}

.price-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .price {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  color: var(--red);
  font-weight: 700;
}

.price-head {
  background: var(--bg-dark);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
}

.price-cta {
  background: var(--red);
  color: var(--text-white);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Geo */
.geo {
  background: var(--bg-dark);
  color: var(--text-white);
}

.geo .section-subtitle {
  color: #8899b0;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.geo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0bdd0;
  font-size: 13px;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: var(--bg-page);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* FAQ */
.faq {
  background: var(--bg-page);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-plain .faq-item {
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq-plain .faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* CTA form */
.cta-section {
  background: var(--bg-dark);
  color: var(--text-white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.cta-grid .section-subtitle,
.cta-grid p {
  color: #8899b0;
}

.form-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-dark);
}

.form-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-page);
}

.form-control input,
.form-control textarea {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
}

.form-control input::placeholder,
.form-control textarea::placeholder {
  color: var(--text-muted);
}

.form-control textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.4;
}

.form-consent input {
  margin-top: 3px;
}

.form-consent a {
  color: var(--red);
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-white);
}

.footer-main {
  padding: 50px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo-box {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: #7a8ba8;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-bottom {
  background: #0a1219;
  padding: 16px 0;
  font-size: 12px;
  color: #4a5a70;
}

.footer-bottom .footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

/* Services page */
.service-hero {
  background: var(--bg-dark);
  color: var(--text-white);
}

.trust-bar {
  background: var(--bg-white);
  padding: 24px 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.service-detail {
  background: var(--bg-white);
}

.service-detail-card {
  background: var(--bg-page);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.service-detail-media {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.service-detail-card:last-child {
  margin-bottom: 0;
}

.service-detail-card.reverse {
  grid-template-columns: 1fr 360px;
}

.service-detail-card.reverse .service-detail-media {
  order: 2;
}

.service-features {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.service-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.process {
  background: var(--bg-dark);
  color: var(--text-white);
}

.process-grid {
  display: flex;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.process-arrow {
  flex: 0 0 28px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-strip {
  background: var(--red);
  color: var(--text-white);
  padding: 40px 0;
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* Prices page */
.price-category {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-category h3 {
  font-size: 24px;
  font-weight: 700;
}

.price-table .price-row:nth-child(even) {
  background: var(--bg-page);
}

.discount-band {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--text-white);
  padding: 40px 0;
}

.discount-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guarantee {
  background: var(--bg-dark);
  color: var(--text-white);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* About page */
.about-hero {
  background: var(--bg-dark);
  color: var(--text-white);
}

.about-stats {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 40px 0;
}

.about-stats .stat-label strong,
.about-stats .stat-label span {
  color: #8899b0;
}

.about-content {
  background: var(--bg-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 50px;
  align-items: center;
}

.timeline {
  background: var(--bg-white);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.timeline-card {
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brands {
  background: var(--bg-dark);
  color: var(--text-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 40px;
  text-align: center;
}

.about-reviews {
  background: var(--bg-white);
}

.values {
  background: var(--bg-page);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Contacts page */
.contact-hero {
  background: var(--bg-dark);
  color: var(--text-white);
}

.contact-urgency {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--text-white);
  padding: 20px 0;
}

.contact-content {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-card h4 {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.contact-card .contact-title {
  font-size: 16px;
  font-weight: 600;
}

.map-card {
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.coverage {
  background: var(--bg-dark);
  color: var(--text-white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coverage-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-faq {
  background: var(--bg-page);
}

.contact-cta {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--text-white);
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --section-x: 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr 480px;
  }

  .services-grid,
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-right .phone-block,
  .nav-right .header-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 320px;
  }


  .stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .pain-grid,
  .testimonial-grid,
  .ba-grid,
  .why-grid,
  .geo-grid,
  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid,
  .contact-grid,
  .guarantee-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse .service-detail-media {
    order: 0;
  }

  .process-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .process-arrow {
    display: none;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-x: 24px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-title {
    font-size: 38px;
  }

  .cta-band-inner,
  .cta-strip-inner,
  .discount-inner,
  .price-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .pain-grid,
  .testimonial-grid,
  .ba-grid,
  .why-grid,
  .geo-grid,
  .how-steps,
  .values-grid,
  .brands-grid,
  .coverage-grid,
  .timeline-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }

  .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 560px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .stat-number {
    font-size: 32px;
  }
}
