/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #2D1F3D;
  background: #FDF6FF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B2D8E;
  background: rgba(123,45,142,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2D1F3D;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: #6B5878;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.text-gradient {
  background: linear-gradient(135deg, #7B2D8E 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #7B2D8E 0%, #9B4DCA 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,45,142,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,142,0.45);
}
.btn--ghost {
  background: rgba(255,255,255,0.7);
  color: #7B2D8E;
  border: 1.5px solid rgba(123,45,142,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: #7B2D8E;
}
.btn--outline {
  border: 1.5px solid #7B2D8E;
  color: #7B2D8E;
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn--outline:hover { background: rgba(123,45,142,0.08); }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,142,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(123,45,142,0.1); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2D1F3D;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #7B2D8E, #B8860B);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav__logo-text { font-style: italic; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3558;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav__links a:hover { color: #7B2D8E; background: rgba(123,45,142,0.06); }
.nav__cta {
  background: linear-gradient(135deg, #7B2D8E, #9B4DCA) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(123,45,142,0.3);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(123,45,142,0.4); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #2D1F3D;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 24px 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #FDF6FF 0%, #F5E6FF 40%, #FFF5E6 100%);
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.shape--1 {
  width: 500px; height: 500px;
  background: rgba(123,45,142,0.12);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape--2 {
  width: 350px; height: 350px;
  background: rgba(245,197,66,0.15);
  bottom: -50px; left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape--3 {
  width: 200px; height: 200px;
  background: rgba(123,45,142,0.08);
  top: 40%; left: 40%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(123,45,142,0.08);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B2D8E;
  background: rgba(123,45,142,0.08);
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #1A0F24;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.1rem;
  color: #5A4568;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 380px;
}
.stat-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(123,45,142,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(123,45,142,0.14); }
.stat-card--1 { transform: translateY(0); }
.stat-card--2 { transform: translateY(20px); }
.stat-card--3 { transform: translateY(40px); }
.stat-card:hover { transform: translateY(-4px) !important; }
.stat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(123,45,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D8E;
  flex-shrink: 0;
}
.stat-card--2 .stat-card__icon { background: rgba(245,197,66,0.2); color: #B8860B; }
.stat-card__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #8B7098; }
.stat-card__value { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #2D1F3D; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #7B2D8E;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 24px;
  background: #FDF6FF;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(123,45,142,0.06);
  border: 1px solid rgba(123,45,142,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(123,45,142,0.12); }
.service-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__overlay {
  position: absolute;
  top: 14px;
  right: 14px;
}
.service-card__tag {
  background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.service-card__body { padding: 28px; }
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__body h3 {
  font-size: 1.3rem;
  color: #2D1F3D;
  margin-bottom: 10px;
}
.service-card__body p {
  font-size: 0.95rem;
  color: #6B5878;
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 100px 24px;
  background: linear-gradient(180deg, #FDF6FF 0%, #FFF8F0 100%);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,45,142,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }

.gallery__cta { text-align: center; }

/* ─── ABOUT ─── */
.about { padding: 100px 24px; background: #fff; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__visual {
  position: relative;
  min-height: 560px;
}
.about__img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123,45,142,0.12);
}
.about__img-main img { width: 100%; height: 560px; object-fit: cover; }
.about__img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(123,45,142,0.15);
  border: 4px solid #fff;
}
.about__img-float img { width: 260px; height: 200px; object-fit: cover; }
.about__badge {
  position: absolute;
  top: -16px;
  left: 20px;
  background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(123,45,142,0.3);
}
.about__content .section-tag { margin-bottom: 14px; }
.about__content .section-title { margin-bottom: 20px; }
.about__text {
  font-size: 1rem;
  color: #5A4568;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(123,45,142,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature strong {
  display: block;
  font-size: 0.95rem;
  color: #2D1F3D;
  margin-bottom: 2px;
}
.feature span {
  font-size: 0.88rem;
  color: #6B5878;
  line-height: 1.5;
}

/* ─── PROCESS ─── */
.process {
  padding: 100px 24px;
  background: linear-gradient(160deg, #F5E6FF 0%, #FFF5E6 100%);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(123,45,142,0.2), rgba(245,197,66,0.3), rgba(123,45,142,0.2));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7B2D8E, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.step__dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #7B2D8E, #9B4DCA);
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 4px rgba(123,45,142,0.15);
}
.step h3 {
  font-size: 1.15rem;
  color: #2D1F3D;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: #6B5878;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── FAQ ─── */
.faq { padding: 100px 24px; background: #FDF6FF; }
.faq__grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(123,45,142,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(123,45,142,0.07); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #2D1F3D;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-item__q:hover { color: #7B2D8E; }
.faq-item__toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(123,45,142,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D8E;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item.active .faq-item__toggle { transform: rotate(45deg); background: rgba(123,45,142,0.15); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-item__a { max-height: 200px; }
.faq-item__a p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: #6B5878;
  line-height: 1.7;
}

/* ─── CONTACT ─── */
.contact { padding: 100px 24px; background: linear-gradient(160deg, #FFF8F0 0%, #FDF6FF 100%); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 16px; }
.contact__text {
  font-size: 1rem;
  color: #5A4568;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(123,45,142,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #2D1F3D;
  margin-bottom: 3px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.92rem;
  color: #6B5878;
  line-height: 1.6;
}
.contact-detail a:hover { color: #7B2D8E; text-decoration: underline; }
.contact__form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(123,45,142,0.08);
  border: 1px solid rgba(123,45,142,0.06);
}
.contact-form__title {
  font-size: 1.5rem;
  color: #2D1F3D;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A3558;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(123,45,142,0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #2D1F3D;
  background: rgba(253,246,255,0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #7B2D8E;
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B8A0C4; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(123,45,142,0.06);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #5A4568;
}
.form-success strong { color: #7B2D8E; }

/* ─── MAP ─── */
.map-section { background: #FDF6FF; }
.map-section__wrap { border-radius: 0; overflow: hidden; }

/* ─── FOOTER ─── */
.footer {
  background: #1A0F24;
  color: #D4B8E8;
  padding: 64px 24px 0;
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand .nav__logo-mark { background: linear-gradient(135deg, #9B4DCA, #F5C542); }
.footer__brand .nav__logo-text { color: #fff; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; color: #A888B8; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5C542;
  margin-bottom: 6px;
}
.footer__links a {
  font-size: 0.9rem;
  color: #A888B8;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: #F5C542; }
.footer__hours { display: flex; flex-direction: column; gap: 8px; }
.footer__hours strong {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5C542;
  margin-bottom: 6px;
}
.footer__hours span { font-size: 0.9rem; color: #A888B8; }
.footer__hours .btn--outline { border-color: #F5C542; color: #F5C542; width: fit-content; margin-top: 8px; }
.footer__hours .btn--outline:hover { background: rgba(245,197,66,0.1); }
.footer__bottom {
  border-top: 1px solid rgba(212,184,232,0.12);
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #7B6090;
}

/* ─── REVEAL ANIMATIONS ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; min-height: auto; }
  .stat-card { flex: 1; min-width: 160px; transform: none !important; }
  .stat-card:hover { transform: translateY(-4px) !important; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { min-height: 400px; }
  .about__img-main img { height: 400px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(123,45,142,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 32px rgba(123,45,142,0.08);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { width: 100%; text-align: center; padding: 12px; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; }
  .gallery-item img { height: 220px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__card { padding: 32px; }
  .hero__headline { font-size: clamp(2rem, 7vw, 2.8rem); }
}
@media (max-width: 480px) {
  .hero { padding: 90px 16px 60px; }
  .hero__card { padding: 24px; border-radius: 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; }
  .stat-card { transform: none !important; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: auto; }
}
