@font-face {
  font-family: "Cairo";
  src: url("../fonts/cairo-arabic.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-089F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/cairo-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #07090d;
  --bg-soft: #0c1016;
  --surface: rgba(18, 23, 31, .82);
  --surface-strong: #121720;
  --line: rgba(255, 255, 255, .09);
  --line-gold: rgba(238, 190, 83, .25);
  --text: #f8fafc;
  --muted: #9ca6b5;
  --gold: #f3c45e;
  --gold-deep: #b87916;
  --orange: #e98b32;
  --green: #43d17b;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle at 50% -15%, rgba(235, 174, 54, .14), transparent 40%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  min-width: 0;
  margin-inline: auto;
}

.hero-grid > *,
.feature-grid > *,
.steps-list > *,
.faq-layout > *,
.cta-card > *,
.footer-inner > * {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #111;
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.ambient {
  position: fixed;
  z-index: -2;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .11;
  pointer-events: none;
}

.ambient-one { top: 8%; right: -170px; background: #f5b432; }
.ambient-two { bottom: 8%; left: -170px; background: #ca682e; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 9, 13, .88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: #171109;
  background: linear-gradient(145deg, #ffe399, #d99827);
  box-shadow: inset 0 1px rgba(255, 255, 255, .55), 0 8px 25px rgba(215, 150, 33, .18);
  font-size: 18px;
  font-weight: 900;
}

.brand-name { font-size: 20px; font-weight: 900; letter-spacing: .06em; }
.brand-name span { color: var(--gold); }

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: #bec6d1; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; width: 0; height: 2px; border-radius: 2px; background: var(--gold); transition: width .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { width: 100%; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(243, 196, 94, .45); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 9px 18px; border-color: var(--line-gold); color: var(--gold); background: rgba(243, 196, 94, .08); font-size: 13px; }
.button-small:hover { background: rgba(243, 196, 94, .14); }
.button-primary { color: #171109; background: linear-gradient(135deg, #ffe08c 0%, var(--gold) 42%, #d68a1d 100%); box-shadow: 0 15px 35px rgba(222, 151, 31, .22), inset 0 1px rgba(255, 255, 255, .55); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(222, 151, 31, .3), inset 0 1px rgba(255, 255, 255, .55); }
.button-ghost { border-color: var(--line); color: #d7dce4; background: rgba(255, 255, 255, .035); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .07); }
.icon { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-button span { width: 19px; height: 2px; display: block; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  padding: 8px 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 13, .97);
}

.mobile-menu a:not(.button) { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); color: #cbd1da; font-weight: 700; }
.mobile-menu .button { width: 100%; margin-top: 16px; color: #171109; background: var(--gold); }

.hero { min-height: 790px; padding: 148px 0 82px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.hero-copy { position: relative; z-index: 2; }

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow {
  padding: 7px 13px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(243, 196, 94, .055);
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(67, 209, 123, .1), 0 0 16px rgba(67, 209, 123, .7); }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin: 24px 0 22px; font-size: clamp(2.55rem, 5vw, 4.75rem); line-height: 1.16; letter-spacing: -.045em; font-weight: 950; }
.gold-text { color: transparent; background: linear-gradient(100deg, #fff0bc 5%, var(--gold) 47%, #d7851f 100%); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 650px; margin-bottom: 31px; color: #abb4c1; font-size: clamp(1rem, 1.6vw, 1.14rem); line-height: 2; }
.hero-lead strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 13px 22px; color: #909aa8; list-style: none; font-size: 13px; font-weight: 700; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list span { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid rgba(67, 209, 123, .25); border-radius: 50%; color: var(--green); background: rgba(67, 209, 123, .06); font-size: 11px; }

.hero-visual { position: relative; min-height: 535px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; z-index: -3; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(232, 164, 44, .2), rgba(232, 164, 44, 0) 68%); filter: blur(7px); }
.orbit { position: absolute; z-index: -2; border: 1px solid rgba(243, 196, 94, .12); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; top: 15%; right: 9%; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 24px var(--gold); }
.orbit-a { width: 460px; height: 460px; transform: rotate(-18deg); }
.orbit-b { width: 360px; height: 360px; transform: rotate(52deg); border-color: rgba(255, 255, 255, .08); }

.phone-card {
  position: relative;
  width: min(100%, 365px);
  min-height: 514px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(24, 31, 41, .98), rgba(10, 13, 18, .98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, .07), 0 0 0 7px rgba(255, 255, 255, .018);
  transform: rotate(-2.5deg);
}

.phone-card::after { content: ""; position: absolute; inset: 1px; pointer-events: none; border-radius: 37px; background: linear-gradient(125deg, rgba(255, 255, 255, .06), transparent 24%); }
.phone-top { padding: 0 7px 12px; display: flex; align-items: center; justify-content: space-between; color: #9fa8b6; font-size: 10px; font-weight: 700; }
.phone-capsule { width: 54px; height: 15px; border-radius: 999px; background: #030406; }
.bot-head { display: flex; align-items: center; gap: 13px; padding: 14px 4px 17px; border-bottom: 1px solid var(--line); }
.telegram-badge { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #10141b; background: linear-gradient(145deg, #ffe097, #dc9024); box-shadow: 0 10px 26px rgba(224, 149, 33, .2); }
.telegram-badge svg { width: 25px; fill: currentColor; }
.bot-head strong { display: block; font-size: 15px; }
.bot-head small { display: flex; align-items: center; gap: 6px; color: #8f99a6; font-size: 10px; }
.bot-head small span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.bot-message { margin: 18px 0 14px; padding: 18px; border: 1px solid rgba(243, 196, 94, .13); border-radius: 19px; background: linear-gradient(135deg, rgba(243, 196, 94, .09), rgba(255, 255, 255, .025)); }
.message-label { display: block; margin-bottom: 7px; color: var(--gold); font-size: 11px; font-weight: 800; }
.bot-message strong { display: block; margin-bottom: 5px; font-size: 15px; }
.bot-message p { margin: 0; color: #8f99a6; font-size: 11px; }
.bot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.bot-grid span { min-height: 70px; padding: 11px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 15px; color: #cfd5dd; background: rgba(255, 255, 255, .025); font-size: 11px; font-weight: 750; }
.bot-grid b { color: var(--gold); font-size: 18px; line-height: 1; }
.verified-line { margin-top: 15px; padding: 10px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 12px; color: #93a0ad; background: rgba(0, 0, 0, .2); font-size: 10px; font-weight: 700; }
.verified-line span { color: var(--green); }

.metric-strip { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .018); }
.metrics { min-height: 132px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.metrics > div { padding: 16px 28px; display: flex; flex-direction: column; align-items: center; border-left: 1px solid var(--line); text-align: center; }
.metrics > div:last-child { border-left: 0; }
.metrics strong { color: var(--gold); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 950; line-height: 1.25; }
.metrics span { color: #8e98a6; font-size: 12px; font-weight: 700; }

.section { position: relative; padding: 110px 0; }
.section-heading { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-heading h2, .safety-card h2, .cta-card h2 { margin: 9px 0 13px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.3; letter-spacing: -.035em; font-weight: 930; }
.section-heading p, .safety-card p, .cta-card p { margin-bottom: 0; color: var(--muted); }
.section-heading.compact { margin-bottom: 45px; }
.section-heading.align-start { margin: 0; text-align: right; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 275px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(21, 27, 36, .86), rgba(10, 13, 18, .88)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card::after { content: ""; position: absolute; inset: auto -30% -55% 20%; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(238, 179, 64, .09), transparent 67%); }
.feature-card:hover { transform: translateY(-7px); border-color: var(--line-gold); box-shadow: 0 25px 50px rgba(0, 0, 0, .28); }
.featured-card { border-color: rgba(243, 196, 94, .2); background: linear-gradient(150deg, rgba(46, 37, 21, .7), rgba(11, 14, 19, .92)); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 32px; border: 1px solid var(--line-gold); border-radius: 15px; color: var(--gold); background: rgba(243, 196, 94, .075); font-size: 20px; }
.card-number { position: absolute; top: 25px; left: 25px; color: rgba(255, 255, 255, .13); font-size: 12px; font-weight: 900; }
.feature-card h3 { margin-bottom: 9px; font-size: 19px; }
.feature-card p { margin-bottom: 0; color: #929cab; font-size: 13px; }

.steps-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .012), rgba(255, 255, 255, .028)); }
.steps-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; counter-reset: steps; }
.steps-list li { position: relative; min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(8, 11, 15, .55); }
.steps-list li:not(:last-child)::after { content: ""; position: absolute; top: 48px; left: -19px; z-index: 2; width: 19px; border-top: 1px dashed rgba(243, 196, 94, .35); }
.steps-list > li > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid var(--line-gold); border-radius: 14px; color: var(--gold); background: rgba(243, 196, 94, .065); font-weight: 900; }
.steps-list h3 { margin-bottom: 6px; font-size: 17px; }
.steps-list p { margin: 0; color: #919baa; font-size: 12px; }

.safety-section { padding-bottom: 20px; }
.safety-card { padding: 46px 52px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; border: 1px solid rgba(67, 209, 123, .18); border-radius: 30px; background: linear-gradient(135deg, rgba(67, 209, 123, .06), rgba(15, 20, 27, .76)); }
.safety-symbol { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(67, 209, 123, .24); border-radius: 22px; color: var(--green); background: rgba(67, 209, 123, .08); box-shadow: 0 0 38px rgba(67, 209, 123, .08); font-size: 30px; font-weight: 900; }
.safety-card h2 { margin-top: 6px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.safety-card b { color: #d9e1e9; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(16, 21, 28, .65); transition: border-color .2s ease, background .2s ease; }
.faq-list details[open] { border-color: var(--line-gold); background: rgba(21, 25, 31, .88); }
.faq-list summary { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #e5e9ef; font-size: 15px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 21px; color: #929cab; font-size: 13px; }

.final-cta { padding-top: 40px; }
.cta-card { position: relative; padding: 58px 64px; display: flex; align-items: center; justify-content: space-between; gap: 35px; overflow: hidden; border: 1px solid var(--line-gold); border-radius: 34px; background: linear-gradient(125deg, rgba(45, 35, 18, .92), rgba(15, 18, 24, .96) 58%); box-shadow: var(--shadow); }
.cta-card::before { content: "4"; position: absolute; left: 5%; top: 50%; color: rgba(243, 196, 94, .04); font-size: 250px; font-weight: 950; line-height: 1; transform: translateY(-50%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.cta-card .button { flex: 0 0 auto; min-width: 205px; }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #06080b; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #7f8997; font-size: 12px; }
.footer-inner p { margin: 0; }
.footer-brand .brand-mark { width: 31px; height: 31px; border-radius: 10px; font-size: 15px; }
.footer-brand .brand-name { font-size: 16px; }
.responsible { display: flex; align-items: center; gap: 7px; }
.responsible b { padding: 2px 7px; border: 1px solid rgba(249, 98, 98, .23); border-radius: 7px; color: #ff8f8f; background: rgba(249, 98, 98, .06); }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 560px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps-list { grid-template-columns: 1fr 1fr; }
  .steps-list li::after { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .section-heading.align-start { max-width: 680px; margin-inline: auto; text-align: center; }
  .cta-card { padding: 48px; flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; padding: 115px 0 58px; }
  h1 { margin-top: 19px; font-size: clamp(2.25rem, 11.4vw, 3.25rem); }
  .hero-lead { line-height: 1.85; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 14px; }
  .hero-visual { min-height: 500px; }
  .phone-card { width: min(94%, 350px); min-height: 495px; transform: rotate(-1deg); }
  .orbit-a { width: min(390px, 100%); height: auto; aspect-ratio: 1; }
  .orbit-b { width: min(315px, 90%); height: auto; aspect-ratio: 1; }
  .metrics { grid-template-columns: 1fr 1fr; padding-block: 10px; }
  .metrics > div { min-height: 90px; border-bottom: 1px solid var(--line); }
  .metrics > div:nth-child(even) { border-left: 0; }
  .metrics > div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .feature-grid, .steps-list { grid-template-columns: 1fr; }
  .feature-card { min-height: 235px; }
  .safety-section { padding-bottom: 0; }
  .safety-card { padding: 32px 25px; grid-template-columns: 1fr; text-align: center; }
  .safety-symbol { margin-inline: auto; }
  .faq-list summary { padding: 18px; font-size: 14px; }
  .faq-list details p { padding-inline: 18px; }
  .final-cta { padding-top: 25px; }
  .cta-card { padding: 38px 24px; }
  .cta-card .button { width: 100%; min-width: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .hero-actions, .final-cta { display: none; }
  body { color: #111; background: #fff; }
  .hero, .section { min-height: auto; padding: 30px 0; }
}
