/* =========================================
   SD-NEIRO – Светлана Демидова, нейропсихолог
   ========================================= */

/* --- VARIABLES --- */
:root {
  --purple:      #7B6CAA;
  --purple-dark: #5D5189;
  --purple-light:#EBE8F4;
  --rose:        #C48B8B;
  --rose-light:  #F4EBEB;
  --cream:       #FAFAF7;
  --white:       #FFFFFF;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --border:      #E8E4F3;
  --shadow:      0 4px 24px rgba(123, 108, 170, 0.12);
  --shadow-lg:   0 12px 48px rgba(123, 108, 170, 0.18);
  --radius:      16px;
  --radius-lg:   24px;
  --transition:  0.3s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

.section-tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle { margin-bottom: 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn--primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 108, 170, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--outline:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--purple-dark);
  letter-spacing: -0.02em;
}
.logo span { color: var(--rose); }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--purple); background: var(--purple-light); }
.nav__link--cta {
  background: var(--purple);
  color: var(--white) !important;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 60%, var(--purple-light) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 100px);
}
.hero__tag {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text);
}
.hero__surname {
  color: var(--purple);
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__badges {
  display: flex;
  gap: 24px;
}
.hero__badge {
  display: flex;
  flex-direction: column;
}
.hero__badge strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.hero__badge span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero__photo {
  position: relative;
}
.hero__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__decor--1 {
  width: 120px;
  height: 120px;
  background: var(--rose-light);
  bottom: -30px;
  left: -40px;
  z-index: -1;
}
.hero__decor--2 {
  width: 80px;
  height: 80px;
  background: var(--purple-light);
  top: -20px;
  right: -20px;
  z-index: -1;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}
.about__photo {
  position: relative;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about__photo-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
}
.about__photo-card-emoji { font-size: 28px; flex-shrink: 0; }
.about__text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about__feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.about__feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.about__feature span {
  font-size: 14px;
  color: var(--text-muted);
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--1 { border-top: 4px solid var(--purple); }
.service-card--2 { border-top: 4px solid var(--rose); }
.service-card--3 { border-top: 4px solid #B5A8D4; }
.service-card--4 { border-top: 4px solid #D4A5A5; }
.service-card__icon { font-size: 40px; margin-bottom: 20px; }
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.service-card__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  flex: 1;
}
.service-card__list {
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.service-card--2 .service-card__list li::before { background: var(--rose); }
.service-card--3 .service-card__list li::before { background: #B5A8D4; }
.service-card--4 .service-card__list li::before { background: #D4A5A5; }
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: var(--transition);
}
.service-card__link:hover { color: var(--purple-dark); letter-spacing: 0.02em; }
.service-card--2 .service-card__link { color: var(--rose); }

/* =========================================
   HOW I WORK
   ========================================= */
.how {
  padding: 100px 0;
  background: var(--purple-dark);
  color: var(--white);
}
.how .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.how .section-title { color: var(--white); }
.how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.how__arrow {
  align-self: center;
}
.how__step {
  flex: 1;
  padding: 32px 24px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.how__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  margin-top: 40px;
  flex-shrink: 0;
}
.how__step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.how__step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.how__step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery__grid {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.03); }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__text h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact__messengers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.messenger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.messenger-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.messenger-btn--tg {
  background: #229ED9;
  color: var(--white);
}
.messenger-btn--tg:hover {
  background: #1a87bb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.35);
}
.messenger-btn--max {
  background: linear-gradient(135deg, #3D8FFF 0%, #7B52D6 100%);
  color: var(--white);
}
.messenger-btn--max:hover {
  background: linear-gradient(135deg, #2d7aee 0%, #6a43c2 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 82, 214, 0.4);
}
.messenger-btn__icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact__phone-wrap {
  font-size: 16px;
  color: var(--text-muted);
}
.contact__phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  margin-top: 4px;
}
.contact__phone:hover { color: var(--purple-dark); }
.contact__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
}
.contact__photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer .logo { color: var(--white); }
.footer__desc {
  font-size: 14px;
  margin-top: 8px;
  color: rgba(255,255,255,0.5);
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__socials a:hover { opacity: 0.85; }
.footer__social--tg {
  background: var(--white) !important;
  color: #2AABEE !important;
}
.footer__social--max {
  background: var(--white) !important;
  overflow: hidden;
  padding: 0;
}
.footer__social--max img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   DIPLOMAS
   ========================================= */
.diplomas {
  padding: 100px 0;
  background: var(--cream);
}
.diplomas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diplomas__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.diplomas__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.diplomas__item img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.4);
}
.diplomas__item:nth-child(2) img,
.diplomas__item:nth-child(5) img {
  filter: none;
}
.diplomas__item:nth-child(1) img,
.diplomas__item:nth-child(6) img {
  filter: brightness(1.6);
}
.diplomas__item:nth-child(3) img {
  filter: brightness(1.5);
}
.diplomas__note {
  margin-top: 32px;
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  user-select: none;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0 16px;
  user-select: none;
}
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* =========================================
   PRICING
   ========================================= */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing__list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pricing__item:last-child { border-bottom: none; }
.pricing__item:hover { background: var(--cream); }
.pricing__item--highlight { background: var(--purple-light); }
.pricing__item--highlight:hover { background: #ddd8f0; }
.pricing__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing__name strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.pricing__name span {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing__location {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--purple-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing__location p {
  margin: 0;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about__inner {
    grid-template-columns: 340px 1fr;
    gap: 48px;
  }
  .how__step-num { font-size: 36px; }
  .how__step-content h3 { font-size: 15px; }
  .how__step-content p { font-size: 13px; }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact__inner { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .burger { display: flex; }
  .header__inner { justify-content: flex-start; }
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
  }

  /* Hero */
  .hero {
    padding-top: 88px;
    padding-bottom: 60px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__photo { order: -1; max-width: 280px; margin: 0 auto; }
  .hero__photo-wrap { aspect-ratio: 3/4; }
  .hero__title { font-size: 36px; }
  .hero__badges { gap: 16px; }
  .hero__badge strong { font-size: 24px; }

  /* About */
  .about { padding: 60px 0; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__photo { max-width: 320px; margin: 0 auto; }
  .about__photo img { aspect-ratio: 3/4; }
  .about__photo-card { right: 0; bottom: -16px; }

  /* Services */
  .services { padding: 60px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }

  /* Diplomas */
  .diplomas { padding: 60px 0; }
  .diplomas__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Pricing */
  .pricing { padding: 60px 0; }
  .pricing__item { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 24px; }
  .pricing__price { font-size: 18px; }

  /* How */
  .how { padding: 60px 0; }
  .how__steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .how__arrow { display: none; }
  .how__step { padding: 20px 16px; }

  /* Gallery */
  .gallery { padding: 60px 0; }
  .gallery__grid { columns: 2; }

  /* CTA Banner */
  .cta-banner { padding: 60px 0; }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact { padding: 60px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__photo-wrap { min-height: 320px; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
  .hero__badges { flex-wrap: wrap; gap: 20px; }
  .gallery__grid { columns: 1; }
}
