:root {
  --black: #050505;
  --black-2: #12100c;
  --white: #fffdf8;
  --gold: #c9972e;
  --gold-2: #f4d780;
  --gold-dark: #8b6312;
  --text: #15120d;
  --muted: #706656;
  --line: rgba(201, 151, 46, 0.24);
  --shadow: 0 24px 70px rgba(53, 38, 9, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    url("data:image/svg+xml,%3Csvg width='1200' height='760' viewBox='0 0 1200 760' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-80 95C70 32 170 152 320 98s226 0 365-52 265 23 565-55' stroke='%23c9972e' stroke-width='2' opacity='.32'/%3E%3Cpath d='M-80 210C72 142 173 274 322 214s226 5 366-52 260 24 562-48' stroke='%23f4d780' stroke-width='1.4' opacity='.58'/%3E%3Cpath d='M-80 335C75 266 178 399 330 336s226 3 368-56 260 25 555-52' stroke='%23c9972e' stroke-width='2' opacity='.26'/%3E%3Cpath d='M-80 480C73 404 176 546 330 480s229 8 370-59 260 27 555-50' stroke='%23f4d780' stroke-width='1.4' opacity='.54'/%3E%3Cpath d='M-80 632C74 558 178 691 331 633s228 2 370-57 260 25 555-50' stroke='%23c9972e' stroke-width='2' opacity='.29'/%3E%3C/g%3E%3C/svg%3E"),
    var(--white);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 44px rgba(40, 28, 7, .12);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { display: block; width: 64px; height: 50px; overflow: hidden; border-radius: 8px; background: #000; border: 1px solid rgba(201,151,46,.34); }
.brand-logo img { width: 126px; height: 84px; object-fit: cover; object-position: 14% 40%; }
.brand strong, .brand small { display: block; text-transform: uppercase; }
.brand strong { font-size: .98rem; font-weight: 900; letter-spacing: .16em; }
.brand small { margin-top: 3px; color: var(--gold-dark); font-size: .72rem; font-weight: 800; letter-spacing: .38em; }
.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a { padding: 10px 12px; border-radius: 8px; font-size: .9rem; font-weight: 900; }
.site-nav a:hover { background: rgba(244,215,128,.36); }
.nav-cta { color: #fff; background: var(--black); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #000; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 78px;
}
.rating { display: inline-flex; gap: 10px; align-items: center; margin-bottom: 20px; color: var(--gold); font-weight: 900; }
.rating span { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.25rem, 8vw, 7.4rem); line-height: .92; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 5vw, 4.5rem); line-height: 1; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.18rem; }
.hero-copy p, .section p, .contact p, .footer p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.hero-copy > p { max-width: 650px; font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.hero-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-dark);
  background: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 900;
}
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 8px; font-weight: 900; }
.primary { color: #fff; background: linear-gradient(135deg, #050505, #2e230f 52%, var(--gold)); box-shadow: 0 18px 36px rgba(53,38,9,.22); }
.light { color: var(--black); background: #fff; }
.hero-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: 22px;
  overflow: hidden;
  align-content: center;
  border: 1px solid rgba(201,151,46,.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5,5,5,.96), rgba(43,32,13,.9)),
    url("data:image/svg+xml,%3Csvg width='520' height='420' viewBox='0 0 520 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-34 67C45 21 103 100 183 62s133 8 214-28 141 15 272-33' stroke='%23c9972e' stroke-width='2' opacity='.35'/%3E%3Cpath d='M-36 169C46 119 105 202 187 160s134 8 216-31 141 18 272-30' stroke='%23f4d780' stroke-width='1.4' opacity='.46'/%3E%3Cpath d='M-36 286C48 235 107 320 188 277s135 9 217-31 141 18 271-29' stroke='%23c9972e' stroke-width='2' opacity='.32'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: var(--shadow);
}
.logo-frame {
  display: grid;
  min-height: 286px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(244,215,128,.22);
  border-radius: 8px;
  background: linear-gradient(90deg, #000 50%, #fff 50%);
}
.logo-frame img {
  display: block;
  width: min(100%, 390px);
  height: auto;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.hero-metrics article {
  padding: 16px;
  border: 1px solid rgba(244,215,128,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.hero-metrics strong,
.hero-metrics span {
  display: block;
}
.hero-metrics strong {
  color: #fff;
  font-size: 1.6rem;
}
.hero-metrics span {
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: .84rem;
}
.rank-card { position: absolute; right: 18px; bottom: 18px; width: 150px; padding: 16px; border-radius: 8px; color: #fff; background: rgba(5,5,5,.86); border: 1px solid rgba(244,215,128,.35); backdrop-filter: blur(10px); }
.rank-card span { color: var(--gold-2); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.rank-card strong { display: block; font-size: 2rem; line-height: 1; margin: 8px 0; }
.rank-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.3; }

.section, .contact, .footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 78px 0; }
.eyebrow { margin: 0 0 12px; color: var(--gold-dark); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.intro { border-top: 1px solid var(--line); }
.advantage-grid, .step-grid, .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.advantage-grid article, .step-grid article, .team-grid article, details {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 44px rgba(53,38,9,.08);
}
.advantage-grid small {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,151,46,.2);
  color: #5f533f;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}
.advantage-grid span, .step-grid span { display: inline-grid; width: 46px; height: 46px; place-items: center; margin-bottom: 26px; border-radius: 8px; color: #fff; background: var(--black); font-weight: 900; }

.services-detail {
  padding-top: 24px;
}
.services-detail .section-head {
  max-width: 880px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.detail-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,248,221,.78));
  box-shadow: 0 16px 44px rgba(53,38,9,.08);
}
.detail-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 1.05rem;
}
.detail-grid strong::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.difference, .pricing {
  position: relative;
  color: #fff;
  padding: 86px 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5,5,5,.97), rgba(42,31,12,.94)),
    url("data:image/svg+xml,%3Csvg width='760' height='360' viewBox='0 0 760 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-44 64C53 19 124 96 223 58s161 8 260-29 173 16 332-36' stroke='%23c9972e' stroke-width='2.5' opacity='.38'/%3E%3Cpath d='M-46 156C54 111 126 190 226 150s162 10 262-31 171 19 330-34' stroke='%23f4d780' stroke-width='1.6' opacity='.46'/%3E%3Cpath d='M-44 249C56 203 130 282 228 241s163 11 262-32 171 19 329-34' stroke='%23c9972e' stroke-width='2.5' opacity='.34'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: var(--shadow);
}
.difference .eyebrow, .pricing .eyebrow { color: var(--gold-2); }
.difference h2, .pricing h2 { color: #fff; }
.difference .section-head {
  max-width: 840px;
}
.difference .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.price-grid article { padding: 26px; border: 1px solid rgba(244,215,128,.25); border-radius: 8px; background: rgba(255,255,255,.08); }
.plan { color: var(--gold-2); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-grid p, .price-grid li { color: rgba(255,255,255,.72); }
.ba-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}
.search-panel {
  padding: 20px;
  border: 1px solid rgba(244,215,128,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.after-panel {
  background: linear-gradient(135deg, rgba(201,151,46,.24), rgba(255,255,255,.08));
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.panel-top span {
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.panel-top small {
  color: rgba(255,255,255,.62);
  font-weight: 800;
}
.mock-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: #302717;
}
.mock-search span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 999px;
}
.mock-search p {
  margin: 0;
  color: #302717;
  font-size: .9rem;
  font-weight: 800;
}
.map-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(249,232,173,.94));
  box-shadow: inset 0 0 0 1px rgba(201,151,46,.18);
}
.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 48%, rgba(201,151,46,.3) 49%, rgba(201,151,46,.3) 51%, transparent 52%),
    linear-gradient(120deg, transparent 48%, rgba(5,5,5,.08) 49%, rgba(5,5,5,.08) 51%, transparent 52%),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(5,5,5,.05) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(5,5,5,.05) 57px);
  opacity: .8;
}
.pin {
  position: absolute;
  top: 42px;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px 999px 999px 0;
  color: #fff;
  font-weight: 900;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.pin::after {
  content: attr(class);
}
.pin {
  font-size: 0;
}
.pin::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.pin.gold-pin,
.pin.muted-pin {
  font-size: 1.1rem;
}
.pin.gold-pin { background: var(--gold); }
.pin.muted-pin { background: #5d564b; }
.pin.gold-pin::after { content: "3"; transform: rotate(45deg); }
.pin.muted-pin::after { content: "86"; transform: rotate(45deg); }
.listing {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(53,38,9,.16);
}
.listing strong,
.listing p,
.listing small {
  display: block;
}
.listing strong {
  margin-bottom: 4px;
}
.listing p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .9rem;
}
.listing small {
  color: #6a5d45;
  font-weight: 800;
  line-height: 1.45;
}
.listing.high {
  border: 2px solid rgba(201,151,46,.55);
}
.listing.low {
  opacity: .8;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.metric-grid div {
  padding: 14px;
  border: 1px solid rgba(244,215,128,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.metric-grid p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 800;
}
.metric-grid strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}
.ba-divider {
  display: grid;
  width: 74px;
  place-items: center;
}
.ba-divider span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(244,215,128,.34);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(5,5,5,.76);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.price-grid h3 { margin: 8px 0 4px; font-size: clamp(2.3rem, 5vw, 4rem); color: #fff; }
.price-grid ul { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.price-grid li::before { content: "✓"; margin-right: 10px; color: var(--gold-2); font-weight: 900; }
.price-grid .button { margin-top: 22px; }
.featured { background: linear-gradient(135deg, var(--gold), #7a560c) !important; }

.team { text-align: center; }
.team > p { max-width: 720px; margin-right: auto; margin-left: auto; }
.team-grid article strong, .team-grid article span { display: block; }
.team-grid article span { margin-top: 8px; color: var(--gold-dark); font-weight: 800; }
.faq { max-width: 900px; }
details { margin-top: 12px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin: 12px 0 0; }

.contact { margin-bottom: 56px; padding: 54px 32px; border-radius: 8px; text-align: center; background: linear-gradient(135deg, #fff, #fae8ad); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact p { max-width: 680px; margin-right: auto; margin-left: auto; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 28px 0 42px; border-top: 1px solid var(--line); }
.footer p { margin: 0; font-size: .9rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px; border-radius: 8px; background: rgba(255,255,255,.97); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .hero, .advantage-grid, .step-grid, .team-grid, .price-grid { grid-template-columns: 1fr; }
  .ba-stage { grid-template-columns: 1fr; }
  .ba-divider { width: 100%; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
}
@media (max-width: 620px) {
  .site-header, .hero, .section, .contact, .footer { width: min(100% - 20px, 1180px); }
  .brand small { letter-spacing: .22em; }
  h1 { font-size: clamp(3rem, 18vw, 4.8rem); }
  .hero { padding-top: 50px; }
  .hero-visual { min-height: 0; padding: 14px; }
  .logo-frame { min-height: 250px; }
  .rank-card { position: static; width: 100%; margin-top: 12px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
  .button { width: 100%; }
  .detail-grid { grid-template-columns: 1fr; }
}
