@font-face {
  font-family: "InterFallback";
  src: local("Inter"), local("Arial");
}

:root {
  --bg: #05070b;
  --bg-soft: #0a0f18;
  --card: rgba(12, 18, 28, 0.74);
  --card-solid: #0c121c;
  --text: #ffffff;
  --muted: #a8b2c3;
  --line: rgba(98, 188, 255, 0.18);
  --blue: #00a3ff;
  --blue-soft: #4cc8ff;
  --shadow: 0 24px 90px rgba(0, 102, 255, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: InterFallback, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 163, 255, 0.12), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(0, 73, 255, 0.11), transparent 32%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.1);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.page-glow--one {
  top: -180px;
  left: -160px;
}

.page-glow--two {
  bottom: 20%;
  right: -220px;
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 1000;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(110, 190, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  transition: all 0.25s ease;
}

.header.is-scrolled {
  inset: 10px 18px auto;
  background: rgba(5, 8, 13, 0.88);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 22px;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(84, 201, 255, 0.92) 48%, rgba(0, 86, 255, 0.85)),
    radial-gradient(circle at 70% 20%, #fff, transparent 35%);
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.52);
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.header-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.16);
  border: 1px solid rgba(82, 196, 255, 0.34);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 22px rgba(0, 163, 255, 0.16);
  transition: all 0.2s ease;
}

.header-cta:hover {
  background: rgba(0, 163, 255, 0.28);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(82, 196, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.95) 0%, rgba(5, 7, 11, 0.72) 42%, rgba(5, 7, 11, 0.44) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.18), #05070b 98%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: #d7e1ef;
  margin-bottom: 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #005dff);
  box-shadow: 0 12px 42px rgba(0, 139, 255, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 18px 64px rgba(0, 139, 255, 0.54);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(92, 202, 255, 0.48);
  box-shadow: 0 12px 40px rgba(0, 139, 255, 0.16);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(108, 200, 255, 0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d9e6f8;
  font-size: 14px;
}

.hero-card {
  align-self: stretch;
  min-height: 270px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    url("../assets/ShineLab_Assets/04_Backgrounds/hero_card_laboratory_vertical.webp") center/cover;
  border: 1px solid rgba(123, 204, 255, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-inner {
  height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, transparent, rgba(5,7,11,0.88));
}

.card-label {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.14);
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-card h2 {
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head h2,
.cta-panel h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.section-head p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-xl);
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.comparison-card:hover,
.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 163, 255, 0.42);
  box-shadow: 0 24px 82px rgba(0, 114, 255, 0.18);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card h3,
.comparison-card h3,
.advantage-card h3,
.timeline-item h3,
.request-form h3 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.service-card p,
.advantage-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-soft);
  font-weight: 800;
}

.before-after {
  background:
    linear-gradient(180deg, rgba(0, 163, 255, 0.035), transparent),
    url("../assets/ShineLab_Assets/04_Backgrounds/background_03.webp") center/cover fixed;
}

.comparison-grid {
  display: grid;
  gap: 22px;
}

.comparison-card {
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(5, 9, 15, 0.78);
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.comparison-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.comparison-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.comparison-card figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.72);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.comparison-card h3 {
  margin: 0 6px 4px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.advantage-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(123, 204, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    rgba(12, 18, 28, 0.62);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 18px rgba(0, 163, 255, 0.5));
}

