@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');
:root {
--menu-bg: #fff;
--border: 1px solid #f7f7f7;
--body-bg: #ddd;
--title: #00897b;
--title-text: #fff;
--link-col: #454545;
--link-hover: #f5f5f5;
--foot-bg: #253137;
--head-hover: #038275;
--adm-panel-hover: #105a53;
--text-col: #8b8b8b;
--quote: #eee;
--main-bg: #fff;
--auth: #253137;
--auth-a: #00897b;
--shadow: 0px 2px 2px #c4c4c4;
--items-span: #00897b;
--block-bg: #eee;
--accent: #00897b;
--accent-dark: #038275;
--accent-darker: #105a53;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'PT Sans', sans-serif;
background: var(--body-bg);
color: var(--link-col);
overflow-x: hidden;
}
/* ── NOISE TEXTURE overlay ── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 9999;
opacity: .4;
}
a { color: inherit; text-decoration: none; }
/* ══════════════════════════════════════════
HEADER / NAV
══════════════════════════════════════════ */
header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
background: var(--menu-bg);
box-shadow: var(--shadow);
transition: background .3s;
}
nav {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
display: flex;
align-items: center;
gap: 10px;
}
.nav-logo .logo-icon {
width: 38px; height: 38px;
background: var(--accent);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 18px;
color: #fff;
letter-spacing: -1px;
}
.nav-logo .logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 20px;
color: var(--auth);
}
.nav-logo .logo-text span { color: var(--accent); }
.nav-links {
display: flex;
align-items: center;
gap: 28px;
list-style: none;
}
.nav-links a {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 600;
color: var(--link-col);
letter-spacing: .5px;
padding: 6px 0;
position: relative;
transition: color .2s;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 2px;
background: var(--accent);
transform: scaleX(0);
transition: transform .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
background: var(--accent);
color: #fff !important;
padding: 9px 22px !important;
border-radius: 8px;
transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }
.burger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--auth); border-radius: 2px; transition: .3s; }
/* ══════════════════════════════════════════
HERO
══════════════════════════════════════════ */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 100px 24px 60px;
background: var(--auth);
}
.hero-bg-shapes {
position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-bg-shapes .shape {
position: absolute;
border-radius: 50%;
opacity: .12;
}
.shape-1 {
width: 600px; height: 600px;
background: var(--accent);
top: -200px; right: -150px;
animation: float 8s ease-in-out infinite;
}
.shape-2 {
width: 300px; height: 300px;
background: var(--accent);
bottom: -80px; left: -80px;
animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
width: 150px; height: 150px;
background: #fff;
top: 40%; left: 45%;
opacity: .05;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-20px) scale(1.03); }
}
.hero-inner {
max-width: 1200px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(0,137,123,.2);
border: 1px solid rgba(0,137,123,.4);
color: #4dd0c4;
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 6px 14px;
border-radius: 100px;
margin-bottom: 24px;
}
.hero-badge::before {
content: '';
width: 7px; height: 7px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: clamp(36px, 5vw, 68px);
line-height: 1.08;
color: #fff;
margin-bottom: 12px;
}
.hero h1 .accent { color: var(--accent); }
.hero-slogan {
font-family: 'Montserrat', sans-serif;
font-size: clamp(16px, 2vw, 22px);
font-weight: 600;
color: rgba(255,255,255,.7);
margin-bottom: 28px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.slogan-wap {
text-decoration: line-through;
color: rgba(255,255,255,.35);
font-style: italic;
}
.slogan-web {
color: var(--accent);
position: relative;
}
.slogan-web::after {
content: 'НОВОЕ';
position: absolute;
top: -14px; left: 50%;
transform: translateX(-50%);
font-size: 9px;
background: var(--accent);
color: #fff;
padding: 1px 5px;
border-radius: 4px;
letter-spacing: 1px;
white-space: nowrap;
}
.hero-desc {
font-size: 16px;
line-height: 1.7;
color: rgba(255,255,255,.6);
margin-bottom: 40px;
max-width: 480px;
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--accent);
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
padding: 14px 28px;
border-radius: 10px;
transition: background .2s, transform .2s, box-shadow .2s;
box-shadow: 0 4px 20px rgba(0,137,123,.4);
}
.btn-primary:hover {
background: var(--accent-dark);
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(0,137,123,.5);
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255,255,255,.08);
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 14px;
padding: 14px 28px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,.15);
transition: background .2s, transform .2s;
backdrop-filter: blur(6px);
}
.btn-secondary:hover {
background: rgba(255,255,255,.14);
transform: translateY(-2px);
}
/* Hero stats */
.hero-stats {
display: flex;
gap: 32px;
margin-top: 48px;
padding-top: 32px;
border-top: 1px solid rgba(255,255,255,.1);
flex-wrap: wrap;
}
.stat-item {}
.stat-num {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 28px;
color: #fff;
display: block;
}
.stat-num .stat-accent { color: var(--accent); }
.stat-label {
font-size: 12px;
color: rgba(255,255,255,.45);
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
}
/* Hero visual panel */
.hero-visual {
position: relative;
}
.forum-preview {
background: var(--menu-bg);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 24px 80px rgba(0,0,0,.4);
transform: perspective(800px) rotateY(-6deg) rotateX(3deg);
transition: transform .4s;
}
.forum-preview:hover {
transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
}
.fp-topbar {
background: var(--auth);
padding: 10px 16px;
display: flex;
align-items: center;
gap: 8px;
}
.fp-dot { width: 10px; height: 10px; border-radius: 50%; }
.fp-dot.r { background: #ff5f57; }
.fp-dot.y { background: #febc2e; }
.fp-dot.g { background: #28c840; }
.fp-url {
margin: 0 auto;
background: rgba(255,255,255,.1);
border-radius: 6px;
padding: 4px 12px;
font-size: 11px;
color: rgba(255,255,255,.5);
font-family: monospace;
}
.fp-section-header {
background: var(--accent);
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 13px;
padding: 9px 16px;
}
.fp-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 16px;
border-bottom: 1px solid #f0f0f0;
animation: slideIn .4s ease forwards;
opacity: 0;
}
.fp-row:nth-child(1) { animation-delay: .1s; }
.fp-row:nth-child(2) { animation-delay: .2s; }
.fp-row:nth-child(3) { animation-delay: .3s; }
.fp-row:nth-child(4) { animation-delay: .4s; }
@keyframes slideIn {
from { opacity: 0; transform: translateX(10px); }
to { opacity: 1; transform: translateX(0); }
}
.fp-row-name {
font-size: 13px;
color: var(--link-col);
font-family: 'PT Sans', sans-serif;
}
.fp-row-count {
font-size: 11px;
background: rgba(0,137,123,.12);
color: var(--accent);
font-family: 'Montserrat', sans-serif;
font-weight: 700;
padding: 3px 9px;
border-radius: 6px;
}
.hero-float-badge {
position: absolute;
bottom: -20px; right: -30px;
background: var(--accent);
color: #fff;
border-radius: 14px;
padding: 14px 20px;
box-shadow: 0 8px 30px rgba(0,137,123,.45);
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 13px;
animation: float 5s ease-in-out infinite;
}
.hero-float-badge span { display: block; font-size: 22px; font-weight: 900; }
/* ══════════════════════════════════════════
SECTION COMMON
══════════════════════════════════════════ */
section { padding: 90px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
display: inline-block;
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 800;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--accent);
background: rgba(0,137,123,.09);
padding: 5px 14px;
border-radius: 100px;
margin-bottom: 16px;
}
.section-title {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: clamp(26px, 4vw, 44px);
color: var(--auth);
line-height: 1.15;
margin-bottom: 16px;
}
.section-title .accent { color: var(--accent); }
.section-sub {
font-size: 17px;
line-height: 1.7;
color: var(--text-col);
max-width: 580px;
}
/* ══════════════════════════════════════════
STATS TICKER
══════════════════════════════════════════ */
.ticker-section {
background: var(--accent);
padding: 0;
overflow: hidden;
}
.ticker-wrap {
display: flex;
width: 100%;
overflow: hidden;
}
.ticker-track {
display: flex;
gap: 0;
animation: ticker 28s linear infinite;
white-space: nowrap;
}
@keyframes ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.ticker-item {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 13px;
color: rgba(255,255,255,.85);
border-right: 1px solid rgba(255,255,255,.15);
flex-shrink: 0;
}
.ticker-item .ti-num {
font-size: 16px;
color: #fff;
font-weight: 900;
}
/* ══════════════════════════════════════════
ABOUT
══════════════════════════════════════════ */
.about-section { background: var(--main-bg); }
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
margin-top: 60px;
}
.about-text-block {}
.about-feature {
display: flex;
gap: 16px;
margin-top: 28px;
}
.about-feature-icon {
width: 48px; height: 48px;
border-radius: 12px;
background: rgba(0,137,123,.1);
display: flex; align-items: center; justify-content: center;
font-size: 22px;
flex-shrink: 0;
transition: background .2s, transform .2s;
}
.about-feature:hover .about-feature-icon {
background: var(--accent);
transform: scale(1.08);
}
.about-feature-text h4 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 15px;
color: var(--auth);
margin-bottom: 5px;
}
.about-feature-text p {
font-size: 14px;
color: var(--text-col);
line-height: 1.6;
}
/* Timeline */
.timeline {
position: relative;
padding-left: 28px;
}
.timeline::before {
content: '';
position: absolute;
left: 8px; top: 8px; bottom: 8px;
width: 2px;
background: linear-gradient(to bottom, var(--accent), transparent);
}
.tl-item {
position: relative;
margin-bottom: 28px;
opacity: 0;
transform: translateY(20px);
transition: opacity .5s, transform .5s;
}
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-item::before {
content: '';
position: absolute;
left: -22px; top: 6px;
width: 12px; height: 12px;
border-radius: 50%;
background: var(--accent);
border: 2px solid var(--main-bg);
box-shadow: 0 0 0 2px var(--accent);
}
.tl-year {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 12px;
color: var(--accent);
letter-spacing: 1px;
}
.tl-text {
font-size: 15px;
color: var(--link-col);
font-weight: 600;
margin-top: 2px;
}
.tl-desc {
font-size: 13px;
color: var(--text-col);
line-height: 1.5;
margin-top: 4px;
}
/* ══════════════════════════════════════════
CATEGORIES
══════════════════════════════════════════ */
.categories-section { background: var(--body-bg); }
.cat-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
margin-top: 52px;
}
.cat-card {
background: var(--main-bg);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform .25s, box-shadow .25s;
}
.cat-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.cat-card-header {
background: var(--accent);
padding: 14px 20px;
display: flex;
align-items: center;
gap: 10px;
}
.cat-card-icon {
font-size: 20px;
width: 36px; height: 36px;
background: rgba(255,255,255,.15);
border-radius: 9px;
display: flex; align-items: center; justify-content: center;
}
.cat-card-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #fff;
}
.cat-card-body { padding: 4px 0 8px; }
.cat-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 11px 20px;
border-bottom: 1px solid #f5f5f5;
transition: background .15s;
}
.cat-row:last-child { border-bottom: none; }
.cat-row:hover { background: var(--link-hover); }
.cat-row-name {
font-size: 14px;
color: var(--link-col);
display: flex; align-items: center; gap: 6px;
}
.cat-row-name .dot {
width: 6px; height: 6px;
border-radius: 50%;
background: var(--accent);
opacity: .5;
flex-shrink: 0;
}
.cat-count {
font-family: 'Montserrat', sans-serif;
font-size: 11px;
font-weight: 700;
color: var(--text-col);
background: var(--block-bg);
padding: 3px 9px;
border-radius: 6px;
white-space: nowrap;
}
/* ══════════════════════════════════════════
FEATURES
══════════════════════════════════════════ */
.features-section { background: var(--main-bg); }
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
margin-top: 52px;
}
.feature-card {
background: var(--body-bg);
border-radius: 20px;
padding: 32px 28px;
position: relative;
overflow: hidden;
transition: transform .25s, box-shadow .25s;
}
.feature-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-emoji {
font-size: 36px;
margin-bottom: 18px;
display: block;
}
.feature-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 17px;
color: var(--auth);
margin-bottom: 10px;
}
.feature-desc {
font-size: 14px;
color: var(--text-col);
line-height: 1.65;
}
/* ══════════════════════════════════════════
BIG NUMBERS
══════════════════════════════════════════ */
.numbers-section {
background: var(--auth);
position: relative;
overflow: hidden;
}
.numbers-section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 30% 50%, rgba(0,137,123,.25) 0%, transparent 60%);
pointer-events: none;
}
.numbers-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
margin-top: 52px;
position: relative;
z-index: 1;
}
.num-card {
text-align: center;
padding: 32px 20px;
border: 1px solid rgba(255,255,255,.08);
border-radius: 20px;
background: rgba(255,255,255,.04);
backdrop-filter: blur(4px);
transition: border-color .3s, background .3s, transform .3s;
}
.num-card:hover {
border-color: rgba(0,137,123,.4);
background: rgba(0,137,123,.08);
transform: translateY(-5px);
}
.num-card .big-num {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: clamp(34px, 4vw, 52px);
color: #fff;
display: block;
margin-bottom: 8px;
counter-reset: num;
}
.num-card .big-num .acc { color: var(--accent); }
.num-card .num-label {
font-size: 13px;
color: rgba(255,255,255,.45);
font-family: 'Montserrat', sans-serif;
font-weight: 600;
letter-spacing: .5px;
}
/* ══════════════════════════════════════════
TOP SECTIONS
══════════════════════════════════════════ */
.top-section { background: var(--body-bg); }
.top-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 52px;
}
.top-item {
background: var(--main-bg);
border-radius: 14px;
padding: 20px 22px;
display: flex;
align-items: center;
gap: 16px;
box-shadow: var(--shadow);
transition: transform .2s, box-shadow .2s;
}
.top-item:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.top-rank {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 22px;
color: var(--block-bg);
width: 36px;
flex-shrink: 0;
}
.top-item:nth-child(1) .top-rank { color: #f4c430; }
.top-item:nth-child(2) .top-rank { color: #b0b8c1; }
.top-item:nth-child(3) .top-rank { color: #cd7f32; }
.top-info { flex: 1; }
.top-name {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: var(--auth);
margin-bottom: 3px;
}
.top-meta {
font-size: 12px;
color: var(--text-col);
}
.top-count {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 15px;
color: var(--accent);
white-space: nowrap;
}
/* ══════════════════════════════════════════
CTA
══════════════════════════════════════════ */
.cta-section {
background: var(--accent);
position: relative;
overflow: hidden;
text-align: center;
}
.cta-section::before {
content: '';
position: absolute;
width: 500px; height: 500px;
border-radius: 50%;
background: rgba(255,255,255,.06);
top: -200px; right: -100px;
}
.cta-section::after {
content: '';
position: absolute;
width: 300px; height: 300px;
border-radius: 50%;
background: rgba(255,255,255,.05);
bottom: -100px; left: -50px;
}
.cta-inner {
position: relative;
z-index: 1;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-label { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.cta-section .section-sub { color: rgba(255,255,255,.7); margin: 0 auto 36px; }
.cta-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: #fff;
color: var(--accent) !important;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 15px;
padding: 16px 36px;
border-radius: 12px;
transition: transform .2s, box-shadow .2s;
box-shadow: 0 6px 28px rgba(0,0,0,.2);
}
.cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.cta-domain {
display: block;
margin-top: 20px;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
color: rgba(255,255,255,.55);
}
/* ══════════════════════════════════════════
FOOTER
══════════════════════════════════════════ */
footer {
background: var(--foot-bg);
padding: 60px 24px 30px;
}
.footer-inner {
max-width: 1200px;
margin: 0 auto;
}
.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
}
.footer-logo .logo-icon {
width: 38px; height: 38px;
background: var(--accent);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 18px;
color: #fff;
}
.footer-logo .logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 20px;
color: #fff;
}
.footer-about {
font-size: 14px;
color: rgba(255,255,255,.45);
line-height: 1.65;
margin-bottom: 20px;
}
.footer-col-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 13px;
letter-spacing: .5px;
color: rgba(255,255,255,.5);
text-transform: uppercase;
margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
font-size: 14px;
color: rgba(255,255,255,.55);
transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 28px;
flex-wrap: wrap;
gap: 16px;
}
.footer-copy {
font-size: 13px;
color: rgba(255,255,255,.3);
}
.footer-copy a { color: var(--accent); }
.footer-since {
display: flex;
align-items: center;
gap: 8px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 12px;
color: rgba(255,255,255,.25);
letter-spacing: 1px;
}
/* ══════════════════════════════════════════
MOBILE NAV OVERLAY
══════════════════════════════════════════ */
.mobile-nav {
display: none;
position: fixed;
inset: 0;
background: var(--auth);
z-index: 999;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 24px;
color: #fff;
transition: color .2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-close {
position: absolute;
top: 18px; right: 24px;
font-size: 28px;
color: rgba(255,255,255,.5);
cursor: pointer;
background: none; border: none;
line-height: 1;
}
/* ══════════════════════════════════════════
SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* ══════════════════════════════════════════
RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
.nav-links { display: none; }
.burger { display: flex; }
.hero-inner {
grid-template-columns: 1fr;
text-align: center;
}
.hero-slogan { justify-content: center; }
.hero-desc { margin: 0 auto 40px; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; }
.hero-visual { display: none; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.features-grid { grid-template-columns: 1fr 1fr; }
.numbers-grid { grid-template-columns: 1fr 1fr; }
.top-list { grid-template-columns: 1fr; }
.footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
.features-grid { grid-template-columns: 1fr; }
.numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
.cat-grid { grid-template-columns: 1fr; }
.footer-top { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
section { padding: 64px 20px; }
}