:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: #111111;
  --panel-2: #17130d;
  --line: rgba(244, 210, 119, .18);
  --text: #f7f1de;
  --muted: #bdb4a0;
  --muted-2: #8f8778;
  --gold: #e6b648;
  --gold-2: #f8dc7a;
  --gold-3: #8a621f;
  --danger: #ff6f61;
  --success: #8de6b3;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --radius: 24px;
  --max: 1180px;
}

* { 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(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 182, 72, .16), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(130, 90, 22, .18), transparent 28rem),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(230, 182, 72, .35); color: #fff; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.section-header { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-eyebrow, .eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
  margin-bottom: 10px;
}
h1, h2, h3, h4 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); letter-spacing: -.02em; }
p { color: var(--muted); margin: 0; }
.lead { font-size: clamp(1.06rem, 2vw, 1.28rem); color: #d9cfb9; }
.gold-text { color: var(--gold-2); }
.text-link { color: var(--gold-2); font-weight: 800; border-bottom: 1px solid rgba(248, 220, 122, .45); }
.text-link:hover { color: #fff; border-color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(244,210,119,.12);
  background: rgba(5, 5, 5, .76);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(5,5,5,.94); box-shadow: 0 16px 44px rgba(0,0,0,.35); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 5px 18px rgba(230,182,72,.25)); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1.06rem; letter-spacing: .02em; }
