:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --text: #1a2b3e;
  --text-light: #5b6f82;
  --muted: #6c8598;
  --line: rgba(26, 43, 62, 0.08);
  --shadow: 0 20px 40px rgba(58, 153, 201, 0.08);
  --shadow-lg: 0 30px 60px rgba(58, 153, 201, 0.12);
  --blue: #3a99c9;
  --blue-deep: #2f7a9e;
  --green: #a8ca0a;
  --green-deep: #8aaa08;
  --gradient-primary: linear-gradient(135deg, #3a99c9, #a8ca0a);
  --gradient-soft: linear-gradient(135deg, rgba(58, 153, 201, 0.05), rgba(168, 202, 10, 0.05));
  --accent-soft: rgba(58, 153, 201, 0.08);
  --accent-soft-2: rgba(168, 202, 10, 0.08);
  --card-bg: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(58, 153, 201, 0.15);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1280px;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f9fcff, #f0f7fa);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

input, textarea, select, button { 
  font: inherit; 
  border: none;
  outline: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--glass-border);
}

.header__wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 52px;
  width: auto;
}

/* menu toggle */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: 0.25s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 16px;
}

.nav a {
  transition: 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: 0.3s;
  border-radius: 2px;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:hover::after {
  width: 100%;
}

/* header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 40px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-light);
  min-width: 60px;
  height: 42px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 15px;
}

.lang-btn.is-active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 5px 15px rgba(58, 153, 201, 0.3);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(58, 153, 201, 0.2);
}

.btn--primary {
  color: white;
  background: var(--gradient-primary);
  box-shadow: 0 10px 20px rgba(58, 153, 201, 0.25);
}

.btn--ghost {
  background: white;
  border-color: var(--glass-border);
  color: var(--blue);
}

.btn--ghost:hover {
  background: var(--accent-soft);
  border-color: var(--blue);
}

.btn--full {
  width: 100%;
}

/* hero */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 153, 201, 0.08), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 202, 10, 0.06), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  background: white;
  border: 1px solid var(--glass-border);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.hero h1 {
  margin: 20px 0;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a2b3e, #3a99c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  max-width: 600px;
  margin: 0;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  transition: 0.2s;
}

.stat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

/* glass card */
.glass-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  transition: 0.3s;
}

.glass-card:hover {
  box-shadow: 0 40px 70px rgba(58, 153, 201, 0.15);
}

.hero__panel {
  position: relative;
  overflow: hidden;
}

.panel-head h2 {
  margin: 16px 0 12px;
  font-size: 32px;
  line-height: 1.1;
  color: var(--text);
}

.panel-head p {
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 30px;
  background: var(--accent-soft-2);
  border: 1px solid rgba(168, 202, 10, 0.3);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.panel-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.panel-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.panel-item:last-child {
  border-bottom: 0;
}

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  color: var(--blue);
  font-size: 24px;
  border: 1px solid var(--glass-border);
}

.panel-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--text);
}

.panel-item span {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.hero-mini-proof__item {
  padding: 16px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.hero-mini-proof__item strong {
  display: block;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 5px;
}

.hero-mini-proof__item span {
  color: var(--text-light);
  font-size: 13px;
}

/* partners line */
.partners-line {
  padding: 20px 0 40px;
}

.partners-line__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 20px 30px;
  border-radius: 60px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.partners-line__label {
  font-weight: 700;
  color: var(--blue);
  padding-right: 10px;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  transition: 0.2s;
}

.partner-pill:hover {
  border-color: var(--blue);
  background: white;
  box-shadow: var(--shadow);
}

.partner-pill__icon {
  font-size: 20px;
}

.partner-pill strong {
  color: var(--text);
  font-weight: 600;
}

/* sections */
.section {
  padding: 80px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--gradient {
  background: linear-gradient(135deg, #e8f2f9, #eef5e8);
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: var(--accent-soft);
  border: 1px solid rgba(58, 153, 201, 0.2);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(58, 153, 201, 0.2);
  color: var(--blue);
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
}

/* cards */
.cards {
  display: grid;
  gap: 24px;
}

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

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

.service-card,
.advantage-card,
.case-card {
  padding: 32px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.service-card:hover,
.advantage-card:hover,
.case-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--glass-border);
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--blue);
}

.service-card h3,
.advantage-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--text);
}

.service-card p,
.advantage-card p,
.case-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.case-card__label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: var(--accent-soft-2);
  border: 1px solid rgba(168, 202, 10, 0.3);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.pricing-includes h3 {
  margin: 0 0 24px;
  font-size: 28px;
  color: var(--text);
}

.includes-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.includes-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.5;
}

.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.pricing-table__title {
  margin: 0 0 24px;
  font-size: 28px;
  color: var(--text);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  transition: 0.2s;
}

.pricing-card:hover {
  border-color: var(--blue);
  background: white;
  box-shadow: var(--shadow);
}

.pricing-card strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.pricing-card span {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.pricing-card b {
  font-size: 20px;
  color: var(--green-deep);
  font-weight: 700;
}

.pricing-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-light);
  font-style: italic;
}

/* faq */
.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background: white;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 30px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 30px;
  font-size: 24px;
  color: var(--blue);
  transition: 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 30px 30px;
  color: var(--text-light);
  line-height: 1.6;
}

/* contact cta */
.contact-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.contact-cta__copy h2 {
  margin: 16px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--text);
}

