:root {
  --black: #070707;
  --black-2: #0d0d0d;
  --black-3: #171717;
  --gold: #f4b000;
  --gold-light: #ffd45a;
  --gold-dark: #b57800;
  --white: #ffffff;
  --off: #f5f3ef;
  --muted: #a6a6a6;
  --line: rgba(255,255,255,.1);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { font-size: 14px; letter-spacing: .04em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; color: white; font-weight: 950; letter-spacing: .09em; }
.brand img { width: 49px; height: 49px; object-fit: cover; border-radius: 12px; background: white; }
.nav { display: flex; align-items: center; gap: 28px; color: #d2d2d2; font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 18px; background: var(--gold); color: #080808; }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #060606; box-shadow: 0 10px 28px rgba(244,176,0,.22); }
.btn-primary:hover { box-shadow: 0 16px 36px rgba(244,176,0,.33); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--black); color: white; }
.btn.full { width: 100%; }
.phone-icon { font-size: 20px; margin-right: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(244,176,0,.12), transparent 32%),
    linear-gradient(115deg, #050505 0%, #101010 55%, #060606 100%);
  color: white;
  min-height: 720px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; padding: 92px 0 90px; }
.hero-copy { max-width: 710px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow span { width: 34px; height: 3px; border-radius: 10px; background: var(--gold); }
.eyebrow.dark { color: #6e4b00; }
.hero h1 { margin: 18px 0 20px; font-size: clamp(44px, 5.6vw, 76px); line-height: .99; letter-spacing: -.055em; font-weight: 950; }
.hero h1 strong { color: var(--gold); font-weight: 950; }
.hero-lead { max-width: 680px; margin: 0; color: #d4d4d4; font-size: 21px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats { margin-top: 48px; display: flex; align-items: center; gap: 22px; }
.stat { display: flex; flex-direction: column; gap: 5px; }
.stat-value { font-size: 20px; font-weight: 950; color: white; }
.stat-label { font-size: 12px; color: #989898; text-transform: uppercase; letter-spacing: .08em; }
.stat-separator { width: 1px; height: 42px; background: rgba(255,255,255,.14); }

.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.logo-card {
  position: relative;
  width: min(490px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  background: white;
  padding: 24px;
  box-shadow: 0 34px 100px rgba(0,0,0,.5);
  transform: rotate(1.2deg);
  overflow: hidden;
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244,176,0,.35);
  border-radius: 27px;
  pointer-events: none;
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; }
.logo-card-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 9px 13px;
  background: #080808;
  color: var(--gold);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}
.commission-card {
  position: absolute;
  z-index: 5;
  right: -10px;
  bottom: 44px;
  width: 190px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(11,11,11,.96);
  box-shadow: var(--shadow);
  border-radius: 22px;
  transform: rotate(-4deg);
}
.commission-card span, .commission-card small { display: block; }
.commission-card span { color: #a5a5a5; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.commission-card strong { display: block; font-size: 66px; line-height: 1; color: var(--gold); letter-spacing: -.06em; margin: 4px 0 8px; }
.commission-card small { color: #cfcfcf; }

.trust-strip { background: var(--gold); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { min-height: 130px; padding: 28px 34px; display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; align-content: center; border-right: 1px solid rgba(0,0,0,.14); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { grid-row: 1 / 3; font-size: 12px; font-weight: 950; opacity: .46; padding-top: 4px; }
.trust-grid strong { font-size: 17px; }
.trust-grid small { margin-top: 4px; color: rgba(0,0,0,.64); font-size: 13px; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading h2, .manager-panel h2, .contact-box h2 { margin: 15px 0 14px; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading h2 strong { color: #c78d00; }
.section-heading p { margin: 0; font-size: 18px; line-height: 1.6; color: #666; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { min-height: 310px; padding: 34px; background: white; border: 1px solid #e6e2db; border-radius: var(--radius); box-shadow: 0 14px 44px rgba(25,20,10,.05); }
.info-card.featured { background: var(--black); color: white; border-color: var(--black); }
.card-number { color: var(--gold); font-size: 62px; line-height: 1; font-weight: 950; letter-spacing: -.06em; }
.card-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 17px; background: #f3ead2; color: #9f6d00; font-size: 27px; font-weight: 900; }
.info-card h3 { margin: 34px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.info-card p { margin: 0; color: #6f6f6f; line-height: 1.7; }
.info-card.featured p { color: #c9c9c9; }
.info-card.featured p strong { color: var(--gold-light); }

.manager-section { position: relative; overflow: hidden; background: var(--black); color: white; padding: 105px 0; }
.manager-section::after { content: "7%"; position: absolute; right: -40px; bottom: -110px; font-size: 360px; line-height: 1; font-weight: 950; color: rgba(255,255,255,.025); letter-spacing: -.1em; }
.manager-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: stretch; }
.manager-panel { padding: 10px 45px 10px 0; }
.manager-panel h2 { max-width: 760px; }
.manager-panel > p { margin: 0; max-width: 680px; color: #c4c4c4; font-size: 19px; line-height: 1.6; }
.manager-panel > p strong { color: var(--gold); }
.manager-steps { margin-top: 38px; display: grid; gap: 14px; }
.manager-step { display: flex; gap: 16px; align-items: center; }
.manager-step span { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #070707; font-weight: 950; }
.manager-step p { margin: 0; color: #e4e4e4; }
.manager-cta { align-self: center; padding: 38px; background: white; color: var(--black); border-radius: 28px; box-shadow: var(--shadow); }
.mini-label { color: #916400; font-size: 11px; font-weight: 950; letter-spacing: .15em; }
.manager-cta h3 { margin: 10px 0 10px; font-size: 34px; letter-spacing: -.035em; }
.manager-cta p { color: #666; line-height: 1.6; }
.manager-cta small { display: block; margin-top: 14px; color: #999; text-align: center; }

.contact-section { padding: 70px 0 90px; background: var(--off); }
.contact-box { padding: 52px 58px; border-radius: 30px; background: linear-gradient(130deg, #ffd667, #f3ad00); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-box h2 { margin-bottom: 8px; }
.contact-box p { margin: 0; max-width: 600px; color: rgba(0,0,0,.64); font-size: 17px; }
.contact-actions { min-width: 300px; display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.phone-big { text-align: center; font-size: 28px; font-weight: 950; letter-spacing: -.02em; }

footer { background: #050505; color: white; padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: cover; background: white; border-radius: 11px; }
.footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand span { color: #8e8e8e; font-size: 13px; }
.footer-note { display: flex; gap: 22px; color: #8e8e8e; font-size: 13px; }

.floating-call { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 74px 0; }
  .hero-visual { min-height: 430px; }
  .logo-card { width: min(470px, 90%); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.14); min-height: 104px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .manager-grid { grid-template-columns: 1fr; }
  .manager-panel { padding-right: 0; }
  .manager-cta { max-width: 620px; }
  .contact-box { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; min-width: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 38px; font-size: 9px; letter-spacing: .06em; }
  .topbar a { font-size: 12px; }
  .nav-wrap { height: 68px; gap: 14px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 14px; }
  .btn-small { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding: 58px 0 68px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { align-items: stretch; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-stats .stat:last-child { grid-column: 1 / -1; }
  .stat-separator { display: none; }
  .hero-visual { min-height: 340px; }
  .logo-card { width: 90%; border-radius: 24px; padding: 12px; }
  .commission-card { right: 0; bottom: 0; width: 150px; padding: 17px; }
  .commission-card strong { font-size: 52px; }
  .logo-card-badge { top: 14px; left: 14px; font-size: 8px; }
  .section { padding: 76px 0; }
  .section-heading h2, .manager-panel h2, .contact-box h2 { font-size: 38px; }
  .manager-section { padding: 78px 0; }
  .manager-cta { padding: 28px 24px; }
  .contact-section { padding: 48px 0 72px; }
  .contact-box { padding: 34px 24px; border-radius: 24px; }
  .phone-big { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { flex-direction: column; gap: 6px; }
  body { padding-bottom: 72px; }
  .floating-call {
    position: fixed;
    z-index: 100;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #050505;
    box-shadow: 0 12px 38px rgba(0,0,0,.38);
    font-weight: 950;
  }
  .floating-call span { font-size: 22px; }
}