.brand small { color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: .64rem; margin-top: 5px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.main-nav a { padding: 10px 14px; color: #d8cfbb; font-weight: 700; font-size: .95rem; border-radius: 999px; transition: color .2s ease, background .2s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(230, 182, 72, .10); }
.nav-toggle { display: none; border: 1px solid var(--line); background: rgba(255,255,255,.04); width: 46px; height: 46px; border-radius: 50%; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--gold-2); margin: 4px auto; transition: transform .2s ease; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; letter-spacing: .01em; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #111; background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3)); box-shadow: 0 14px 34px rgba(230, 182, 72, .24); }
.btn-gold:hover { box-shadow: 0 18px 50px rgba(230, 182, 72, .36); }
.btn-outline { border-color: rgba(244,210,119,.35); color: var(--gold-2); background: rgba(255,255,255,.03); }
.btn-outline:hover { background: rgba(244,210,119,.08); border-color: rgba(244,210,119,.65); }
.btn-small { padding: 11px 17px; font-size: .92rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 84px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,210,119,.11);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.74) 48%, rgba(5,5,5,.28) 100%),
    url('../images/gold-pattern.svg') center / cover no-repeat;
  opacity: .9;
}
.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 210, 119, .22), transparent 62%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero-content { max-width: 720px; }
.hero-content .lead { margin-top: 24px; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-pill { border: 1px solid var(--line); color: #d8cfbb; background: rgba(255,255,255,.04); padding: 9px 13px; border-radius: 999px; font-size: .88rem; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 10% 2% 5%; background: radial-gradient(circle, rgba(230,182,72,.3), transparent 58%); filter: blur(18px); }
.bars-image { position: relative; z-index: 2; width: min(100%, 520px); margin-inline: auto; filter: drop-shadow(0 35px 55px rgba(0,0,0,.55)); transform: rotate(-1deg); }
.gold-stat-card {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 45px;
  width: min(280px, 86%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(12,12,12,.74);
  border: 1px solid rgba(244,210,119,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.gold-stat-card strong { display: block; font-size: 1.9rem; color: var(--gold-2); line-height: 1; }
.gold-stat-card span { color: var(--muted); font-size: .92rem; }

.page-hero {
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,210,119,.12);
  background: radial-gradient(circle at top right, rgba(230,182,72,.18), transparent 34rem), linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: url('../images/gold-pattern.svg') center / cover no-repeat; opacity: .18; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { margin-top: 16px; color: var(--muted); }
.breadcrumb a { color: var(--gold-2); font-weight: 800; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split.narrow { grid-template-columns: .9fr 1.1fr; }
.content-stack > * + * { margin-top: 22px; }
.image-frame {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,210,119,.18);
  border-radius: 36px;
  background: radial-gradient(circle at center, rgba(244,210,119,.16), transparent 58%), linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.image-frame::before { content: ""; position: absolute; inset: -1px; background: url('../images/gold-pattern.svg') center / cover; opacity: .12; }
.image-frame img { position: relative; z-index: 1; max-height: 380px; object-fit: contain; filter: drop-shadow(0 26px 42px rgba(0,0,0,.45)); }
.logo-panel img { max-height: 330px; }
.accent-box {
  padding: 26px;
  border: 1px solid rgba(244,210,119,.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(244,210,119,.10), rgba(255,255,255,.03));
}

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card, .service-card, .review-card, .contact-card, .faq-item {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(244,210,119,.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
  overflow: hidden;
}
.card::before, .service-card::before, .review-card::before, .contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #101010;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  font-weight: 950;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(230,182,72,.18);
}
.card h3, .service-card h3, .review-card h3 { margin-bottom: 12px; }
.card p, .service-card p, .review-card p { font-size: .98rem; }
.service-card { min-height: 100%; }
.service-card .service-number { color: rgba(248,220,122,.22); font-weight: 950; font-size: 3.4rem; line-height: .8; position: absolute; right: 22px; top: 22px; }
.service-card h3 { padding-right: 52px; }

.delivery-section { position: relative; overflow: hidden; }
.delivery-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(244,210,119,.2);
  background: linear-gradient(135deg, rgba(244,210,119,.12), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.delivery-panel img { border-radius: 28px; border: 1px solid rgba(244,210,119,.16); }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #d9cfb9; }
.check-list li::before { content: "✓"; flex: 0 0 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(230,182,72,.16); color: var(--gold-2); font-size: .86rem; font-weight: 900; }

.growth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.growth-item { display: flex; gap: 18px; padding: 22px; border: 1px solid rgba(244,210,119,.14); border-radius: 22px; background: rgba(255,255,255,.035); }
.growth-item span { flex: 0 0 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: #111; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); font-weight: 900; }
.growth-item h3 { margin-bottom: 8px; }

.reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card p { margin-bottom: 20px; color: #ddd0b6; }
.review-card strong { color: var(--gold-2); display: block; line-height: 1.35; }

.cta-band {
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(244,210,119,.2);
  background:
    linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.66)),
    url('../images/gold-pattern.svg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-band p { max-width: 680px; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.contact-list { display: grid; gap: 16px; }
.contact-card h3 { margin-bottom: 8px; color: var(--gold-2); }
.contact-card a { color: #f5ead0; font-weight: 700; }
.form-card { padding: 30px; border: 1px solid rgba(244,210,119,.18); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { color: #f5ead0; font-weight: 800; font-size: .94rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(244,210,119,.2);
  border-radius: 16px;
  background: rgba(3,3,3,.78);
  color: #fff;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(248,220,122,.72); box-shadow: 0 0 0 4px rgba(230,182,72,.12); background: rgba(0,0,0,.9); }
.form-note { color: var(--muted-2); font-size: .9rem; margin-top: 12px; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(141,230,179,.34); color: var(--success); background: rgba(141,230,179,.08); }
.form-status.is-error { color: var(--danger); border-color: rgba(255,111,97,.38); background: rgba(255,111,97,.08); }
.form-status.is-visible { display: block; }
.map-card { min-height: 360px; border-radius: 28px; border: 1px solid rgba(244,210,119,.18); background: url('../images/global-network.svg') center / cover no-repeat; display: flex; align-items: end; padding: 24px; box-shadow: var(--shadow); }
.map-card .accent-box { background: rgba(5,5,5,.72); backdrop-filter: blur(12px); }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 24px; border: 1px solid rgba(244,210,119,.16); border-radius: 24px; background: rgba(255,255,255,.035); }
.process-step::before { counter-increment: process; content: "0" counter(process); color: var(--gold-2); font-weight: 950; font-size: 2.1rem; display: block; margin-bottom: 12px; }

.faq-list { display: grid; gap: 14px; }
.faq-item summary { cursor: pointer; font-weight: 900; color: #f7f1de; list-style: none; display: flex; justify-content: space-between; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-2); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; }
.policy-content { max-width: 900px; margin-inline: auto; }
.policy-content h2 { margin-top: 42px; margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.policy-content ul { color: var(--muted); padding-left: 22px; }
.policy-content li + li { margin-top: 8px; }

.site-footer { padding-top: 74px; border-top: 1px solid rgba(244,210,119,.12); background: #030303; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1fr; gap: 34px; padding-bottom: 48px; }
.footer-logo { width: 146px; margin-bottom: 18px; filter: drop-shadow(0 8px 22px rgba(230,182,72,.18)); }
.footer-title { color: var(--gold-2); font-weight: 950; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: var(--muted); transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact p { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(244,210,119,.10); padding: 20px 0; color: var(--muted-2); display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .92rem; }
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }

.help-widget { position: fixed; right: 22px; bottom: 22px; z-index: 60; }
.help-toggle { border: 1px solid rgba(244,210,119,.34); color: #111; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); padding: 14px 18px; border-radius: 999px; font-weight: 950; box-shadow: 0 16px 46px rgba(0,0,0,.45); }
.help-panel { position: absolute; right: 0; bottom: 66px; width: min(330px, calc(100vw - 44px)); padding: 18px; border: 1px solid rgba(244,210,119,.22); border-radius: 22px; background: rgba(8,8,8,.94); box-shadow: var(--shadow); transform: translateY(8px); opacity: 0; pointer-events: none; transition: .22s ease; }
.help-widget.is-open .help-panel { transform: translateY(0); opacity: 1; pointer-events: auto; }
.help-panel h3 { font-size: 1.1rem; margin-bottom: 8px; }
.help-panel p { font-size: .92rem; margin-bottom: 14px; }
.help-panel .btn { width: 100%; }

[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid, .split, .split.narrow, .delivery-panel, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 430px; }
  .card-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 76px; flex-direction: column; align-items: stretch; gap: 6px; padding: 14px; border: 1px solid rgba(244,210,119,.18); border-radius: 22px; background: rgba(6,6,6,.97); box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .22s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { border-radius: 14px; }
  .nav-wrap { height: 76px; }
  .hero { padding: 62px 0; }
  .section { padding: 72px 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .98rem; }
  .brand small { font-size: .58rem; }
  h1 { font-size: clamp(2.35rem, 15vw, 4.2rem); }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .gold-stat-card { left: 50%; transform: translateX(-50%); bottom: 12px; }
  .card-grid, .card-grid.three, .card-grid.two, .reviews, .growth-grid, .process, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .delivery-panel, .cta-band { padding: 24px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .help-widget { right: 14px; bottom: 14px; }
}
