:root {
--bg: #f7f7f7;
--text: #121212;
--muted: #5f5f5f;
--brand: #ff7a00;
--brand-2: #ff4d00;
--line: #d7d7d7;
--card: #ffffff;
--shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
--header-h: 76px;
--section-h: calc(100dvh - var(--header-h));
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scroll-snap-type: y mandatory;
scroll-padding-top: var(--header-h);
}

body {
margin: 0;
font-family: "Manrope", "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
}

main {
min-height: var(--section-h);
}

a {
color: inherit;
}

.container {
width: min(1140px, 92%);
margin-inline: auto;
}

.site-header {
position: sticky;
top: 0;
z-index: 60;
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--line);
background: rgba(8, 8, 8, 0.82);
}

.nav-wrap {
min-height: 76px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}

.brand-wrap {
display: inline-flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: 1.9rem;
letter-spacing: 0.05em;
color: #ffffff;
}

.brand-logo {
width: 42px;
height: 42px;
object-fit: contain;
}

.main-nav {
display: flex;
align-items: center;
gap: 0.45rem;
flex-wrap: wrap;
}

.menu-toggle {
display: none;
width: 42px;
height: 42px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.24);
background: rgba(255, 255, 255, 0.08);
padding: 8px;
cursor: pointer;
}

.menu-toggle span {
display: block;
height: 2px;
margin: 5px 0;
background: #fff;
border-radius: 2px;
transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-nav {
display: none;
}

.menu-open .menu-toggle span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
text-decoration: none;
padding: 0.48rem 0.72rem;
border-radius: 10px;
font-weight: 700;
font-size: 0.92rem;
color: #f2f2f2;
transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
background: rgba(255, 255, 255, 0.18);
color: #ffffff;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
border: none;
cursor: pointer;
padding: 0.9rem 1.25rem;
border-radius: 999px;
font-weight: 800;
background: linear-gradient(120deg, var(--brand), var(--brand-2));
color: #fff;
box-shadow: 0 12px 26px rgba(255, 96, 0, 0.33);
transition: transform 0.2s ease;
}

.btn:hover {
transform: translateY(-2px);
}

.btn-small {
padding: 0.58rem 0.95rem;
font-size: 0.86rem;
}

.btn-ghost {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.42);
box-shadow: none;
}

.hero-main {
padding: 6rem 0 4.5rem;
background:
radial-gradient(circle at 16% 14%, rgba(255, 140, 0, 0.26), transparent 42%),
radial-gradient(circle at 84% 12%, rgba(255, 77, 0, 0.2), transparent 34%),
linear-gradient(140deg, #0b0b0b, #131313 48%, #1c1c1c);
color: #ffffff;
}

.full-screen-section {
min-height: var(--section-h);
display: flex;
align-items: center;
}

.page-panel {
width: 100%;
scroll-margin-top: var(--header-h);
scroll-snap-align: start;
scroll-snap-stop: always;
animation: fadeIn 0.38s ease both;
}

.page-panel[hidden] {
display: none !important;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(18px); }
to   { opacity: 1; transform: translateY(0); }
}

.hero-main-content {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 1.5rem;
align-items: center;
}

.title-logo {
width: min(520px, 100%);
height: auto;
display: block;
margin-bottom: 1rem;
filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
margin: 0;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: clamp(1.5rem, 4vw, 2.3rem);
letter-spacing: 0.09em;
color: #ff9a38;
}

.hero-text {
max-width: 60ch;
line-height: 1.7;
color: #ececec;
}

.hero-cta {
margin-top: 1.3rem;
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}

.hero-highlight {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 18px;
padding: 1.4rem;
box-shadow: var(--shadow);
line-height: 1.7;
}

.hero-highlight-actions {
margin-top: 1rem;
display: flex;
gap: 0.55rem;
flex-wrap: wrap;
}

.mini-title {
margin: 0 0 0.5rem;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: 1.8rem;
letter-spacing: 0.07em;
color: #ff9a38;
}

.section {
padding: 4.3rem 0;
scroll-margin-top: var(--header-h);
}

.section-alt {
background: #f0f0f0;
border-block: 1px solid #dbdbdb;
}

.section-title {
margin: 0 0 1rem;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: clamp(2.2rem, 5vw, 3.1rem);
letter-spacing: 0.04em;
}

.section-text {
margin: 0;
color: var(--muted);
font-size: 1.04rem;
line-height: 1.8;
max-width: 68ch;
}

