* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0b141f;
  color: #e7ecf2;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}
::selection { background: #c9992f; color: #0b141f; }
a { color: #d8ad55; text-decoration: none; transition: color .2s ease; }
a:hover { color: #f0c878; }

@keyframes pulseLine { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #f7f4ee;
  margin: 0;
  line-height: 1.25;
}
.kicker {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8ad55;
  margin-bottom: 14px;
}
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn--gold { background: #d8ad55; color: #1a1305; }
.btn--gold:hover { color: #1a1305; background: #e6bd68; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(216,173,85,0.3); }
.btn--outline { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #f3f0ea; }
.btn--outline:hover { color: #fff; border-color: rgba(216,173,85,0.5); background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(11,20,31,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__title { line-height: 1.1; }
.header__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #f3f0ea;
  margin-bottom: 4px;
}
.header__role {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa0b5;
}
.header__nav { display: flex; align-items: center; gap: 22px; }
.header__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: #f3f0ea; letter-spacing: 0.01em; }
.header__phone-icon { flex-shrink: 0; transition: transform .25s ease; }
.header__phone:hover .header__phone-icon { transform: rotate(-10deg); }

/* HERO */
.hero {
  position: relative;
  padding: 80px 6vw 90px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  background: radial-gradient(ellipse 900px 500px at 85% 10%, rgba(216,173,85,0.08), transparent), #0b141f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(216,173,85,0.35);
  border-radius: 20px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8ad55;
  margin-bottom: 26px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.12;
  margin: 0 0 24px;
  color: #f7f4ee;
  max-width: 640px;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #b7c2d1;
  max-width: 560px;
  margin: 0 0 36px;
}
.stats { display: flex; gap: 22px; margin-bottom: 40px; flex-wrap: wrap; }
.stats__num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: #d8ad55;
}
.stats__label { font-size: 13px; color: #8fa0b5; }
.stats__divider { width: 1px; background: rgba(255,255,255,0.12); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__frame {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(216,173,85,0.3);
  border-radius: 6px;
  transition: border-color .4s ease;
}
.hero__media:hover .hero__frame { border-color: rgba(216,173,85,0.65); }
.hero__photo-wrap {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.hero__photo {
  width: 100%;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  transition: transform .5s ease, filter .5s ease;
}
.hero__media:hover .hero__photo {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.06);
}
.hero__pulse {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #0e1b2a;
  border: 1px solid rgba(216,173,85,0.35);
  padding: 14px 20px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hero__pulse svg { display: block; animation: pulseLine 2.4s ease-in-out infinite; }

/* VALUE */
.value { padding: 76px 6vw; background: #0e1b2a; }
.value__quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.55;
  color: #f0ede6;
  font-weight: 600;
}

/* CREDENTIALS */
.credentials {
  padding: 90px 6vw;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  background: #0b141f;
}
.credentials__desc { color: #b7c2d1; font-size: 16px; line-height: 1.7; }

.grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.tile {
  background: #101c2b;
  padding: 28px 26px;
  transition: background-color .25s ease, transform .25s ease;
  position: relative;
}
.tile:hover { background: #17293c; transform: translateY(-3px); }
.tile__title { font-family: 'Playfair Display', serif; font-size: 15px; color: #d8ad55; margin-bottom: 8px; }
.tile__text { font-size: 14px; line-height: 1.6; color: #b7c2d1; }

.tile--service { padding: 30px 24px; min-height: 150px; }
.tile__num { font-family: 'Playfair Display', serif; font-size: 22px; color: #3a4a5e; margin-bottom: 14px; transition: color .25s ease; }
.tile--service:hover .tile__num { color: #d8ad55; }
.tile__service { font-size: 14.5px; line-height: 1.55; color: #dbe2ea; font-weight: 600; }

/* SERVICES */
.services {
  padding: 90px 6vw;
  background: #0e1b2a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* PROCESS */
.process { padding: 90px 6vw; background: #0b141f; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.step { position: relative; padding-top: 18px; }
.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(216,173,85,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #d8ad55;
  margin-bottom: 18px;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.step:hover .step__num { background: #d8ad55; color: #1a1305; border-color: #d8ad55; transform: scale(1.08); }
.step__title { font-size: 15px; font-weight: 700; color: #f0ede6; margin-bottom: 8px; }
.step__desc { font-size: 13.5px; line-height: 1.6; color: #8fa0b5; }

/* GUARANTEES */
.guarantees {
  padding: 80px 6vw;
  background: linear-gradient(180deg, #101c2b, #0e1b2a);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.guarantees__item { text-align: center; transition: transform .25s ease; }
.guarantees__item:hover { transform: translateY(-3px); }
.guarantees__item:hover .guarantees__title { color: #f0c878; }
.guarantees--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.guarantees--2 .guarantees__item:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 30px;
}
.guarantees--2 .guarantees__item:last-child { padding-left: 30px; }
.guarantees__title { font-family: 'Playfair Display', serif; font-size: 20px; color: #d8ad55; margin-bottom: 10px; transition: color .25s ease; }
.guarantees__text { font-size: 14px; line-height: 1.6; color: #b7c2d1; }

/* FAQ */
.faq { padding: 90px 6vw; background: #0b141f; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: padding-left .25s ease; }
.faq__item:hover { padding-left: 10px; }
.faq__q { font-size: 17px; font-weight: 700; color: #f0ede6; margin-bottom: 10px; transition: color .25s ease; }
.faq__item:hover .faq__q { color: #d8ad55; }
.faq__a { font-size: 14.5px; line-height: 1.65; color: #9aa7b8; }

/* PRICING */
.pricing {
  padding: 70px 6vw;
  background: #0e1b2a;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.pricing__text { max-width: 700px; margin: 0 auto 14px; font-size: 16px; line-height: 1.7; color: #c7d1dd; }
.pricing__press { font-size: 16px; color: #8fa0b5; }

/* CONTACT */
.contact {
  padding: 100px 6vw;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(216,173,85,0.1), transparent), #0b141f;
  text-align: center;
}
.contact__title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #f7f4ee;
  margin: 0 0 18px;
  line-height: 1.25;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact__sub { color: #8fa0b5; font-size: 15px; margin: 0 0 40px; }
.contact__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }

/* FOOTER */
.footer {
  padding: 32px 6vw;
  background: #080d15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__name { font-size: 12.5px; color: #8fa0b5; }
.footer__copy { font-size: 12.5px; color: #5a6b80; }
.footer__dev { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: #5a6b80; }
.footer__dev:hover { color: #8fa0b5; }
.footer__dev-logo { height: 15px; width: auto; display: block; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto 40px; }
  .hero__title { font-size: 38px; }
  .credentials { grid-template-columns: 1fr; gap: 32px; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees { grid-template-columns: 1fr; }
  .guarantees--2 .guarantees__item:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-bottom: 30px;
  }
  .guarantees--2 .guarantees__item:last-child { padding-left: 0; }
}

@media (max-width: 640px) {
  .header { padding: 14px 4vw; }
  .header__brand svg { width: 34px; height: 34px; }
  .header__name { font-size: 15px; margin-bottom: 2px; }
  .header__role { font-size: 9.5px; }
  .header__nav { gap: 10px; }
  .header__phone { display: none; }
  .btn--sm { padding: 9px 14px; font-size: 12px; }
  .hero__title { font-size: 30px; }
  .h2 { font-size: 26px; }
  .grid--4 { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .contact__title { font-size: 26px; }
  .footer { justify-content: center; text-align: center; }
}
