:root {
  --bg: #090c0d;
  --bg-deep: #060809;
  --surface: #101415;
  --surface-2: #141819;
  --surface-3: #171b1b;
  --accent: #c4a87f;
  --accent-light: #dec392;
  --accent-deep: #98764a;
  --accent-dark: #725737;
  --line: rgba(199, 169, 123, .42);
  --line-soft: rgba(255,255,255,.09);
  --text: #f4f2ed;
  --muted: #bebcb7;
  --shadow: 0 18px 48px rgba(0,0,0,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(196,168,127,.055), transparent 28%),
    radial-gradient(circle at 91% 23%, rgba(196,168,127,.035), transparent 30%),
    linear-gradient(180deg, #080b0c 0%, #0b0e0f 55%, #080a0b 100%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(rgba(255,255,255,.035) .55px, transparent .55px),
    linear-gradient(115deg, rgba(255,255,255,.018), transparent 45%);
  background-size: 4px 4px, 100% 100%;
  mix-blend-mode: soft-light;
}

a { color: inherit; text-decoration: none; }
a, button { transition: .22s ease; }
.container-xl { max-width: 1040px; }

.site-header {
  background: rgba(7, 10, 11, .96);
  border-bottom: 1px solid rgba(196,168,127,.18);
  backdrop-filter: blur(15px);
}
.header-inner { min-height: 72px; }
.navbar-brand { margin: 0; padding: 0; }
.brand-logo {
  display: block;
  width: 200px;
  height: 53px;
  object-fit: contain;
  object-position: left center;
}
.nav-gap { gap: 11px; }
.navbar .nav-link {
  color: #e5e3de;
  position: relative;
  padding: 25px 8px 23px !important;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--accent-light); }
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-light));
}
.btn-accent {
  border: 1px solid #d4b680;
  background: linear-gradient(180deg, #dec38e 0%, #b79158 100%);
  color: #16120c;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 7px 22px rgba(154,117,69,.2);
}
.btn-accent:hover,
.btn-accent:focus {
  color: #100c07;
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ead3a5 0%, #c6a36d 100%);
  border-color: #e3ca9b;
}
.header-order {
  min-width: 103px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.hero-section { padding: 17px 0 20px; }
.hero-section h1 {
  margin: 4px 0 13px;
  font-size: clamp(42px, 4.7vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 800;
}
.hero-section h1 span {
  color: var(--accent-light);
  background: linear-gradient(180deg, #ead3a4, #b99562);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section h2 {
  margin: 0 0 17px;
  color: var(--accent-light);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.25;
  font-weight: 700;
}
.hero-copy {
  max-width: 460px;
  margin: 0 0 22px;
  color: #d2d0ca;
  font-size: 15.5px;
  line-height: 1.48;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.icon-ring {
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  font-size: 26px;
}
.benefit-item > span:last-child {
  color: #f1efea;
  font-size: 12px;
  line-height: 1.35;
}
.hero-art {
  width: 100%;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.34));
}
.hero-image {
  width: 100%;
  display: block;
  object-fit: contain;
}

.content-section { padding: 18px 0; }
.feature-panel,
.cooperation-wrap,
.cta-panel {
  background: linear-gradient(145deg, rgba(18,22,22,.97), rgba(9,12,13,.98));
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.feature-panel { padding: 8px 10px 13px; }
.ornament-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: -1px 0 6px;
}
.ornament-heading span {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-deep));
}
.ornament-heading span:last-child { background: linear-gradient(90deg, var(--accent-deep), transparent); }
.ornament-heading h2 {
  margin: 0;
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 700;
}
.offer-item,
.choose-item {
  position: relative;
  text-align: center;
  padding: 11px 14px 14px;
}
.offer-item:not(:last-child)::after,
.choose-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: var(--line);
}
.offer-item i,
.choose-item i {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 44px;
  line-height: 1;
}
.offer-item h3,
.choose-item h3 {
  min-height: 38px;
  margin: 0 0 7px;
  color: #f6f4ee;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 600;
}
.offer-item p,
.choose-item p {
  max-width: 150px;
  margin: 0 auto;
  color: #b8b6b0;
  font-size: 11px;
  line-height: 1.45;
}
.choose-panel { padding-bottom: 10px; }
.choose-item { padding-top: 9px; }
.choose-item i { font-size: 48px; }
.choose-item h3 { min-height: auto; font-size: 14px; }
.choose-item p { max-width: 200px; }