.process {
  background:
    radial-gradient(circle at 35% 20%, rgba(0, 163, 255, 0.10), transparent 32%),
    rgba(255,255,255,0.01);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.timeline-item {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(12, 18, 28, 0.72);
  overflow: hidden;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(76, 200, 255, 0.34);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(123, 204, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.cta-panel {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(123, 204, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.84), rgba(5, 7, 11, 0.58)),
    url("../assets/ShineLab_Assets/04_Backgrounds/background_cta_auto_furniture_contact.webp") center/cover;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.request-form {
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(12, 18, 28, 0.72);
  padding: 28px;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.contact-row img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: #fff;
  font-weight: 750;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #d9e5f5;
  font-size: 14px;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 204, 255, 0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #fff;
  padding: 15px 16px;
  outline: none;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(0, 163, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 163, 255, 0.11);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.footer {
  padding: 56px 0 24px;
  border-top: 1px solid rgba(123, 204, 255, 0.14);
  background: #030509;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #005dff);
  box-shadow: 0 16px 50px rgba(0, 139, 255, 0.42);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .header {
    border-radius: 24px;
  }

  .nav {
    position: fixed;
    top: 90px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(123, 204, 255, 0.18);
    border-radius: 24px;
    background: rgba(5, 8, 13, 0.96);
    backdrop-filter: blur(20px);
  }

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

  .burger {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .cta-panel,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 220px;
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header {
    inset: 10px 10px auto;
    min-height: 62px;
    padding: 10px 12px;
  }

  .logo {
    font-size: 20px;
  }

  .hero {
    padding: 120px 0 70px;
    min-height: auto;
  }

  .hero-bg img {
    opacity: 0.55;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .hero-badges span {
    width: 100%;
  }

  .service-grid,
  .advantages-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 210px;
  }

  .comparison-images {
    grid-template-columns: 1fr;
  }

  .comparison-card img {
    height: 230px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .cta-panel {
    padding: 28px;
  }

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

  .floating-cta {
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }
}


/* Final visual fixes */
.comparison-grid--paired {
  gap: 28px;
}

.comparison-grid--paired .comparison-card {
  padding: 20px;
}

.comparison-grid--paired .comparison-images {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-grid--paired .comparison-card img {
  height: 360px;
  object-fit: cover;
}

.gallery-grid--clean {
  grid-template-columns: 1.1fr 0.9fr;
}

.gallery-grid--clean img {
  filter: saturate(1.05) contrast(1.02);
}

.contacts-grid {
  align-items: start;
}

.contacts-grid > .section-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.contact-card,
.request-form {
  align-self: start;
  height: 100%;
}

.contact-row {
  min-height: 74px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 77% 45%, rgba(0, 163, 255, 0.13), transparent 32%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .comparison-grid--paired .comparison-images {
    grid-template-columns: 1fr;
  }

  .comparison-grid--paired .comparison-card img {
    height: 260px;
  }
}


/* Second stage fixes */
.gallery-grid--clean {
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(3, 180px);
}

.gallery-grid--clean .gallery-main {
  grid-row: span 2;
}

.gallery-grid--clean img:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.gallery-grid--clean img:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

.hero-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.015)),
    url("../assets/ShineLab_Assets/04_Backgrounds/hero_card_laboratory_vertical.webp") center/cover;
}

@media (max-width: 720px) {
  .gallery-grid--clean {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid--clean .gallery-main,
  .gallery-grid--clean img:nth-child(4),
  .gallery-grid--clean img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}


/* Third stage fixes */
.logo-mark--flask {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(32,183,255,0.10) 45%, rgba(0,0,0,0) 72%);
  box-shadow: 0 0 24px rgba(32, 183, 255, 0.28);
  overflow: hidden;
}

.logo-mark--flask img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.24);
  filter: drop-shadow(0 0 12px rgba(32, 183, 255, 0.38));
}

.hero-card {
  background-position: center top;
}

@media (max-width: 720px) {
  .logo-mark--flask img {
    transform: scale(1.15);
  }
}

/* Pricing section */
.pricing {
  background: radial-gradient(circle at 10% 8%, rgba(0, 163, 255, 0.08), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.018), rgba(0,0,0,0));
}

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

.price-card {
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)), rgba(12, 18, 28, 0.74);
  overflow: hidden;
  box-shadow: 0 20px 78px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 163, 255, 0.42);
  box-shadow: 0 24px 82px rgba(0, 114, 255, 0.18);
}

.price-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.price-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.price-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 11, 0.46));
}

.price-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.price-card:hover .price-media img {
  transform: scale(1.04);
}

.price-body {
  padding: 26px;
}

.price-body h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fff;
}

.price-body p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(171, 217, 255, 0.18);
}

.price-list span {
  color: #e7eef9;
  line-height: 1.35;
}

.price-list small {
  display: inline;
  color: var(--muted);
  font-size: 0.86em;
}

