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

:root {
  --navy: #132C4F;
  --cream: #EFDABB;
  --accent: #1F4E79;
  --light-bg: #F8F6F2;
  --text: #1A1A1A;
  --red: #C62828;
  --border: #E5E5E5;
  --white: #ffffff;
  --green: #2E7D32;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(19,44,79,.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-link img {
  height: 56px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -.5px;
}

.logo-text .tagline {
  font-family: 'Lora', serif;
  font-size: 11px;
  color: #666;
  letter-spacing: .5px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}

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

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background .2s, color .2s !important;
}

.nav-phone:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: .3s;
}

.mobile-menu {
  display: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0b1f38 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 32px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 90% at 80% 35%, rgba(31, 78, 121, 0.8) 0%, transparent 60%),
              radial-gradient(ellipse 70% 80% at 15% 75%, rgba(31, 78, 121, 0.36) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--cream);
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hero-sub mark {
  background: none;
  font-size: clamp(28px, 4vw, 42px);
  color: #c94b4c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.hero-sub-br {
  display: block;
}

@media (max-width: 1196px) {
  .hero-sub-br {
    display: none;
  }
}
.hero-tagline {
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.hero-spacer {
  flex: 1;
}

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

.hero-cta {
  height: 55.2px;
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(239,218,187,.3);
}

.hero-cta:hover {
  background: #dfc89a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239,218,187,.4);
}

.hero-cta-call {
  height: 55.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.35);
  transition: background .2s, border-color .2s, transform .2s;
}

.hero-cta-call:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.hero-cta-call .call-icon {
  font-size: 18px;
  animation: ring 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: top center;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  5%  { transform: rotate(15deg); }
  10% { transform: rotate(-12deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-8deg); }
  25% { transform: rotate(0deg); }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  justify-content: center;
}

.hero-logo-wrap {
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero-logo-wrap img {
  width: 260px;
  height: auto;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 36px;
}

.hero-metric {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.hero-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.hero-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #1F4E79;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
  will-change: color;
}

.hero-metric-num span {
  color: #8EA9C1;
  font-size: 28px;
}

.hero-metric-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-metrics-desktop {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 32px;
}

.hero-metrics-mobile {
  display: none;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-desc {
  margin-top: 16px;
  color: #555;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* SERVICES COMPACT */
.services-compact {
  padding: 70px 32px;
  background: var(--white);
}

.services-compact-inner {
  max-width: 960px;
  margin: 0 auto;
}

.dual-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; /* расстояние между карточками */
  margin-top: 36px;
}

.panel {
  padding: 50px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  min-height: 320px;
  justify-content: center;

  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 44, 79, 0.92) 0%, rgba(19, 44, 79, 0.75) 50%, rgba(31, 78, 121, 0.85) 100%);
  z-index: -1;
  transition: background 0.3s ease;
}

.panel:hover::before {
  background: linear-gradient(135deg, rgba(19, 44, 79, 0.85) 0%, rgba(19, 44, 79, 0.6) 50%, rgba(31, 78, 121, 0.75) 100%);
}

.panel:hover {
  background-color: transparent;
}

.panel-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  position: relative;
  z-index: 2;
}

.panel h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.3px;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  position: relative;
  z-index: 2;
}

.panel .btn-primary {
  margin-top: 16px;
  position: relative;
  z-index: 2;
  background: var(--cream);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.panel .btn-primary:hover {
  background: var(--white);
  color: var(--navy);
}

.panel-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 28px 0;
}

/* FLOATING BUTTON */
.floating-book-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 320px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-book-btn.visible {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  
}

.btn-floating {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  gap: 8px;
  width: 100%;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  height: 55.2px;
  padding: 18px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(239, 218, 187, .3);
}

.btn-floating:hover {
  background: #dfc89a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239,218,187,.7);
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  margin-top: 2px;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background .2s, transform .2s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 70px 32px;
  background: var(--light-bg);
}

.how-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  z-index: 0;
}

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

.how-step-num {
  width: 80px;
  height: 80px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--light-bg);
  box-shadow: 0 0 0 4px var(--navy);
}

.how-step-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.how-step-icon svg {
  width: 32px;
  height: 32px;
  color: #1F4E79;
}
.how-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.how-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* GALLERY */

.gallery {
  padding: 70px 32px;
}

.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-section {
  margin-bottom: 40px;
}

.gallery-section:last-child {
  margin-bottom: 0;
}

.gallery-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.slide {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%); /* остаётся как placeholder пока грузится */
  position: relative;
  margin: 0 10px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(19,44,79,.6), transparent);
  z-index: 1;
}