.cards {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}

.two-col {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
background: var(--card);
border: 1px solid var(--line);
border-radius: 16px;
padding: 1.25rem;
box-shadow: var(--shadow);
}

.card h3 {
margin-top: 0;
font-size: 1.25rem;
}

.card p,
.card li {
line-height: 1.7;
color: var(--muted);
}

.steps-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}

.step-item {
border: 1px solid var(--line);
border-radius: 16px;
padding: 1.2rem;
background: var(--card);
box-shadow: var(--shadow);
}

.step-item span {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.1rem;
height: 2.1rem;
border-radius: 50%;
font-weight: 800;
background: rgba(255, 122, 0, 0.17);
color: #c44b00;
}

.work-focus {
margin-top: 1rem;
}

.level-card {
display: grid;
gap: 0.9rem;
align-content: start;
}

.stats-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
text-align: center;
display: grid;
gap: 0.35rem;
align-content: center;
min-height: 220px;
}

.stat-number {
margin: 0;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: clamp(2.7rem, 7vw, 4.6rem);
letter-spacing: 0.03em;
color: #111;
}

.stat-number-compact {
font-size: clamp(2.45rem, 6vw, 3.9rem);
line-height: 0.9;
word-spacing: -0.06em;
}

.stat-card-compact {
min-height: 200px;
}

.stat-label {
margin: 0;
font-weight: 800;
font-size: 1.05rem;
color: var(--muted);
}

.contact-wrap {
text-align: center;
background: #ffffff;
border: 1px solid var(--line);
border-radius: 18px;
padding: 2rem;
box-shadow: var(--shadow);
}

.contact-wrap-form {
text-align: left;
width: min(900px, 95%);
}

.contact-wrap-form h2,
.contact-wrap-form > p {
text-align: center;
}

.contact-form {
margin-top: 1rem;
display: grid;
gap: 0.9rem;
}

.form-grid {
display: grid;
gap: 0.8rem;
}

.contact-form label {
display: grid;
gap: 0.4rem;
font-weight: 700;
color: #232323;
}

.contact-form input,
.contact-form select {
width: 100%;
padding: 0.82rem 0.9rem;
border-radius: 10px;
border: 1px solid #cfcfcf;
font: inherit;
background: #fff;
color: #151515;
}

.contact-form input:focus,
.contact-form select:focus {
outline: 2px solid rgba(255, 122, 0, 0.35);
border-color: #ff7a00;
}