.price-list b {
  white-space: nowrap;
  color: #fff;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.price-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-soft);
  font-weight: 900;
}

.pricing-note {
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(0, 163, 255, 0.055);
}

.pricing-note p {
  margin: 0;
  color: #d7e5f5;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .pricing-grid,
  .price-card--wide {
    grid-template-columns: 1fr;
  }

  .price-card--wide {
    display: block;
  }
}

@media (max-width: 720px) {
  .price-media,
  .price-media img {
    min-height: 210px;
  }

  .price-body {
    padding: 22px;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-list b {
    font-size: 18px;
  }
}

/* Real contacts update */
.contact-card { gap: 14px; }
.footer-contact a { color: var(--muted); transition: color 0.2s ease; }
.footer-contact a:hover { color: #fff; }

/* Thanks page */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 163, 255, 0.14), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(0, 83, 255, 0.12), transparent 30%),
    var(--bg);
}

.thanks-card {
  width: min(620px, 100%);
  padding: 44px;
  border: 1px solid rgba(123, 204, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(12, 18, 28, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card .logo {
  justify-content: center;
  margin-bottom: 30px;
}

.thanks-card h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.thanks-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}


/* Service area modal */
.btn-map-open {
  border-color: rgba(123, 204, 255, 0.32);
}

.contact-map-link {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-soft);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-map-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  padding: 28px;
}

.map-modal.is-open {
  display: grid;
  place-items: center;
}

.map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.82);
  backdrop-filter: blur(12px);
}

.map-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid rgba(123, 204, 255, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 163, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    rgba(9, 15, 25, 0.96);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.58);
  padding: 32px;
}

.map-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 204, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.88);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.map-modal__head {
  margin-top: -18px;
  max-width: 780px;
}

.map-modal__head h2 {
  margin: 8px 0 14px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.map-modal__head p {
  color: var(--muted);
  line-height: 1.65;
}

.map-modal__image {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(66, 172, 255, 0.26);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 38px rgba(0, 163, 255, 0.08);
}

.map-modal__image img {
  display: block;
  width: 100%;
  height: auto;
}

.map-modal__note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(123, 204, 255, 0.16);
  border-radius: 22px;
  background: rgba(0, 163, 255, 0.055);
}

.map-modal__note p {
  margin: 0;
  color: #d7e5f5;
  line-height: 1.65;
}

body.map-modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .map-modal {
    padding: 14px;
  }

  .map-modal__dialog {
    padding: 20px;
    border-radius: 24px;
  }

  .map-modal__head {
    margin-top: -10px;
  }

  .map-modal__close {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .map-modal__image {
    border-radius: 18px;
  }
}


/* Map modal button fix */
.btn-map-open,
button.btn-map-open,
.hero .btn-map-open {
  color: #ffffff !important;
  background: rgba(255,255,255,0.035);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.btn-map-open:hover,
button.btn-map-open:hover,
.hero .btn-map-open:hover {
  color: #ffffff !important;
  background: rgba(0, 163, 255, 0.14);
}

.btn-map-open:focus-visible,
.contact-map-link:focus-visible,
.map-modal__close:focus-visible {
  outline: 2px solid rgba(123, 204, 255, 0.85);
  outline-offset: 3px;
}


/* Map modal position fix */
.map-modal {
  z-index: 99999 !important;
  padding: 86px 28px 28px !important;
  align-items: start;
}

.map-modal.is-open {
  place-items: start center;
}

.map-modal__dialog {
  margin-top: 0;
  max-height: calc(100vh - 116px);
  padding-top: 34px;
}

.map-modal__close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  margin: 0 !important;
  width: 46px;
  height: 46px;
  background: rgba(5, 11, 20, 0.96);
  border-color: rgba(123, 204, 255, 0.42);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.map-modal__head {
  margin-top: 0 !important;
  padding-right: 58px;
}

@media (max-width: 720px) {
  .map-modal {
    padding: 72px 14px 14px !important;
  }

  .map-modal__dialog {
    max-height: calc(100vh - 90px);
    padding-top: 26px;
  }

  .map-modal__close {
    top: 12px !important;
    right: 12px !important;
  }

  .map-modal__head {
    padding-right: 44px;
  }
}
