:root {
  --ink: #0b0f18;
  --ink-soft: #171d2b;
  --paper: #f5f4ee;
  --white: #ffffff;
  --lime: #b9ff49;
  --blue: #5c7cff;
  --blue-deep: #3654d9;
  --sky: #91d8ff;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(11,15,24,.14);
  --muted: #6c7280;
  --shadow: 0 22px 70px rgba(11,15,24,.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { max-width: 100%; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 12px 18px; background: var(--lime); border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; overflow: hidden; }
.section-dark { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.section-blue { color: var(--white); background: var(--blue-deep); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.02; }
h1 { margin-bottom: 28px; font-size: clamp(48px, 7vw, 90px); font-weight: 850; }
h2 { margin-bottom: 26px; font-size: clamp(40px, 5.2vw, 68px); font-weight: 850; }
h3 { font-size: 25px; }
em { color: var(--lime); font-style: normal; }
.section-light h2 em, .tools-section h2 em, .mentor-section h2 em, .pricing-section h2 em, .faq-heading h2 em { color: var(--blue-deep); }
p { margin-bottom: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--lime); }
.eyebrow-dark { color: #555c6b; }
.eyebrow-light { color: rgba(255,255,255,.7); }
.muted { color: var(--muted); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; color: var(--white); background: rgba(11,15,24,.68); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(18px); transition: .25s ease; }
.site-header.scrolled { background: rgba(11,15,24,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.045em; }
.brand-mark { width: 38px; color: var(--lime); }
.brand-word { font-size: 20px; }
.brand-word span { color: var(--lime); }
.desktop-nav { display: flex; gap: 32px; margin-left: auto; margin-right: 32px; }
.desktop-nav a { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 650; transition: .2s ease; }
.desktop-nav a:hover { color: var(--lime); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 25px; border: 1px solid transparent; border-radius: 14px; font-weight: 850; letter-spacing: -.02em; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 14px; }
.button-large { min-height: 62px; padding: 0 30px; }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 30px rgba(185,255,73,.18); }
.button-primary:hover { background: #c7ff6b; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--lime); color: var(--lime); }
.button-full { width: 100%; }
.menu-button { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line-dark); border-radius: 12px; background: transparent; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: white; transition: .2s ease; }
.mobile-nav { display: none; }

.hero { min-height: 100vh; padding-top: 158px; padding-bottom: 0; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.hero-lead { max-width: 660px; color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: rgba(255,255,255,.7); font-size: 14px; }
.check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-right: 7px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 900; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .32; pointer-events: none; }
.hero-glow-one { top: 90px; right: -200px; width: 540px; height: 540px; background: radial-gradient(circle, var(--blue), transparent 65%); }
.hero-glow-two { left: 5%; bottom: 8%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(185,255,73,.3), transparent 68%); }
.hero-visual { position: relative; padding: 54px 8px; }
.browser-card { position: relative; z-index: 2; overflow: hidden; color: var(--ink); background: #eef1f7; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: 0 42px 110px rgba(0,0,0,.42); transform: rotate(1deg); }
.browser-top { display: grid; grid-template-columns: 80px 1fr 32px; align-items: center; gap: 12px; height: 58px; padding: 0 18px; background: #171d29; }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 9px; height: 9px; background: #51596a; border-radius: 50%; }
.browser-dots i:first-child { background: #ff6b65; }
.browser-dots i:nth-child(2) { background: #ffd15b; }
.browser-dots i:nth-child(3) { background: var(--lime); }
.browser-address { overflow: hidden; padding: 8px 16px; color: #a9afbd; background: #0e131c; border-radius: 9px; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.browser-icon { color: white; text-align: center; }
.demo-page { padding: 28px; }
.demo-tag { display: inline-flex; padding: 8px 11px; color: #3654d9; background: rgba(92,124,255,.12); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-product { display: grid; grid-template-columns: 190px 1fr; gap: 25px; margin: 22px 0; }
.demo-image { position: relative; display: flex; align-items: center; justify-content: center; min-height: 205px; color: white; background: linear-gradient(145deg, #5c7cff, #28348f); border-radius: 20px; }
.demo-image span { font-size: 56px; font-weight: 900; letter-spacing: -.08em; }
.demo-info { position: relative; padding: 12px 0; }
.demo-info small { color: var(--muted); font-weight: 700; }
.demo-info h3 { margin: 8px 0 10px; font-size: 29px; }
.demo-rating { color: #ffb800; font-size: 14px; }
.demo-rating span { color: var(--muted); }
.demo-price { display: flex; align-items: baseline; gap: 12px; margin: 16px 0; }
.demo-price strong { font-size: 26px; }
.demo-price del { color: var(--muted); }
.demo-buy { width: 100%; min-height: 46px; border: 0; color: var(--ink); background: var(--lime); border-radius: 11px; font-weight: 850; }
.demo-form-row { position: relative; display: grid; grid-template-columns: 70px 1fr 112px; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(11,15,24,.1); }
.demo-form-row label { font-size: 13px; font-weight: 800; }
.demo-form-row input { width: 100%; min-height: 43px; padding: 0 12px; border: 1px solid rgba(11,15,24,.14); border-radius: 10px; background: white; }
.demo-form-row button { min-height: 43px; border: 0; color: white; background: var(--blue-deep); border-radius: 10px; font-weight: 800; }
.browser-status { display: flex; justify-content: space-between; margin-top: 24px; padding: 14px 16px; color: #4d5565; background: white; border-radius: 12px; font-size: 12px; }
.status-live { color: #2c9b4b; font-weight: 800; }
.bug-pin { position: absolute; z-index: 5; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--ink); background: var(--lime); border: 4px solid #eef1f7; border-radius: 50%; box-shadow: 0 8px 20px rgba(11,15,24,.2); font-size: 12px; font-weight: 900; }
.pin-one { top: 15px; right: 15px; }
.pin-two { right: -10px; bottom: 26px; }
.pin-three { right: 95px; top: 5px; }
.floating-card { position: absolute; z-index: 4; display: flex; gap: 11px; padding: 16px 18px; color: var(--ink); background: white; border-radius: 16px; box-shadow: var(--shadow); }
.floating-card b, .floating-card span { display: block; }
.floating-card span { color: var(--muted); font-size: 12px; }
.floating-card-top { top: 12px; right: -16px; }
.floating-card-bottom { left: -35px; bottom: 0; max-width: 350px; align-items: center; }
.floating-icon { display: flex !important; align-items: center; justify-content: center; width: 42px; height: 42px; flex: 0 0 42px; color: var(--ink) !important; background: var(--lime); border-radius: 12px; font-size: 25px !important; }
.hero-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 100px; border-top: 1px solid var(--line-dark); }
.hero-strip div { padding: 30px 22px 34px; border-right: 1px solid var(--line-dark); }
.hero-strip div:first-child { border-left: 1px solid var(--line-dark); }
.hero-strip strong, .hero-strip span { display: block; }
.hero-strip strong { margin-bottom: 5px; font-size: 19px; }
.hero-strip span { color: rgba(255,255,255,.55); font-size: 13px; }

.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.large-copy { padding-bottom: 14px; font-size: 19px; line-height: 1.6; }
.profession-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
.profession-card { position: relative; min-height: 340px; padding: 34px; background: white; border: 1px solid var(--line-light); border-radius: var(--radius); }
.profession-card h3 { margin-top: 70px; margin-bottom: 14px; }
.profession-card p { color: var(--muted); }
.card-index { position: absolute; top: 30px; right: 30px; color: #9ba0aa; font-size: 12px; font-weight: 900; }
.icon-box { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; color: var(--ink); background: #e9e8e2; border-radius: 16px; font-size: 25px; font-weight: 900; }
.accent-card { background: var(--lime); border-color: transparent; }
.accent-card p { color: rgba(11,15,24,.7); }
.accent-card .icon-box { background: rgba(255,255,255,.55); }
.dark-card { color: white; background: var(--ink); border-color: transparent; }
.dark-card p { color: rgba(255,255,255,.6); }
.dark-card .icon-box { color: var(--ink); background: var(--lime); }

.pain-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.pain-heading { position: sticky; top: 120px; }
.pain-heading p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 18px; }
.pain-list { border-top: 1px solid rgba(255,255,255,.22); }
.pain-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.pain-list article > span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--ink); background: var(--lime); border-radius: 50%; font-weight: 900; font-size: 12px; }
.pain-list h3 { margin-bottom: 8px; }
.pain-list p { margin: 0; color: rgba(255,255,255,.6); }

.challenge-section { background: #101724; }
.challenge-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.challenge-copy p { color: rgba(255,255,255,.66); font-size: 18px; }
.challenge-progress { margin-top: 36px; padding: 20px; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: 18px; }
.progress-number { display: flex; align-items: baseline; gap: 5px; }
.progress-number strong { font-size: 34px; }
.progress-number span { color: rgba(255,255,255,.55); }
.progress-track { overflow: hidden; height: 8px; margin-top: 15px; background: rgba(255,255,255,.1); border-radius: 999px; }
.progress-track i { display: block; width: 0; height: 100%; background: var(--lime); transition: width .35s ease; }
.challenge-feedback { min-height: 50px; margin-top: 16px; color: var(--sky); font-size: 14px; }
.test-window { overflow: hidden; color: var(--ink); background: #f7f8fb; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: 0 38px 90px rgba(0,0,0,.35); }
.test-toolbar { display: grid; grid-template-columns: 80px 1fr 70px; align-items: center; padding: 18px 22px; color: rgba(255,255,255,.75); background: #1a2230; font-size: 13px; }
.test-toolbar span { text-align: center; }
.test-toolbar button { padding: 7px 10px; border: 1px solid var(--line-dark); color: rgba(255,255,255,.7); background: transparent; border-radius: 8px; cursor: pointer; }
.test-content { padding: 42px; }
.test-badge { display: inline-flex; padding: 7px 10px; color: var(--blue-deep); background: rgba(92,124,255,.12); border-radius: 999px; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.test-content h3 { margin: 18px 0 9px; font-size: 35px; }
.test-content > p { color: var(--muted); }
.bug-target { position: relative; width: 100%; border: 2px solid transparent; cursor: crosshair; transition: .18s ease; }
.bug-target:hover { border-color: var(--blue); transform: translateY(-2px); }
.bug-target.found { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(185,255,73,.16); }
.bug-target.found::after { content: "✓ БАГ"; position: absolute; top: 10px; right: 10px; padding: 5px 7px; color: var(--ink); background: var(--lime); border-radius: 7px; font-size: 10px; font-weight: 900; }
.test-content > .bug-target:first-of-type { margin: 25px 0; padding: 18px; background: white; border-radius: 15px; }
.price-row { display: flex; gap: 10px; align-items: baseline; margin-bottom: 14px; }
.price-row b { font-size: 25px; }
.price-row del { color: var(--muted); }
.fake-buy { display: block; padding: 13px; color: var(--ink); background: var(--lime); border-radius: 10px; font-weight: 850; }
.fake-field-wrap { margin-top: 18px; }
.fake-field-wrap label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.fake-field { padding: 15px; text-align: left; background: white; border-radius: 12px; }
.fake-submit { margin-top: 15px; padding: 15px; color: white; background: var(--blue-deep); border-radius: 12px; font-weight: 850; }

.program-heading { display: grid; grid-template-columns: 1.1fr .6fr; gap: 80px; align-items: end; }
.program-heading > p { padding-bottom: 15px; color: var(--muted); font-size: 18px; }
.program-layout { display: grid; grid-template-columns: 1fr 370px; gap: 50px; align-items: start; margin-top: 58px; }
.program-list { border-top: 1px solid var(--line-light); }
details { border-bottom: 1px solid var(--line-light); }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.program-list summary { display: grid; grid-template-columns: 90px 1fr 28px; gap: 12px; align-items: center; min-height: 86px; }
.program-list summary span { color: var(--blue-deep); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.program-list summary b { font-size: 20px; }
.program-list summary i, .faq-list summary i { position: relative; width: 26px; height: 26px; border: 1px solid var(--line-light); border-radius: 50%; }
.program-list summary i::before, .program-list summary i::after, .faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 7px; top: 12px; width: 10px; height: 1px; background: currentColor; transition: .2s ease; }
.program-list summary i::after, .faq-list summary i::after { transform: rotate(90deg); }
details[open] summary i::after { transform: rotate(0); }
.details-content { padding: 0 50px 28px 102px; color: var(--muted); }
.details-content strong { color: var(--ink); }
.program-aside { position: sticky; top: 110px; padding: 32px; color: white; background: var(--ink); border-radius: 24px; }
.aside-label { margin-bottom: 20px; color: var(--lime); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.program-aside ul, .price-card ul { margin: 0; padding: 0; list-style: none; }
.program-aside li { display: flex; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
.program-aside li span { color: var(--lime); font-weight: 900; }
.aside-quote { margin-top: 26px; padding: 20px; color: var(--ink); background: var(--lime); border-radius: 16px; font-weight: 850; }

.tools-section { background: #e9e8e2; }
.center-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.tools-track { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.tools-track div { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 155px; padding: 18px; background: var(--paper); border: 1px solid var(--line-light); border-radius: 20px; }
.tools-track span { display: flex; align-items: center; justify-content: center; min-width: 54px; height: 54px; padding: 0 10px; margin-bottom: 13px; color: white; background: var(--blue-deep); border-radius: 15px; font-size: 13px; font-weight: 900; }
.tools-track b { font-size: 14px; }

.format-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.format-copy { position: sticky; top: 120px; }
.format-copy p { color: rgba(255,255,255,.64); font-size: 18px; }
.format-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.format-cards article { min-height: 250px; padding: 28px; background: var(--ink-soft); border: 1px solid var(--line-dark); border-radius: 22px; }
.format-cards article > span { display: inline-flex; padding: 6px 9px; color: var(--ink); background: var(--lime); border-radius: 8px; font-size: 11px; font-weight: 900; }
.format-cards h3 { margin-top: 70px; margin-bottom: 10px; }
.format-cards p { margin: 0; color: rgba(255,255,255,.56); }

.mentor-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.mentor-visual { position: relative; }
.mentor-placeholder { position: relative; display: flex; min-height: 550px; align-items: center; justify-content: center; overflow: hidden; color: var(--blue-deep); background: #dfded6; border: 1px dashed rgba(11,15,24,.28); border-radius: var(--radius-lg); }
.mentor-placeholder svg { position: absolute; bottom: -20px; width: 82%; }
.mentor-placeholder > div { position: absolute; z-index: 2; bottom: 30px; left: 30px; right: 30px; padding: 18px; color: white; background: rgba(11,15,24,.88); border-radius: 15px; backdrop-filter: blur(12px); }
.mentor-placeholder b, .mentor-placeholder span { display: block; }
.mentor-placeholder span { color: rgba(255,255,255,.55); font-size: 13px; }
.mentor-badge { position: absolute; top: 26px; right: -24px; padding: 13px 18px; background: var(--lime); border-radius: 12px; box-shadow: var(--shadow); font-weight: 850; transform: rotate(3deg); }
.mentor-intro { color: var(--muted); font-size: 18px; line-height: 1.65; }
.mentor-points { margin: 32px 0; border-top: 1px solid var(--line-light); }
.mentor-points div { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 19px 0; border-bottom: 1px solid var(--line-light); }
.mentor-points span { color: var(--muted); }
.text-link { color: var(--blue-deep); font-weight: 850; }
.disabled-link { opacity: .55; pointer-events: none; }

.pricing-section { background: var(--lime); }
.pricing-grid { display: grid; grid-template-columns: 1fr 490px; gap: 90px; align-items: center; }
.pricing-copy p { max-width: 600px; font-size: 18px; }
.pricing-guarantee { display: flex; align-items: center; gap: 18px; max-width: 520px; margin-top: 35px; padding: 18px; background: rgba(255,255,255,.5); border-radius: 18px; }
.pricing-guarantee > span { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; flex: 0 0 62px; color: white; background: var(--blue-deep); border-radius: 16px; font-size: 28px; font-weight: 900; }
.pricing-guarantee b, .pricing-guarantee p { display: block; margin: 0; }
.pricing-guarantee p { color: rgba(11,15,24,.62); font-size: 14px; }
.price-card { padding: 36px; background: var(--paper); border: 1px solid rgba(11,15,24,.14); border-radius: 28px; box-shadow: 0 30px 75px rgba(11,15,24,.18); }
.price-card-top { display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.price-label { font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.price-badge { padding: 7px 10px; color: white; background: var(--blue-deep); border-radius: 999px; font-size: 11px; font-weight: 850; }
.price { display: flex; gap: 9px; align-items: baseline; margin: 28px 0 0; }
.price strong { font-size: 76px; line-height: 1; letter-spacing: -.07em; }
.price span { font-size: 20px; font-weight: 800; }
.price-sub { color: var(--muted); }
.price-card ul { margin: 25px 0 30px; border-top: 1px solid var(--line-light); }
.price-card li { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line-light); }
.price-card li span { color: var(--blue-deep); font-weight: 900; }
.price-card small { display: block; margin-top: 14px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.price-card code { font-size: 10px; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list summary { display: grid; grid-template-columns: 1fr 28px; gap: 18px; align-items: center; min-height: 82px; font-size: 19px; font-weight: 850; }
.faq-list p { padding: 0 60px 24px 0; color: var(--muted); }

.final-cta { position: relative; padding: 100px 0; overflow: hidden; }
.final-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.final-label { display: inline-block; margin-bottom: 25px; color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.final-action p { color: rgba(255,255,255,.65); font-size: 18px; }
.final-orb { position: absolute; width: 520px; height: 520px; right: -180px; bottom: -280px; background: radial-gradient(circle, rgba(92,124,255,.8), transparent 67%); }
.site-footer { padding: 48px 0 110px; color: white; background: #070a11; }
.footer-top { display: grid; grid-template-columns: .7fr 1fr .7fr; gap: 50px; align-items: start; padding-bottom: 38px; border-bottom: 1px solid var(--line-dark); }
.footer-copy { color: rgba(255,255,255,.55); }
.footer-contact { text-align: right; }
.footer-contact a, .footer-contact span { display: block; }
.footer-contact span { color: rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.43); font-size: 12px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--lime); }

.mobile-buy-bar { display: none; }
.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; max-width: 380px; padding: 15px 18px; color: white; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 13px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(20px); transition: .25s ease; }
.toast.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

.legal-page { min-height: 100vh; padding: 130px 0 80px; background: var(--paper); }
.legal-page .legal-wrap { max-width: 820px; }
.legal-page h1 { font-size: clamp(42px,6vw,72px); }
.legal-page h2 { margin-top: 44px; font-size: 28px; }
.legal-page p, .legal-page li { color: #555c6b; }
.legal-note { padding: 18px; background: #fff3c2; border-radius: 14px; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; margin-right: 12px; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; z-index: 99; top: 76px; left: 0; right: 0; display: flex; flex-direction: column; gap: 8px; padding: 22px 20px 28px; color: white; background: rgba(11,15,24,.98); border-bottom: 1px solid var(--line-dark); opacity: 0; pointer-events: none; transform: translateY(-20px); transition: .2s ease; }
  .mobile-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-weight: 700; }
  .hero-grid, .split-heading, .pain-grid, .challenge-grid, .format-grid, .mentor-grid, .pricing-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-visual { max-width: 700px; margin: 0 auto; }
  .hero-strip { grid-template-columns: repeat(2,1fr); }
  .profession-grid { grid-template-columns: 1fr 1fr; }
  .profession-grid article:last-child { grid-column: 1 / -1; }
  .pain-heading, .format-copy, .faq-heading { position: static; }
  .program-layout { grid-template-columns: 1fr 320px; gap: 30px; }
  .tools-track { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { gap: 50px; }
  .price-card { max-width: 600px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(43px, 14vw, 66px); }
  h2 { font-size: clamp(36px, 11vw, 52px); }
  .header-inner { min-height: 68px; }
  .header-cta { display: none; }
  .mobile-nav { top: 68px; }
  .hero { min-height: auto; padding-top: 122px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { display: grid; gap: 12px; }
  .hero-visual { padding: 36px 0 55px; }
  .browser-card { border-radius: 20px; transform: none; }
  .browser-top { grid-template-columns: 62px 1fr 20px; padding: 0 12px; }
  .demo-page { padding: 18px; }
  .demo-product { grid-template-columns: 1fr; }
  .demo-image { min-height: 145px; }
  .demo-form-row { grid-template-columns: 1fr; }
  .demo-form-row label { display: none; }
  .pin-two { right: 5px; }
  .pin-three { top: 55px; right: 8px; }
  .floating-card-top { top: 5px; right: 7px; }
  .floating-card-bottom { left: 10px; right: 10px; bottom: 3px; }
  .hero-strip { grid-template-columns: 1fr 1fr; margin-top: 50px; }
  .hero-strip div { padding: 22px 14px; }
  .profession-grid { grid-template-columns: 1fr; }
  .profession-grid article:last-child { grid-column: auto; }
  .profession-card { min-height: 285px; }
  .pain-grid, .challenge-grid, .mentor-grid { gap: 50px; }
  .test-content { padding: 25px; }
  .program-heading { grid-template-columns: 1fr; gap: 10px; }
  .program-layout { grid-template-columns: 1fr; }
  .program-aside { position: static; }
  .program-list summary { grid-template-columns: 70px 1fr 26px; min-height: 78px; }
  .program-list summary b { font-size: 17px; }
  .details-content { padding: 0 12px 24px 0; }
  .tools-track { grid-template-columns: 1fr 1fr; }
  .tools-track div { min-height: 125px; }
  .format-cards { grid-template-columns: 1fr; }
  .format-cards article { min-height: 220px; }
  .mentor-placeholder { min-height: 460px; }
  .mentor-badge { right: 8px; }
  .mentor-points div { grid-template-columns: 1fr; gap: 4px; }
  .price-card { padding: 26px; }
  .price strong { font-size: 64px; }
  .faq-list summary { font-size: 17px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 7px; }
  .site-footer { padding-bottom: 110px; }
  .mobile-buy-bar { position: fixed; z-index: 90; left: 10px; right: 10px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 10px 10px 16px; color: white; background: rgba(11,15,24,.94); border: 1px solid var(--line-dark); border-radius: 17px; box-shadow: 0 18px 50px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
  .mobile-buy-bar small, .mobile-buy-bar strong { display: block; }
  .mobile-buy-bar small { color: rgba(255,255,255,.52); font-size: 10px; }
  .mobile-buy-bar strong { font-size: 15px; }
  .mobile-buy-bar .button { min-height: 46px; padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
