/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-accent { color: #c9a84c; }

/* ===== HEADING PATTERN ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 4px;
  color: #c9a84c; margin-bottom: 14px;
}
.section-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: #1a1a2e; text-transform: uppercase;
  letter-spacing: 1px;
}
.heading-separator {
  width: 104px; height: 3px; background: #c9a84c; margin: 20px auto 24px;
}
.heading-separator--left { margin-left: 0; margin-right: auto; }
.section-desc { margin-top: 20px; font-size: 1.05rem; color: #555; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 30px; cursor: pointer; transition: all .3s;
}
.btn--accent { background: #c9a84c; color: #fff; }
.btn--accent:hover { background: #b8953e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
.btn--outline { background: transparent; border: 2px solid #1a1a2e; color: #1a1a2e; }
.btn--outline:hover { background: #1a1a2e; color: #fff; }
.btn--sm { padding: 10px 24px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: .95rem; }
.btn--full { width: 100%; }

/* ===== SPLASH SCREEN ===== */
.splash {
  position: relative; width: 100%; height: 100vh;
  background: #0a0a1a; overflow: hidden;
}
.splash__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: transform .4s ease, box-shadow .3s;
}
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 50px; width: auto; object-fit: contain; }
.header__nav { display: flex; gap: 24px; }
.header__link {
  font-family: 'Oswald', sans-serif; font-size: .85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; color: #555; transition: color .2s; position: relative;
  white-space: nowrap;
}
.header__link:hover { color: #c9a84c; }
.header__link::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #c9a84c; transition: width .3s; }
.header__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header__phone { font-weight: 600; font-size: .9rem; white-space: nowrap; }
.header__phone i { color: #c9a84c; margin-right: 4px; }
.header__burger { display: none; flex-direction: column; gap: 5px; background: none; cursor: pointer; padding: 4px; }
.header__burger span { width: 24px; height: 2px; background: #1a1a2e; border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  background: url('https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?w=1600&q=80') center/cover no-repeat;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(26,26,46,.55) 100%); }
.hero__inner {
  position: relative; z-index: 1; width: 100%; padding-top: 120px; padding-bottom: 48px;
  flex: 1; display: flex; align-items: center;
}
.hero__content { max-width: 700px; }
.hero__title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 2px;
}
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__buttons .btn--outline { border-color: rgba(255,255,255,.4); color: #fff; }
.hero__buttons .btn--outline:hover { background: #fff; color: #1a1a2e; border-color: #fff; }

/* Hero promo banner */
.hero__promo {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: rgba(201,168,76,.15); backdrop-filter: blur(10px);
  padding: 20px 36px; margin: 0 0;
  color: #fff; border-left: 4px solid #c9a84c;
}
.hero__promo-badge { background: #c9a84c; padding: 6px 16px; font-family: 'Oswald', sans-serif; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #fff; border-radius: 30px; white-space: nowrap; }
.hero__promo-text { flex: 1; font-size: 1.05rem; min-width: 200px; }

/* Hero counters full-width strip */
.hero__counters {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__counter {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 16px;
  transition: background .3s;
  background: rgba(26,26,46,.85); backdrop-filter: blur(12px);
}
.hero__counter:nth-child(even) {
  background: rgba(201,168,76,.9);
}
.hero__counter:hover { opacity: .9; }
.hero__counter-icon { font-size: 1.3rem; color: #c9a84c; }
.hero__counter:nth-child(even) .hero__counter-icon { color: #1a1a2e; }
.hero__counter-info { display: flex; flex-direction: column; align-items: center; }
.hero__counter-num-group { display: flex; align-items: baseline; gap: 2px; }
.hero__counter-number {
  font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.hero__counter:nth-child(even) .hero__counter-number { color: #1a1a2e; }
.hero__counter-suffix {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500;
  color: #c9a84c;
}
.hero__counter:nth-child(even) .hero__counter-suffix { color: #1a1a2e; }
.hero__counter-label { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .5px; line-height: 1.2; text-align: center; }
.hero__counter:nth-child(even) .hero__counter-label { color: rgba(26,26,46,.6); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #f8f8fa; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  overflow: hidden; background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.05); transition: all .4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.service-card__img-wrap { position: relative; height: 260px; overflow: hidden; }
.service-card__img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.service-card:hover .service-card__img { transform: scale(1.08); }
.service-card__backdrop {
  position: absolute; inset: 0; background: rgba(26,26,46,0);
  transition: background .4s;
}
.service-card:hover .service-card__backdrop { background: rgba(26,26,46,.4); }
.service-card__icon-circle {
  position: absolute; bottom: 16px; left: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #c9a84c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 2;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  transition: transform .3s;
}
.service-card:hover .service-card__icon-circle { transform: scale(1.1); }
.service-card__body { padding: 32px 28px 28px; }
.service-card__title { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.service-card__text { font-size: .95rem; color: #666; margin-bottom: 16px; line-height: 1.7; }
.service-card__price { font-family: 'Oswald', sans-serif; font-weight: 600; color: #c9a84c; font-size: 1.1rem; letter-spacing: .5px; }

/* ===== PORTFOLIO ===== */
.portfolio { padding: 100px 0; }
.portfolio__filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.portfolio__filter {
  padding: 10px 24px; font-family: 'Oswald', sans-serif;
  font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  background: #f0f0f0; color: #555; cursor: pointer; transition: all .3s; border: none;
}
.portfolio__filter.active, .portfolio__filter:hover { background: #1a1a2e; color: #fff; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  position: relative; overflow: hidden; height: 380px; cursor: pointer;
}
.portfolio-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.portfolio-card:hover .portfolio-card__img { transform: scale(1.08); }
.portfolio-card__overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,11,.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  transition: background .4s;
}
.portfolio-card:hover .portfolio-card__overlay { background: linear-gradient(0deg, rgba(10,10,11,.95) 0%, rgba(10,10,11,.3) 100%); }
.portfolio-card__title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.portfolio-card__meta { display: flex; gap: 16px; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.portfolio-card__price { font-family: 'Oswald', sans-serif; font-weight: 600; color: #c9a84c; font-size: 1.05rem; }
.portfolio-card__location { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 4px; }
.portfolio__more { text-align: center; margin-top: 48px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 100px 0; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.cta-banner__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-banner__badge { display: inline-block; background: rgba(201,168,76,.15); color: #c9a84c; padding: 8px 20px; font-family: 'Oswald', sans-serif; font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.cta-banner__title { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.cta-banner__text { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: #f8f8fa; }
.process__timeline { max-width: 740px; margin: 0 auto; position: relative; }
.process__timeline::before { content:''; position: absolute; left: 36px; top: 0; bottom: 0; width: 2px; background: #e0e0e0; }
.process__step { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.process__step:last-child { margin-bottom: 0; }
.process__step-num {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%;
  background: #1a1a2e; color: #c9a84c; display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; z-index: 1;
}
.process__step-body h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; margin-top: 8px; }
.process__step-body p { color: #666; font-size: .95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__text { font-size: 1.05rem; color: #555; margin-bottom: 16px; line-height: 1.7; }
.about__stats { display: flex; gap: 40px; margin-top: 32px; }
.about__stat-num { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: #c9a84c; display: block; line-height: 1; }
.about__stat-label { font-size: .8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about__image img { width: 100%; height: 480px; object-fit: cover; }

/* ===== PARTNERS ===== */
.partners { padding: 80px 0; background: #f8f8fa; }
.partners__marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 0 0 8px 0;
}
.partners__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 32px;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  min-width: 140px; height: 64px;
  background: #fff;
  font-family: 'Oswald', sans-serif; font-weight: 500; color: #999;
  font-size: .95rem; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid #eee; border-radius: 8px;
  margin: 8px 0; box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: all .3s; padding: 0 18px; white-space: nowrap;
}
.partner-logo:hover { border-color: #c9a84c; color: #c9a84c; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; }
.reviews__slider { display: block; overflow: hidden; }
.review-card {
  padding: 36px; background: #f8f8fa;
  border-left: 3px solid transparent; transition: all .4s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); border-left-color: #c9a84c; }
.review-card__stars { color: #c9a84c; font-size: .9rem; margin-bottom: 16px; display: flex; gap: 4px; }
.review-card__text { font-size: 1rem; color: #444; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #1a1a2e; color: #c9a84c;
  display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: .9rem;
  flex-shrink: 0;
}
.review-card__name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: .95rem; text-transform: uppercase; letter-spacing: .5px; }
.review-card__role { font-size: .8rem; color: #999; }

/* ===== CONTACTS ===== */
.contacts { padding: 100px 0; background: #f8f8fa; }
.contacts__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contacts__item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contacts__item i { width: 44px; height: 44px; background: #1a1a2e; color: #c9a84c; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contacts__label { font-family: 'Oswald', sans-serif; font-size: .75rem; color: #999; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 2px; }
.contacts__item a:hover { color: #c9a84c; }
.contacts__socials { display: flex; gap: 12px; margin-top: 20px; }
.contacts__socials a {
  width: 48px; height: 48px; background: #1a1a2e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all .3s;
}
.contacts__socials a:hover { background: #c9a84c; transform: translateY(-3px); }
.contacts__form-wrap { background: #fff; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.contacts__form-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.contacts__form input, .contacts__form textarea {
  width: 100%; padding: 14px 18px; border: 1px solid #e0e0e0;
  margin-bottom: 16px; font-size: .95rem; transition: border-color .3s; background: #fafafa;
}
.contacts__form input:focus, .contacts__form textarea:focus { border-color: #c9a84c; background: #fff; outline: none; }
.contacts__form-note { font-size: .8rem; color: #999; text-align: center; margin-top: 12px; }
.contacts__form-note a { color: #c9a84c; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #0a0a0b; color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { height: 48px; width: 48px; object-fit: contain; margin-bottom: 12px; }
.footer__brand-name { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.footer__brand-desc { font-size: .9rem; line-height: 1.6; }
.footer__links h4 { font-family: 'Oswald', sans-serif; color: #fff; font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer__links a, .footer__links span { display: block; margin-bottom: 10px; font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: #c9a84c; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: .85rem; }
.footer__bottom a:hover { color: #c9a84c; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.modal__content {
  position: relative; background: #fff; padding: 48px; max-width: 440px; width: 90%;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.modal__close { position: absolute; top: 16px; right: 20px; font-size: 2rem; background: none; cursor: pointer; color: #999; }
.modal__close:hover { color: #1a1a2e; }
.modal__title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.modal__desc { color: #777; font-size: .95rem; margin-bottom: 24px; }
.modal__form input {
  width: 100%; padding: 14px 18px; border: 1px solid #e0e0e0;
  margin-bottom: 16px; font-size: .95rem; background: #fafafa;
}
.modal__form input:focus { border-color: #c9a84c; background: #fff; outline: none; }

/* ===== RESPONSIVE: TABLET 1024px ===== */
@media (max-width: 1024px) {
  .header__nav { gap: 16px; }
  .hero__counters { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ===== RESPONSIVE: TABLET 768px ===== */
@media (max-width: 768px) {
  .header__phone { display: none; }
  .header .btn--sm { display: none; }
  .header__burger { display: flex; }
  .header__nav {
    display: none; position: fixed; top: 54px; left: 0; right: 0; width: 100%;
    background: #fff; flex-direction: column; padding: 20px 24px; gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12); z-index: 999;
  }
  .header__nav.active { display: flex; }
  .header__inner { height: 54px; padding: 0 16px; }
  .header__logo-img { height: 34px; }

  .splash { height: 60vh; }
  .splash__img { height: 60vh; object-fit: cover; }

  .hero__inner { padding-top: 70px; padding-bottom: 24px; }
  .hero__title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .hero__subtitle { font-size: .95rem; margin-bottom: 24px; }
  .hero__buttons { flex-direction: column; gap: 10px; }
  .hero__buttons .btn { width: 100%; }
  .hero__promo { flex-direction: column; text-align: center; padding: 16px 20px; gap: 12px; }
  .hero__counters { grid-template-columns: repeat(2, 1fr); }
  .hero__counter { padding: 16px 12px; gap: 10px; }
  .hero__counter-number { font-size: 1.6rem; }

  .services { padding: 60px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card__img-wrap { height: 200px; }
  .service-card__body { padding: 20px 20px 18px; }

  .portfolio { padding: 60px 0; }
  .portfolio__filters { gap: 6px; margin-bottom: 24px; }
  .portfolio__grid { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-card { height: 220px; }
  .portfolio-card__overlay { padding: 16px; }
  .portfolio-card__title { font-size: 1rem; }
  .portfolio__more { margin-top: 24px; }

  .cta-banner { padding: 60px 0; }

  .process { padding: 60px 0; }
  .process__timeline { max-width: 100%; }
  .process__timeline::before { left: 22px; }
  .process__step { gap: 20px; margin-bottom: 32px; }
  .process__step-num { width: 44px; height: 44px; font-size: .9rem; flex-shrink: 0; }
  .process__step-body h3 { font-size: 1rem; margin-top: 4px; }
  .process__step-body p { font-size: .9rem; }

  .about { padding: 60px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 24px; }
  .about__image img { height: 220px; }
  .about__stats { gap: 20px; margin-top: 20px; flex-wrap: wrap; }
  .about__stat-num { font-size: 2rem; }

  .partners { padding: 40px 0; }
  .partner-logo { min-width: 100px; height: 44px; font-size: .75rem; padding: 0 10px; }

  .reviews { padding: 60px 0; }

  .contacts { padding: 60px 0; }
  .contacts__inner { grid-template-columns: 1fr; gap: 32px; }
  .contacts__form-wrap { padding: 24px 20px; }

  .footer { padding: 48px 0 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 0; font-size: .8rem; }

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

/* ===== RESPONSIVE: MOBILE 480px ===== */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .header__inner { height: 48px; padding: 0 12px; }
  .header__logo-img { height: 28px; }
  .header__nav { top: 48px; }

  .splash, .splash__img { height: 45vh; }

  .hero__inner { padding-top: 60px; }
  .hero__title { font-size: 1.3rem; }
  .hero__subtitle { font-size: .85rem; }
  .hero__counters { grid-template-columns: repeat(2, 1fr); }
  .hero__counter { padding: 12px 8px; }
  .hero__counter-number { font-size: 1.4rem; }
  .hero__counter-icon { font-size: 1rem; }

  .service-card__img-wrap { height: 160px; }
  .about__image img { height: 160px; }
  .about__stats { gap: 12px; }
  .about__stat-num { font-size: 1.6rem; }

  .portfolio-card { height: 180px; }

  .footer__grid { grid-template-columns: 1fr; gap: 20px; }
  .footer__logo { height: 36px; width: 36px; }
}
