﻿:root {
  --bg: #040911;
  --panel: #08131f;
  --line: rgba(255, 255, 255, 0.085);
  --yellow: #ffd200;
  --yellow-2: #f4bf00;
  --text: #f5f7fb;
  --muted: #b7c0cb;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  --container: 1360px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 78px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 52, 78, 0.24), transparent 30%),
    linear-gradient(180deg, #03070d 0%, #07111b 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 56px)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 78px;
  background: rgba(2, 7, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.logo-link { width: 190px; flex: 0 0 auto; }
.logo { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 42px; }
.main-nav a { position: relative; color: var(--text); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.main-nav a.active, .main-nav a:hover { color: var(--yellow); }
.main-nav a.active::after, .main-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 3px; background: var(--yellow); border-radius: 999px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 7px;
  color: #071018;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 14px 26px rgba(255, 199, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  gap: 13px;
}

.hero { padding: 30px 0 18px; }
.hero-inner { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; min-height: 32px; padding: 0 18px;
  border: 1px solid rgba(255, 210, 0, 0.18); border-radius: 999px; background: rgba(255, 210, 0, 0.03);
  color: var(--yellow); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.hero h1 { margin: 18px 0 10px; font-size: clamp(44px, 5.4vw, 68px); line-height: 0.98; text-transform: uppercase; }
.hero h1 span { color: var(--yellow); }
.hero-copy { margin: 0; color: #d7dee7; font-size: 19px; line-height: 1.42; }
.benefit-strip {
  margin: 34px auto 0; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 22px; align-items: start;
}
.benefit-item { text-align: center; }
.benefit-icon {
  width: 52px; height: 52px; margin: 0 auto 14px; color: var(--yellow); position: relative; display: block;
}
.benefit-icon.support::before { content: ""; position: absolute; inset: 10px 12px 10px 12px; border: 3px solid currentColor; border-radius: 18px 18px 12px 12px; }
.benefit-icon.support::after { content: ""; position: absolute; left: 4px; right: 4px; top: 16px; height: 20px; border: 3px solid currentColor; border-top: 0; border-radius: 0 0 14px 14px; }
.benefit-icon.team::before { content: ""; position: absolute; inset: 8px 11px; border: 3px solid currentColor; clip-path: polygon(50% 0, 90% 18%, 78% 100%, 22% 100%, 10% 18%); }
.benefit-icon.clock::before { content: ""; position: absolute; inset: 8px; border: 3px solid currentColor; border-radius: 50%; }
.benefit-icon.clock::after { content: ""; position: absolute; left: 25px; top: 14px; width: 3px; height: 14px; background: currentColor; box-shadow: 0 12px 0 0 currentColor; transform-origin: bottom; }
.benefit-icon.chat::before { content: ""; position: absolute; inset: 10px 11px 16px 10px; border: 3px solid currentColor; border-radius: 10px; }
.benefit-icon.chat::after { content: ""; position: absolute; left: 24px; bottom: 7px; width: 12px; height: 12px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; transform: rotate(-45deg); }
.benefit-icon.lock::before { content: ""; position: absolute; inset: 16px 10px 8px; border: 3px solid currentColor; border-radius: 8px; }
.benefit-icon.lock::after { content: ""; position: absolute; left: 16px; top: 6px; width: 20px; height: 16px; border: 3px solid currentColor; border-bottom: 0; border-radius: 14px 14px 0 0; }
.benefit-item h3 { margin: 0 0 7px; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.benefit-item p { margin: 0; color: #cfd7e1; font-size: 13px; line-height: 1.45; }

.contact-section { padding: 20px 0 30px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.contact-card {
  min-height: 590px; padding: 28px 28px 24px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(11, 19, 31, 0.96), rgba(7, 13, 21, 0.96)); box-shadow: var(--shadow);
}
.contact-card h2 { margin: 0 0 10px; font-size: 26px; line-height: 1.1; text-transform: uppercase; }
.contact-card h2 span { color: var(--yellow); }
.contact-card > p { margin: 0 0 24px; color: #c0cad5; font-size: 15px; line-height: 1.45; }
.contact-form { display: grid; gap: 12px; }
.row.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; background: rgba(10,18,30,0.72); color: var(--text); padding: 16px 18px; outline: none;
}
.contact-form textarea { min-height: 210px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #98a2ae; }
.submit-btn {
  min-height: 52px; border: 0; border-radius: 8px; background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%); color: #10161f;
  font-size: 13px; font-weight: 900; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.privacy-note { color: #c5ced8; font-size: 12px; line-height: 1.4; display: inline-flex; align-items: center; gap: 8px; }
.privacy-icon { width: 14px; height: 14px; flex: 0 0 auto; color: var(--yellow); }

.options-card { display: flex; flex-direction: column; gap: 0; }
.contact-list { display: grid; gap: 8px; margin-bottom: 20px; }
.contact-link {
  min-height: 66px; display: flex; align-items: center; gap: 14px; padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.07); background: rgba(10,18,30,0.72);
}
.contact-link strong { display: block; font-size: 14px; text-transform: uppercase; margin-bottom: 3px; }
.contact-link small { display: block; color: #d7dee7; font-size: 13px; }
.contact-link b { margin-left: auto; color: #d7dee7; font-size: 20px; font-weight: 400; }
.icon { width: 26px; height: 26px; color: var(--yellow); position: relative; flex: 0 0 auto; }
.icon.mail::before { content: ""; position: absolute; inset: 4px 1px 7px; border: 2.5px solid currentColor; border-radius: 3px; }
.icon.mail::after { content: ""; position: absolute; left: 4px; right: 4px; top: 8px; height: 2px; background: currentColor; transform: skewY(-22deg); box-shadow: 8px 0 0 currentColor, -8px 0 0 currentColor; }
.icon.whatsapp::before { content: ""; position: absolute; inset: 2px; border: 2.5px solid currentColor; border-radius: 50%; }
.icon.whatsapp::after { content: ""; position: absolute; left: 9px; bottom: 3px; width: 8px; height: 8px; border-left: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: rotate(-45deg); }
.icon.telegram::before { content: ""; position: absolute; left: 2px; right: 2px; top: 4px; bottom: 4px; background: currentColor; clip-path: polygon(8% 56%, 92% 4%, 62% 96%, 46% 62%, 26% 74%); }
.icon.clock::before { content: ""; position: absolute; inset: 2px; border: 2.5px solid currentColor; border-radius: 50%; }
.icon.clock::after { content: ""; position: absolute; left: 12px; top: 6px; width: 2px; height: 10px; background: currentColor; box-shadow: 4px 6px 0 0 currentColor; }
.social-card {
  margin-top: auto; padding: 18px 18px 16px; border-radius: 12px; border: 1px solid rgba(255, 210, 0, 0.42); background: linear-gradient(180deg, rgba(10,18,30,0.72), rgba(8,14,24,0.86));
}
.social-card h3 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; color: var(--yellow); }
.social-card p { margin: 0 0 16px; color: #d0d8e2; font-size: 14px; line-height: 1.45; }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); display: grid; place-items: center; }
.social-icon { width: 18px; height: 18px; color: #dbe1e8; position: relative; }
.social-icon.tg::before { content: ""; position: absolute; inset: 0; background: currentColor; clip-path: polygon(12% 42%, 88% 8%, 56% 92%, 44% 56%, 22% 66%); }
.social-icon.ig::before { content: ""; position: absolute; inset: 0; border: 2px solid currentColor; border-radius: 5px; }
.social-icon.ig::after { content: ""; position: absolute; left: 5px; top: 5px; width: 6px; height: 6px; border: 2px solid currentColor; border-radius: 50%; }
.social-icon.fb::before { content: "f"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 18px; font-weight: 800; }
.social-icon.yt::before { content: ""; position: absolute; inset: 2px 0; border-radius: 6px; border: 2px solid currentColor; }
.social-icon.yt::after { content: ""; position: absolute; left: 6px; top: 5px; border-left: 7px solid currentColor; border-top: 4px solid transparent; border-bottom: 4px solid transparent; }

.contact-cta {
  margin-top: 18px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, rgba(10,18,30,0.72), rgba(8,14,24,0.86));
}
.cta-left { display: flex; align-items: center; gap: 18px; }
.cta-icon { width: 52px; height: 52px; position: relative; color: var(--yellow); flex: 0 0 auto; }
.cta-icon::before { content: ""; position: absolute; inset: 11px 7px 16px; border: 3px solid currentColor; border-radius: 8px; }
.cta-icon::after { content: ""; position: absolute; left: 10px; top: 24px; width: 14px; height: 10px; border: 3px solid currentColor; border-top: 0; border-radius: 0 0 10px 10px; }
.cta-left h2 { margin: 0 0 4px; font-size: 26px; line-height: 1.06; text-transform: uppercase; }
.cta-left h2 span { color: var(--yellow); }
.cta-left p { margin: 0; color: #cfd6df; font-size: 14px; line-height: 1.45; }
.cta-btn.outline {
  min-width: 212px; min-height: 50px; padding: 0 20px; border-radius: 7px; border: 1px solid rgba(255,210,0,0.6); color: var(--yellow); display: inline-flex; align-items: center; justify-content: center; gap: 12px; text-transform: uppercase; font-size: 13px; font-weight: 800;
}
.cta-btn.outline span { font-size: 16px; }

.feature-strip {
  margin-top: 18px; padding: 18px 16px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 18, 29, 0.84);
}
.feature-item { text-align: center; }
.feature-item img { width: 54px; height: 54px; margin: 0 auto 12px; object-fit: contain; }
.feature-item h3 { margin: 0 0 7px; font-size: 14px; font-weight: 800; text-transform: uppercase; }
.feature-item p { margin: 0; color: #cfd7e1; font-size: 13px; line-height: 1.45; }

.site-footer {
  padding: 18px 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 66, 97, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(4, 10, 16, 0.96), rgba(2, 7, 12, 0.98));
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 1.28fr 0.72fr 0.82fr 1.18fr; gap: 34px; padding: 10px 0 24px; }
.footer-brand { padding-top: 2px; }
.footer-logo { width: 184px; height: auto; margin-bottom: 12px; }
.footer-brand p,
.footer-grid a { color: var(--text); font-size: 12px; line-height: 1.72; }
.footer-brand p { margin: 0 0 15px; color: #d7dde5; }
.footer-col, .footer-payments { display: flex; flex-direction: column; }
.footer-grid h3 { margin: 0 0 14px; color: var(--text); font-size: 14px; font-weight: 950; }
.footer-col a { margin-bottom: 6px; color: #d7dde5; }
.footer-payments { padding-left: 34px; border-left: 1px solid rgba(255,255,255,0.12); }
.payments-grid { display: grid; grid-template-columns: repeat(3, 74px); gap: 12px 14px; }
.payment-card { display: grid; place-items: center; width: 74px; height: 38px; background: #fff; border-radius: 5px; box-shadow: 0 1px 0 rgba(255,255,255,0.35), inset 0 0 0 1px rgba(0,0,0,0.04); }
.payment-card img { width: 56px; height: 30px; object-fit: contain; }
.footer-social-row { display: flex; gap: 12px; }
.footer-social { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; display: inline-block; position: relative; color: #d0d6dd; }
.footer-social.telegram::before { content: ""; position: absolute; inset: 8px; background: #d0d6dd; clip-path: polygon(12% 42%, 88% 8%, 56% 92%, 44% 56%, 22% 66%); }
.footer-social.instagram::before { content: ""; position: absolute; inset: 8px; border: 2px solid #d0d6dd; border-radius: 4px; }
.footer-social.instagram::after { content: ""; position: absolute; left: 12px; top: 12px; width: 4px; height: 4px; border: 2px solid #d0d6dd; border-radius: 50%; }
.footer-social.facebook::before { content: "f"; position: absolute; inset: 0; display: grid; place-items: center; color: #d0d6dd; font-weight: 800; }
.footer-social.youtube::before { content: ""; position: absolute; inset: 8px; border: 2px solid #d0d6dd; border-radius: 5px; }
.footer-social.youtube::after { content: ""; position: absolute; left: 14px; top: 12px; border-left: 6px solid #d0d6dd; border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { min-height: 44px; display: flex; align-items: center; gap: 28px; }
.footer-bottom p, .footer-bottom span { margin: 0; color: #98a2ae; font-size: 12px; }
.footer-bottom p { margin-right: auto; }
.heart { color: #ff3b3b; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .benefit-strip, .feature-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-payments { padding-left: 0; border-left: 0; }
  .contact-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .logo-link { width: 162px; }
  .logo { width: 162px; }
  .nav-cta { margin-left: auto; }
  .hero h1 { font-size: 38px; }
  .hero-copy { font-size: 16px; }
  .benefit-strip, .row.two, .feature-strip, .footer-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; }
  .cta-btn.outline { width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 12px 0 16px; }
  .footer-bottom p { margin-right: 0; }
}