.hero-plan {
padding: 5.4rem 0 3.5rem;
color: #fff;
background: linear-gradient(130deg, #0a2047, #123e9c);
}

.plan-single {
display: grid;
gap: 0.95rem;
width: 100%;
padding-block: 1.35rem;
padding-inline: 0.45rem;
}

.plan-section.blue,
.plan-section.pro {
align-items: center;
min-height: var(--section-h);
height: var(--section-h);
max-height: var(--section-h);
overflow: hidden;
}

.plan-section.blue .container,
.plan-section.pro .container {
width: min(1080px, 95%);
margin-inline: auto;
}

.plan-head {
display: grid;
gap: 0.5rem;
}

.plan-title-wrap {
display: inline-flex;
align-items: center;
gap: 0.35rem;
}

.plan-title-logo {
width: auto;
display: block;
filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.plan-title-logo-basic {
height: 5.6em;
transform: translateY(0.05em);
}

.plan-title-logo-pro {
height: 6.6em;
transform: translateY(0.02em);
}

.plan-section.blue .hero-plan {
	background: linear-gradient(130deg, #0a2e6f, #0f58d8 55%, #1ea4ff);
}

.plan-section.blue .hero-plan .section-text {
	color: rgba(240, 247, 255, 0.96);
}

.plan-section.pro {
	background: #0d1018;
	color: #ecf4ff;
}

.plan-section.pro .hero-plan {
	background: linear-gradient(130deg, #090d17, #151d31 52%, #123146);
}

.plan-section.pro .hero-plan .section-text {
	color: rgba(230, 241, 255, 0.94);
}

.plan-section.pro .section-alt {
	background: #111626;
	border-block-color: #20283e;
}

.plan-section.pro .card {
	background: #131a2b;
	border-color: #2e3856;
}

.plan-section.pro .card h3,
.plan-section.pro .price-main {
	color: #ecf4ff;
}

.plan-section.pro .card p,
.plan-section.pro .card li,
.plan-section.pro .price-kicker {
	color: #c8d7f3;
}

.plan-hero-grid {
display: grid;
grid-template-columns: 1fr auto;
gap: 1rem;
align-items: center;
}

.plan-label {
margin: 0;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 800;
color: #89c8ff;
}

.plan-title {
margin: 0.3rem 0 0.6rem;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: clamp(2.35rem, 6.1vw, 4rem);
letter-spacing: 0.04em;
}

.plan-logo {
width: min(220px, 34vw);
height: auto;
filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.4));
}

.feature-list {
margin: 0;
padding-left: 1.2rem;
}

.price-box {
display: grid;
gap: 0.7rem;
align-content: start;
}

.price-kicker {
margin: 0;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #777;
}

.price-main {
margin: 0;
font-family: "Bebas Neue", Impact, sans-serif;
font-size: clamp(2.7rem, 6vw, 4rem);
line-height: 1;
color: #111;
}

.urgency-note {
margin: 0;
font-weight: 700;
color: #bb3f00;
}

.site-footer {
padding: 1.8rem 0;
text-align: center;
color: #777;
border-top: 1px solid var(--line);
background: #fff;
}

.theme-main {
--brand: #ff7a00;
--brand-2: #ff4d00;
}

.theme-blue {
--bg: #eef5ff;
--text: #0f1a39;
--muted: #2f4d8a;
--brand: #1f7dff;
--brand-2: #0ca4ff;
--line: #b7cdf4;
--card: #ffffff;
--shadow: 0 18px 40px rgba(20, 73, 162, 0.18);
}

.theme-blue .site-header {
background: rgba(16, 39, 92, 0.82);
border-bottom-color: rgba(140, 186, 255, 0.4);
}

.theme-blue .brand-wrap,
.theme-blue .nav-link {
color: #ebf4ff;
}

.theme-blue .hero-plan {
background: linear-gradient(130deg, #0a2e6f, #0f58d8 55%, #1ea4ff);
}

.theme-pro {
--bg: #0d1018;
--text: #eef3ff;
--muted: #a2b3d1;
--brand: #0cceff;
--brand-2: #1d9eff;
--line: #2d3750;
--card: #121826;
--shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.theme-pro .site-header {
background: rgba(7, 10, 17, 0.85);
border-bottom-color: rgba(102, 132, 184, 0.32);
}

.theme-pro .brand-wrap,
.theme-pro .nav-link {
color: #e7f2ff;
}

.theme-pro .section {
background: #0d1018;
}

.theme-pro .section-alt {
background: #111626;
border-block-color: #20283e;
}

.theme-pro .card,
.theme-pro .contact-wrap {
background: #131a2b;
border-color: #2e3856;
}

.theme-pro .section-title,
.theme-pro .card h3,
.theme-pro .price-main,
.theme-pro .site-footer {
color: #ecf4ff;
}

.theme-pro .card p,
.theme-pro .card li,
.theme-pro .section-text,
.theme-pro .contact-wrap p,
.theme-pro .site-footer,
.theme-pro .step-item p {
color: #9eb0d2;
}

.theme-pro .step-item {
background: #131a2b;
border-color: #2e3856;
}

.theme-pro .hero-plan {
background: linear-gradient(130deg, #090d17, #151d31 52%, #123146);
}

@media (max-width: 980px) {
html {
scroll-snap-type: none;
}

.hero-main-content,
.two-col,
.steps-grid,
.plan-hero-grid,
.stats-grid {
grid-template-columns: 1fr;
}

.full-screen-section {
min-height: auto;
height: auto;
max-height: none;
overflow: visible;
}

.plan-section.blue,
.plan-section.pro {
height: auto;
max-height: none;
overflow: visible;
}

.main-nav {
display: none;
}

.menu-toggle {
display: block;
}

.mobile-nav {
position: absolute;
left: 0;
right: 0;
top: 100%;
z-index: 80;
padding: 0.8rem 4%;
background: rgba(8, 8, 8, 0.98);
border-bottom: 1px solid rgba(255, 255, 255, 0.16);
backdrop-filter: blur(8px);
}

.mobile-nav.is-open {
display: grid;
gap: 0.45rem;
}

.mobile-nav .nav-link,
.mobile-nav .btn {
justify-content: flex-start;
}

.mobile-nav .btn {
width: 100%;
}

.brand-wrap span {
font-size: 1.55rem;
}

.title-logo {
width: min(430px, 100%);
}
}