.slide-caption {
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 2px solid var(--navy) !important;
  background: transparent !important;
  color: var(--navy) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.owl-carousel .owl-nav button span {
  font-size: 22px;
  line-height: 1;
  display: block;
  margin-top: -2px;
}

.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.owl-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  border-radius: 50% !important;
  transition: background .2s !important;
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
  background: var(--navy) !important;
}

/* REVIEWS */
.reviews {
  padding: 70px 32px;
  background: var(--light-bg);
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(19,44,79,.06);
  position: relative;
  margin: 0 10px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.review-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
}

.review-text {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
}

.google-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #888;
  letter-spacing: .5px;
}

.google-g {
  font-size: 14px;
  font-weight: 900;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

/* SERVICE AREA */
.service-area {
  padding: 70px 32px;
}

.area-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.map-placeholder {
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  position: relative;
  overflow: hidden;
  /*background: url("./assets/images/map1.png");*/
  background-size: cover;
  background-position: center;
}

.map-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.map-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.area-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.area-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.city-chip {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  transition: background .2s, border-color .2s;
}

.city-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.city-chip span {
  font-size: 16px;
}

/* PAGE HERO (для формы) */
.page-hero {
  background: var(--navy);
  padding: 60px 32px 66px;
  text-align: center;
}

.page-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  letter-spacing: -1px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--cream);
}

.page-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  margin-top: 14px;
}

/* SCHEDULE SECTION (форма обратной связи) */
.schedule-section {
  padding: 0px 0px 48px;
  margin-top: -16px;
}

@media (min-width: 900px) {
  .schedule-section {
    padding: 48px 0px 48px;
    background: var(--light-bg);
  }
}

.schedule-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(19,44,79,.10);
  padding: 48px 44px;
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 32px;
}

/* STEP BLOCKS (для формы) */
.form-step {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.form-step.step-active {
  border-color: var(--navy);
  box-shadow: 0 2px 16px rgba(19,44,79,.10);
}

.form-step.step-done {
  border-color: #c8e6c9;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background .2s;
}

.step-header:hover {
  background: var(--light-bg);
}

.form-step.step-active .step-header {
  cursor: default;
}

.form-step.step-active .step-header:hover {
  background: var(--white);
}

/* Стили для номеров шагов в форме - ИСХОДНЫЕ из CSS формы */
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--border);
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.form-step.step-active .step-num {
  background: var(--navy);
  color: var(--white);
}

.form-step.step-done .step-num {
  background: var(--green);
  color: var(--white);
}

.step-title-wrap {
  flex: 1;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
}

.step-summary {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.step-chevron {
  margin-left: auto;
  font-size: 16px;
  color: #aaa;
  transition: transform .3s, opacity .3s;
  opacity: 0;
}

.form-step.step-done .step-chevron {
  opacity: 1;
}

.form-step.step-done.step-collapsed .step-chevron {
  transform: rotate(-90deg);
}

.step-body {
  padding: 0 20px 20px;
  display: block;
}

.form-step.step-collapsed .step-body {
  display: none;
}

/* INPUTS */
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(19,44,79,.08);
}

.form-input.filled {
  border-color: var(--green);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* TYPE TOGGLE */
.type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.type-btn {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: all .2s;
}

.type-btn:hover {
  border-color: var(--navy);
}

.type-btn.active {
  border-color: var(--navy);
  background: var(--navy);
}

.type-btn .type-icon {
  font-size: 28px;
  margin-bottom: 6px;
  display: block;
}

.type-btn .type-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.type-btn.active .type-name {
  color: var(--white);
}

.type-btn .type-desc {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}

.type-btn.active .type-desc {
  color: rgba(255,255,255,.65);
}

/* SELECT GRID */
.select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.select-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  color: var(--navy);
  transition: all .2s;
}

.select-btn:hover {
  border-color: var(--navy);
  background: var(--light-bg);
}

.select-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* DATE GRID */
.date-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.date-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
}

.date-btn:hover {
  border-color: var(--navy);
}

.date-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.d-day {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.d-num {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
}

.d-mon {
  font-size: 10px;
  opacity: .7;
}

/* TIME GRID */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.time-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: all .2s;
}

.time-btn:hover {
  border-color: var(--navy);
  background: var(--light-bg);
}

.time-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.step-divider {
  height: 8px;
}

.company-wrap {
  margin-top: 0;
  padding-top: 0;
}

.submit-wrap {
  margin-top: 28px;
}

.progress-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  border-radius: 100px;
  transition: width .4s;
}

.progress-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
  transition: background .2s, transform .2s, opacity .2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* SIDEBAR */
.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(19,44,79,.08);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.sidebar-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-item-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  display: block;
}
.sidebar-item-text a {
  font-size: 13px;
  color: var(--navy);
  outline: none !important;
  text-decoration: none !important;
}