.contact-cta__copy p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lead-points {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.lead-points div {
  color: var(--text);
  font-weight: 500;
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-weight: 600;
  transition: 0.2s;
  flex: 1 1 auto;
  box-shadow: var(--shadow);
}

.messenger-btn:hover {
  background: var(--accent-soft);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* contacts grid */
.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contacts-card {
  padding: 40px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.contacts-card h2,
.contacts-card h3 {
  margin: 16px 0 16px;
  font-size: 30px;
  color: var(--text);
}

.contacts-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contacts-list {
  display: grid;
  gap: 12px;
}

.contacts-list a {
  display: block;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-weight: 600;
  transition: 0.2s;
}

.contacts-list a:hover {
  border-color: var(--blue);
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

/* map */
.section-map {
  padding-top: 0;
}

.map-wrap {
  padding: 20px;
  border-radius: 40px;
  background: white;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 28px;
}

/* footer */
.footer {
  padding: 40px 0 50px;
  border-top: 1px solid var(--glass-border);
  background: white;
}

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

.footer__logo {
  height: 48px;
  width: auto;
}

.footer strong {
  font-size: 18px;
  color: var(--text);
}

.footer p {
  margin: 5px 0 0;
  color: var(--text-light);
  font-size: 15px;
}

/* media queries */
@media (max-width: 1180px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 15px 20px;
    border-radius: 20px;
    background: var(--bg-soft);
    color: var(--text);
  }

  .nav a::after {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .cards--3,
  .cards--2,
  .pricing-layout,
  .contact-cta,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-layout {
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header__wrap {
    min-height: 70px;
    gap: 15px;
  }

  .brand__logo {
    height: 40px;
  }

  .header__right {
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero__grid {
    gap: 30px;
  }

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

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

  .partners-line__wrap {
    border-radius: 30px;
    padding: 15px;
  }

  .partner-pill {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .cards--3,
  .cards--2 {
    gap: 16px;
  }

  .service-card,
  .advantage-card,
  .case-card,
  .glass-card,
  .contacts-card {
    padding: 24px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .pricing-card strong {
    font-size: 18px;
  }

  .pricing-card b {
    font-size: 18px;
  }

  .messenger-row {
    flex-direction: column;
  }

  .messenger-btn {
    width: 100%;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .contacts-grid {
    gap: 16px;
  }

  .map-wrap {
    padding: 12px;
    border-radius: 28px;
  }

  .map-wrap iframe {
    height: 300px;
    border-radius: 20px;
  }

  .footer__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.contacts-legal {
  margin: -4px 0 20px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(168, 202, 10, 0.10);
  border: 1px solid rgba(168, 202, 10, 0.28);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 14px;
}


/* internal pages */
.page-main {
  padding-bottom: 40px;
}

.page-hero {
  padding: 88px 0 40px;
}

.page-hero__wrap {
  max-width: 860px;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.page-hero__lead {
  max-width: 760px;
  font-size: 19px;
  color: var(--text-light);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.page-section__head {
  max-width: 860px;
}

.page-point-card,
.page-link-card {
  height: 100%;
}

.footer__contacts {
  display: grid;
  gap: 10px;
}

.brand--footer {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer__copy {
  color: var(--muted);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 64px 0 24px;
  }

  .page-hero__lead {
    font-size: 17px;
  }
}


/* inner pages */
.page-main {
  padding-bottom: 32px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.page-hero {
  padding: 42px 0 28px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero__content,
.card-glass,
.map-card,
.cta-panel,
.step-card,
.faq-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.page-hero__content {
  padding: 34px;
}

.page-hero__content h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  margin: 16px 0 18px;
}

.page-hero__lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 760px;
}

.page-checklist {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
  list-style: none;
}

.page-checklist li,
.page-mini-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-light);
}

.page-checklist li::before,
.page-mini-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero__actions--compact .btn {
  min-height: 50px;
}

.card-glass {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.96));
}

.page-sidebox h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.page-sidebox p {
  color: var(--text-light);
}

.page-stats {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.page-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--gradient-soft);
  border: 1px solid var(--glass-border);
}

.page-stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.page-stat span {
  display: block;
  color: var(--text-light);
}

.page-section {
  padding-top: 22px;
}

.page-section__head--left {
  text-align: left;
  margin-bottom: 24px;
}

.page-feature-card,
.page-link-card {
  height: 100%;
}

.page-feature-card p,
.page-link-card p {
  color: var(--text-light);
}

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

.step-card {
  padding: 26px 22px;
}

.step-card__num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-weight: 800;
  background: var(--gradient-primary);
}

.step-card p {
  color: var(--text-light);
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.cards--stack-mobile {
  margin-bottom: 22px;
}

.page-mini-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  color: var(--text-light);
  font-weight: 600;
}

.cta-panel {
  padding: 28px;
}

.cta-panel h2,
.cta-panel h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-panel p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-panel--wide {
  text-align: center;
}

.cta-panel--wide .page-hero__actions {
  justify-content: center;
}

.map-card {
  overflow: hidden;
  padding: 18px;
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 22px;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-card {
  padding: 22px 24px;
}

.faq-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-card p {
  color: var(--text-light);
}

@media (max-width: 1100px) {
  .page-hero__grid,
  .two-col-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 24px;
  }

  .page-hero__content,
  .card-glass,
  .cta-panel,
  .faq-card,
  .step-card,
  .map-card {
    padding: 22px;
    border-radius: 22px;
  }

  .page-hero__content h1 {
    font-size: 32px;
  }

  .page-hero__lead {
    font-size: 16px;
  }

  .cards--stack-mobile,
  .faq-list,
  .steps-grid {
    gap: 14px;
  }

  .map-card iframe {
    height: 300px;
    border-radius: 18px;
  }
}


.hero-visual,
.page-hero__figure {
  margin: 0 0 22px;
}

.hero-visual img,
.page-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,251,0.96));
  box-shadow: var(--shadow);
}

.hero-visual figcaption,
.page-hero__figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-hero__figure {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
}