.cooperation-wrap { padding: 0 10px 11px; }
.cooperation-title { margin-top: -16px; margin-bottom: 4px; }
.cooperation-title h2 {
  position: relative;
  padding: 0 10px;
  background: #0c1011;
}
.cooperation-card {
  position: relative;
  height: 100%;
  min-height: 247px;
  overflow: hidden;
  background: linear-gradient(180deg, #15191a, #0e1213);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.cooperation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(222,195,146,.72);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.card-image {
  height: 132px;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,168,127,.2);
}
.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.02);
}
.card-icon {
  position: absolute;
  top: 72px;
  left: 13px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  background: rgba(10,13,14,.94);
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  font-size: 25px;
}
.cooperation-card .card-body { padding: 11px 15px 12px; }
.cooperation-card h3 {
  margin: 0 0 5px;
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}
.cooperation-card p {
  min-height: 55px;
  margin: 0;
  color: #c2c0ba;
  font-size: 11px;
  line-height: 1.45;
}
.cooperation-card .card-body > a {
  position: absolute;
  right: 13px;
  bottom: 9px;
  color: var(--accent-light);
  font-size: 24px;
}
.cooperation-card .card-body > a:hover { transform: translateX(3px); color: #f0d7a7; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 17px;
}
.cta-intro {
  min-width: 325px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-symbol {
  width: 63px;
  height: 63px;
  flex: 0 0 63px;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  border: 1px dashed var(--accent-light);
  border-radius: 50%;
  font-size: 29px;
}
.cta-intro h2 {
  margin: 0 0 2px;
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 700;
}
.cta-intro p { margin: 0; color: #e2dfd8; font-size: 14px; }
.cta-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 9px;
  flex: 1;
}
.cta-action {
  min-height: 63px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(14,17,18,.75);
}
.cta-action:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.cta-action.primary {
  color: #16110a;
  border-color: #d8bc86;
  background: linear-gradient(180deg, #dfc68f, #b9925a);
}
.cta-action > i:first-child { color: var(--accent-light); font-size: 27px; }
.cta-action.primary > i:first-child { color: #1d170f; }
.cta-action > i:last-child { color: var(--accent-light); font-size: 22px; }
.cta-action.primary > i:last-child { color: #1d170f; }
.cta-action span { display: flex; flex-direction: column; line-height: 1.25; }
.cta-action strong { color: #f3f1eb; font-size: 11px; }
.cta-action small { color: #c7c4bd; font-size: 10px; }
.cta-action.primary strong,
.cta-action.primary small { color: #18130c; }

.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(196,168,127,.25);
  background: linear-gradient(180deg, #101415 0%, #0b0e0f 100%);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 1.05fr .8fr 1fr .9fr .65fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0 14px;
}
.footer-logo {
  display: block;
  width: 205px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-contact-col,
.footer-nav-col { display: grid; gap: 4px; }
.footer-contact-col { padding-left: 19px; border-left: 1px solid var(--line); }
.footer-contact-col a,
.footer-nav-col a {
  color: #c5c3bd;
  font-size: 10.5px;
}
.footer-contact-col a:hover,
.footer-nav-col a:hover { color: var(--accent-light); }
.footer-contact-col i { width: 22px; color: var(--accent-light); font-size: 15px; }
.footer-nav-col h3,
.footer-social-col h3 {
  margin: 0 0 4px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
}
.footer-social-links { display: flex; gap: 9px; }
.footer-social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  border: 1px solid var(--accent-deep);
  border-radius: 50%;
  font-size: 17px;
}
.footer-social-links a:hover { color: #0d0f0f; background: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0 14px;
  color: #9e9c97;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10.5px;
}
.footer-bottom div { display: flex; gap: 35px; }
.footer-bottom a:hover { color: var(--accent-light); }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
  .offer-item:nth-child(3)::after { display: none; }
  .offer-item:nth-child(-n+3) { border-bottom: 1px solid rgba(196,168,127,.18); }
  .cta-panel { flex-direction: column; align-items: stretch; }
  .cta-intro { min-width: 0; }
  .footer-main { grid-template-columns: 1.2fr 1fr repeat(3,.8fr); }
  .footer-social-col { grid-column: 5; }
}

@media (max-width: 991.98px) {
  .header-inner { min-height: 66px; }
  .brand-logo { width: 185px; height: 50px; }
  .navbar-collapse { padding: 8px 0 17px; }
  .navbar .nav-link { padding: 10px 0 !important; }
  .navbar .nav-link.active::after { display: none; }
  .header-order { margin: 8px 0 0 !important; }
  .hero-section { padding-top: 25px; }
  .hero-copy { max-width: none; }
  .hero-art { max-width: 720px; margin: 0 auto; }
  .offer-item:nth-child(3)::after { display: block; }
  .offer-item:nth-child(2)::after,
  .offer-item:nth-child(4)::after { display: none; }
  .offer-item:nth-child(-n+4) { border-bottom: 1px solid rgba(196,168,127,.18); }
  .choose-item:nth-child(2)::after { display: none; }
  .choose-item:nth-child(-n+2) { border-bottom: 1px solid rgba(196,168,127,.18); }
  .cta-actions { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
  .footer-brand-col { grid-column: span 1; }
  .footer-contact-col { grid-column: span 2; }
  .footer-social-col { grid-column: auto; }
}

@media (max-width: 767.98px) {
  body { font-size: 13px; }
  .container-xl { padding-left: 18px; padding-right: 18px; }
  .hero-section h1 { font-size: 42px; }
  .hero-benefits { gap: 11px; }
  .benefit-item { flex-direction: column; align-items: flex-start; gap: 7px; }
  .icon-ring { width: 48px; height: 48px; flex-basis: 48px; font-size: 23px; }
  .ornament-heading span { width: 38px; }
  .ornament-heading h2 { font-size: 18px; }
  .offer-item:nth-child(odd)::after { display: block; }
  .offer-item:nth-child(even)::after { display: none; }
  .offer-item:nth-child(-n+4) { border-bottom: 1px solid rgba(196,168,127,.18); }
  .offer-item h3 { font-size: 13px; }
  .cooperation-title { margin-top: -14px; }
  .cta-intro { align-items: flex-start; }
  .cta-symbol { width: 55px; height: 55px; flex-basis: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand-col,
  .footer-contact-col { grid-column: 1 / -1; }
  .footer-contact-col { padding-left: 0; padding-top: 12px; border-left: 0; border-top: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 479.98px) {
  .hero-section h1 { font-size: 36px; }
  .hero-section h2 { font-size: 16px; }
  .hero-copy { font-size: 14px; }
  .benefit-item > span:last-child { font-size: 10px; }
  .offer-item,
  .choose-item { padding-left: 8px; padding-right: 8px; }
  .offer-item i,
  .choose-item i { font-size: 38px; }
  .offer-item p,
  .choose-item p { font-size: 10px; }
  .cta-intro h2 { font-size: 17px; }
  .cta-intro p { font-size: 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-col,
  .footer-contact-col { grid-column: auto; }
}