.sidebar-item-text span {
  font-size: 13px;
  color: #666;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  background: var(--light-bg);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: popIn .35s ease;
}

@keyframes popIn {
  from {
    transform: scale(.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-check-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.35s ease;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}

.modal-check-circle svg {
  width: 36px;
  height: 36px;
  display: block;
}

.modal-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-close {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

/* SUCCESS SCREEN */
.success-wrap {
  text-align: center;
  padding: 16px 0;
}

.success-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(19,44,79,.25);
}

.success-circle svg {
  width: 36px;
  height: 36px;
  display: block;
}

.success-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-wrap p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.success-detail-box {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
  font-size: 14px;
  color: var(--text);
}

.success-detail-box div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.success-detail-box div:last-child {
  border-bottom: none;
}

.success-detail-box .lbl {
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}

.success-note {
  font-size: 12px !important;
  color: #aaa !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-wrap {
  animation: fadeUp .4s ease;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}

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

.footer-logo img {
  height: 56px;
  opacity: .9;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  margin-top: 4px;
  opacity: .7;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.footer-credit {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .3px;
}

.footer-credit a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-credit a:hover {
  color: var(--cream);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp .7s ease both;
}

.hero h1 { animation-delay: .2s; }
.hero-sub { animation-delay: .3s; }
.hero-tagline { animation-delay: .4s; }
.hero-spacer { animation: none; }
.hero-cta-group { animation-delay: .5s; }
.hero-metrics-mobile { animation-delay: .6s; }
.hero-visual { animation: fadeUp .9s .3s ease both; }

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* AUTOCOMPLETE STYLES */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
  box-shadow: 0 0 0px 1000px var(--white) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  border-color: var(--green) !important;
  background-color: var(--white) !important;
}

input.form-input,
textarea.form-input {
  background-color: var(--white);
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
  border-color: var(--navy) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--white) inset, 0 0 0 3px rgba(19,44,79,.08) !important;
  box-shadow: 0 0 0px 1000px var(--white) inset, 0 0 0 3px rgba(19,44,79,.08) !important;
}

input:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0px 1000px var(--white) inset !important;
  border-color: var(--green) !important;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .schedule-inner {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 80px 0 0;
    background: var(--white);
    padding: 32px 20px;
    gap: 24px;
    z-index: 1000;
    overflow-y: auto;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 80px 20px 70px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta, .hero-cta-call {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-spacer {
    display: none;
  }

  .hero-tagline {
    margin-bottom: 24px;
  }

  .hero-metrics-desktop {
    display: none !important;
  }

  .hero-metrics-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 0px solid rgba(255,255,255,.12);
    padding-top: 36px;
    margin-top: 8px;
  }

  .hero-metric {
    padding: 0 4px;
  }

  .hero-metric-num {
    font-size: 26px;
  }

  .hero-metric-num span {
    font-size: 20px;
  }

  .hero-metric-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .services, .how-it-works, .gallery, .reviews, .service-area {
    padding: 70px 20px;
  }

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .area-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-credit {
    margin-bottom: 55px;
  }

  .floating-book-btn {
    display: none;
  }

  .panel-icon {
    font-size: 60px;
  }

  .services-compact {
    padding: 50px 20px;
  }

  .dual-panels {
    grid-template-columns: 1fr;
  }

  .panel-divider {
    width: auto;
    height: 1px;
    margin: 0 28px;
    background: rgba(255,255,255,0.15);
  }

  .panel {
    padding: 24px 20px;
  }

  .panel p {
    max-width: 100%;
  }

  .form-card {
    padding: 28px 20px;
  }
  
  .sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-metrics-mobile {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-metric {
    padding: 0 2px;
  }

  .hero-metric::after {
    display: none;
  }

  .hero-metric-num {
    font-size: 22px;
  }

  .hero-metric-num span {
    font-size: 18px;
  }

  .hero-metric-label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .date-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .time-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== УНИВЕРСАЛЬНАЯ ТЕКСТОВАЯ СЕКЦИЯ ========== */
.text-section {
      font-family: 'Lora', Georgia, serif;
      padding: 80px 32px;
      background: var(--white);
      color: var(--text);
    }

    .text-section-inner {
      max-width: 880px;
      margin: 0 auto;
    }

    /* Стили для заголовков */
    .text-section-inner h1,
    .text-section-inner h2,
    .text-section-inner h3,
    .text-section-inner h4,
    .text-section-inner h5,
    .text-section-inner h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
      margin-top: 1.5em;
      margin-bottom: 0.75em;
    }

    .text-section-inner h1:first-child,
    .text-section-inner h2:first-child,
    .text-section-inner h3:first-child {
      margin-top: 0;
    }

    .text-section-inner h1 {
      font-size: clamp(32px, 5vw, 48px);
      text-align: center;
      margin-bottom: 0.5em;
    }

    .text-section-inner h2 {
      font-size: clamp(26px, 4vw, 36px);
      border-bottom: 2px solid var(--cream);
      padding-bottom: 12px;
    }

    .text-section-inner h3 {
      font-size: clamp(22px, 3.5vw, 28px);
      font-weight: 700;
      margin-top: 1.75em;
      margin-bottom: 0.5em;
    }

    .text-section-inner h4 {
      font-size: 20px;
      font-weight: 600;
    }

    /* Стили для параграфов */
    .text-section-inner p {
      font-family: 'Lora', Georgia, serif;
      font-size: 17px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 1.25em;
    }

    /* Стили для списков */
    .text-section-inner ul,
    .text-section-inner ol {
      margin: 1.25em 0;
      padding-left: 1.75em;
      font-family: 'Lora', Georgia, serif;
      font-size: 17px;
      line-height: 1.8;
      color: var(--text-light);
    }

    .text-section-inner li {
      margin-bottom: 0.5em;
    }

    .text-section-inner li ul,
    .text-section-inner li ol {
      margin: 0.5em 0 0.5em 1.5em;
    }

    /* Стили для strong и bold */
    .text-section-inner strong,
    .text-section-inner b {
      font-weight: 700;
      color: var(--navy);
    }

    /* Стили для ссылок */
    .text-section-inner a {
      color: var(--accent);
      text-decoration: underline;
      transition: color 0.2s ease;
    }

    .text-section-inner a:hover {
      color: var(--navy);
      text-decoration: none;
    }

    /* Стили для даты и контактной информации */
    .text-section-inner p:first-of-type strong {
      display: inline-block;
      min-width: 120px;
    }

    /* Разделительная линия для даты */
    .text-section-inner hr {
      margin: 2em 0;
      border: none;
      height: 1px;
      background: var(--border);
    }

    /* Цитаты */
    .text-section-inner blockquote {
      border-left: 4px solid var(--accent);
      padding-left: 1.5em;
      margin: 1.5em 0;
      font-style: italic;
      color: var(--navy);
      font-size: 18px;
    }

    /* Кодовые блоки */
    .text-section-inner code {
      background: var(--light-bg);
      padding: 2px 6px;
      border-radius: 4px;
      font-family: monospace;
      font-size: 0.9em;
    }

    .text-section-inner pre {
      background: var(--light-bg);
      padding: 16px;
      border-radius: 8px;
      overflow-x: auto;
      margin: 1.5em 0;
    }

/* Таблицы */
.text-section-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.text-section-content th,
.text-section-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.text-section-content th {
  background: var(--light-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.dark-bg .text-section-content th {
  background: rgba(255, 255, 255, 0.1);
}

/* Кодовые блоки */
.text-section-content code {
  background: var(--light-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.dark-bg .text-section-content code {
  background: rgba(255, 255, 255, 0.1);
}

.text-section-content pre {
  background: var(--light-bg);
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
}

.dark-bg .text-section-content pre {
  background: rgba(255, 255, 255, 0.1);
}

/* Кнопка внутри контента */
.text-section-content .btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.text-section-content .btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.text-section-content .btn-light {
  background: var(--cream);
  color: var(--navy);
}

.text-section-content .btn-light:hover {
  background: #dfc89a;
}

/* Медиа-вставки */
.text-section-content iframe,
.text-section-content video {
  max-width: 100%;
  border-radius: 12px;
}

/* ========== КАРТОЧКИ/ГРИДЫ ДЛЯ НОВОСТЕЙ ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin: 48px 0 32px;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.dark-bg .news-card {
  background: rgba(255, 255, 255, 0.05);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 24px;
}

.news-card-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.dark-bg .news-card-date {
  color: var(--cream);
}

.news-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.dark-bg .news-card-title {
  color: var(--white);
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 16px;
}

.dark-bg .news-card-excerpt {
  color: rgba(255, 255, 255, 0.7);
}

.news-card-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.dark-bg .news-card-link {
  color: var(--cream);
}

.news-card-link:hover {
  text-decoration: underline;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 768px) {
  .text-section {
    padding: 60px 20px;
  }

  .text-section-content {
    font-size: 16px;
  }

  .text-section-content h2 {
    font-size: 22px;
  }

  .text-section-content h3 {
    font-size: 19px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .text-section {
    padding: 48px 16px;
  }

  .text-section-content {
    font-size: 15px;
  }
}