@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap"); :root { --c-red: #E52020;
--c-red-invert: #20dae5;
--c-red-hover: #CC1A1A;
--c-red-light: rgba(229, 32, 32, 0.08);
--c-red-glow: rgba(229, 32, 32, 0.25); --f-heading: 'Plus Jakarta Sans', sans-serif;
--f-body: 'DM Sans', sans-serif; --s-xs: 4px;
--s-sm: 8px;
--s-md: 16px;
--s-lg: 24px;
--s-xl: 32px;
--s-2xl: 48px;
--s-3xl: 64px;
--s-4xl: 96px;
--s-5xl: 128px;
--s-6xl: 192px; --r-sm: 8px;
--r-md: 12px;
--r-lg: 20px;
--r-xl: 24px;
--r-2xl: 32px;
--r-3xl: 48px;
--r-full: 9999px; --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
--t-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
--t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
--t-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); --container-max: 1280px;
--nav-height: 64px; --shadow-red: 0 4px 24px rgba(229, 32, 32, 0.3); --red-sphere:#DC2626;--red-h-sphere:#EF4444;--red-d-sphere:#B91C1C;
--red-glow-sphere:rgba(220,38,38,.35);--red-soft-sphere:rgba(220,38,38,.12);
--bg-sphere:#0C0C10;--surface-sphere:#111116;
--border-sphere:rgba(255,255,255,.07);--border-red-sphere:rgba(220,38,38,.18);
--text-sphere:#F9FAFB;--text2-sphere:#9CA3AF;--text3-sphere:rgba(255,255,255,.4);
} [data-theme="light"], :root {
--bg-primary: #FFFFFF;
--bg-secondary: #F5F5F7;
--bg-tertiary: #EBEBEF;
--bg-card: #FFFFFF;
--bg-card-alt: #f8f9fa;
--bg-elevated: #FFFFFF;
--bg-hero: #0A0A0A;
--bg-invert: #0A0A0A;
--bg-nav: rgba(255, 255, 255, 0.82);
--bg-nav-scrolled: rgba(255, 255, 255, 0.95);
--text-primary: #0A0A0A;
--text-secondary: #555555;
--text-tertiary: #888888;
--text-invert: #FFFFFF;
--text-on-hero: #FFFFFF;
--border-primary: rgba(0, 0, 0, 0.08);
--border-secondary: rgba(0, 0, 0, 0.04);
--border-hover: rgba(229, 32, 32, 0.3);
--shadow-card: 0 2px 20px rgba(0,0,0,0.04);
--shadow-card-hover: 0 12px 40px rgba(0,0,0,0.08);
--shadow-nav: 0 4px 30px rgba(0,0,0,0.08);
--shadow-modal: 0 24px 80px rgba(0,0,0,0.2);
--nav-link-color: #FFFFFF;
--nav-link-hover: #FFFFFF;
--nav-cta-bg: var(--c-red);
--nav-cta-color: #FFFFFF;
--nav-burger-bg: rgba(245, 245, 247, 0.1);
--nav-burger-color: #0A0A0A;
--overlay: rgba(0, 0, 0, 0.5);
--code-bg: #F0F0F3;
} [data-theme="dark"] {
--bg-primary: #0A0A0A;
--bg-secondary: #111111;
--bg-tertiary: #1A1A1A;
--bg-card: #151515;
--bg-card-alt: #1A1A1A;
--bg-elevated: #1A1A1A;
--bg-hero: #0A0A0A;
--bg-invert: #FFFFFF;
--bg-nav: rgba(20, 20, 20, 0.85);
--bg-nav-scrolled: rgba(10, 10, 10, 0.95);
--text-primary: #F0F0F0;
--text-secondary: #ABABAB;
--text-tertiary: #787878;
--text-invert: #0A0A0A;
--text-on-hero: #FFFFFF;
--border-primary: rgba(255, 255, 255, 0.08);
--border-secondary: rgba(255, 255, 255, 0.04);
--border-hover: rgba(229, 32, 32, 0.4);
--shadow-card: 0 2px 20px rgba(0,0,0,0.3);
--shadow-card-hover: 0 12px 40px rgba(0,0,0,0.5);
--shadow-nav: 0 4px 30px rgba(0,0,0,0.3);
--shadow-modal: 0 24px 80px rgba(0,0,0,0.6);
--nav-link-color: rgba(255, 255, 255, 0.7);
--nav-link-hover: rgba(255, 255, 255, 0.08);
--nav-cta-bg: var(--c-red);
--nav-cta-color: #FFFFFF;
--nav-burger-bg: rgba(255,255,255,0.1);
--nav-burger-color: #FFFFFF;
--overlay: rgba(0, 0, 0, 0.7);
--code-bg: #1E1E22;
} body, .nav, .card, .service-card, .pain-card, .why-card, .stat-item,
.case-block, .compare-card, .blog-card, .footer, section, .modal-content {
transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
} *, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--f-body);
color: var(--text-primary);
background: var(--bg-primary);
line-height: 1.6;
overflow-x: hidden;
cursor: none;
} @media (hover: none) {
body { cursor: auto; }
.cursor-dot, .cursor-ring { display: none !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
ul, ol { list-style: none; } .cursor-dot {
width: 8px;
height: 8px;
background: var(--c-red);
border-radius: 50%;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 10001;
transform: translate(-50%, -50%);
transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
width: 40px;
height: 40px;
border: 1.5px solid rgba(229, 32, 32, 0.4);
border-radius: 50%;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 10000;
transform: translate(-50%, -50%);
transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
body.cursor-hover .cursor-dot {
width: 12px;
height: 12px;
background: var(--c-red);
}
body.cursor-hover .cursor-ring {
width: 56px;
height: 56px;
border-color: rgba(229, 32, 32, 0.6);
background: rgba(229, 32, 32, 0.06);
} h1, h2, h3, h4, h5, h6 {
font-family: var(--f-heading);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--text-primary);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
p {
font-size: 1rem;
line-height: 1.7;
color: var(--text-secondary);
}
.text-red { color: var(--c-red); } .container {
width: 100%;
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--s-lg);
} section {
padding: var(--s-4xl) 0;
position: relative;
background: var(--bg-primary);
transition: background 1s ease;
}
.section-alt {
border-radius: var(--r-3xl);
z-index: 1;
background: var(--bg-primary);
transition: background 1s ease;
}
.section-dark-always {
background: #0A0A0A !important;
color: #FFFFFF;
}
.section-dark-always h1,
.section-dark-always h2,
.section-dark-always h3,
.section-dark-always h4 {
color: #FFFFFF;
}
.section-dark-always p {
color: #ABABAB;
}
.section-header {
text-align: center;
max-width: 720px;
margin: 0 auto var(--s-3xl);
}
.section-header p {
margin-top: var(--s-md);
}
.section-tag {
display: inline-flex;
align-items: center;
gap: var(--s-sm);
background: var(--c-red-light);
color: var(--c-red);
font-size: 0.8125rem;
font-weight: 600;
padding: 6px 16px;
border-radius: var(--r-full);
text-transform: uppercase;
letter-spacing: 0.05em;
} .nav-wrapper {
position: fixed;
top: 16px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
width: calc(100% - 32px);
max-width: 900px;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.nav {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
background: var(--bg-nav);
border-radius: var(--r-full);
padding: 8px 8px 8px 24px; 
background: rgba(28, 21, 27, .81);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-radius: 100px;
display: flex;
gap: 4px;
box-shadow: var(--shadow-nav);   
}
.nav.scrolled {
}
.nav-logo {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-text {
font-family: var(--f-heading);
font-weight: 800;
font-size: 1rem;
color: var(--text-on-hero);
letter-spacing: -0.01em;
}
.nav-links {
display: flex;
align-items: center;
gap: 4px;
}
.nav-link {
color: var(--nav-link-color);
font-size: 0.875rem;
font-weight: 500;
padding: 8px 16px;
border-radius: var(--r-full);
transition: var(--t-fast);
white-space: nowrap;
}
.nav-link:hover {
color: var(--text-primary);
background: var(--nav-link-hover);
}
.nav-right {
display: flex;
align-items: center;
gap: 6px;
} .theme-toggle {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: var(--nav-burger-bg);
color: var(--text-on-hero);
transition: var(--t-fast);
flex-shrink: 0;
}
.theme-toggle:hover {
background: var(--c-red-light);
color: var(--c-red);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
.nav-cta {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--nav-cta-bg);
color: var(--nav-cta-color);
font-size: 0.875rem;
font-weight: 600;
padding: 10px 24px;
border-radius: var(--r-full);
transition: var(--t-fast);
white-space: nowrap;
}
.nav-cta:hover {
background: var(--c-red-hover);
transform: scale(1.02);
}
.nav-burger {
display: none;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--nav-burger-bg);
color: var(--nav-burger-color);
flex-shrink: 0;
}
.nav-burger svg { width: 20px; height: 20px; }
.nav-burger svg line {
stroke: var(--nav-link-color);
} .mobile-menu {
display: none;
position: fixed;
inset: 0;
background: rgba(10, 10, 10, 0.98);
backdrop-filter: blur(20px);
z-index: 999;
padding: 100px 24px 40px;
flex-direction: column;
gap: 8px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
color: #FFFFFF;
font-size: 1.5rem;
font-family: var(--f-heading);
font-weight: 600;
padding: 16px 0;
border-bottom: 1px solid rgba(255,255,255,0.06);
transition: var(--t-fast);
}
.mobile-menu a:hover { color: var(--c-red); }
.mobile-menu-close {
position: absolute;
top: 24px;
right: 24px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255,255,255,0.1);
color: white;
} .hero {
position: relative;
min-height: 900px; 
height: 105vh;
display: flex;
align-items: center;
background: var(--bg-hero) !important;
overflow: hidden;
padding-top: 0;
padding-bottom: var(--s-4xl);
}
.hero-gradient-bg {
position: absolute;
inset: 0;
z-index: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(229,32,32,0.12) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(229,32,32,0.06) 0%, transparent 50%),
#0A0A0A;
}
.hero__gradient {
animation: waveScale 3s ease-in-out infinite alternate;
bottom: -2px;
height: 100%;
left: 0;
pointer-events: none;
position: absolute;
right: 0;
transform-origin: bottom;
width: 100%;
mix-blend-mode: exclusion;
}
.hero__gradient-img {
bottom: 0;
filter: contrast(1.4);
-o-object-fit: fill;
object-fit: fill;
position: absolute;
transform: scaleY(.1);
transform-origin: bottom;
} .hero-particles {
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
pointer-events: none;
}
.hero-particle {
position: absolute;
border-radius: 50%;
opacity: 0.15;
animation: floatParticle linear infinite;
}
@keyframes floatParticle {
0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
10% { opacity: 0.15; }
90% { opacity: 0.15; }
100% { transform: translateY(-100vh) translateX(40px) rotate(360deg); opacity: 0; }
}
@keyframes waveScale {
0% {
transform: scaleY(.8)
}
to {
transform: scaleY(1.2)
}
}
.hero-content {
max-width: 800px;
}
.hero-badge {
position: relative;
z-index: 2;
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(229, 32, 32, 0.12);
border: 1px solid rgba(229, 32, 32, 0.2);
color: var(--c-red);
font-size: 0.8125rem;
font-weight: 600;
padding: 8px 20px;
border-radius: var(--r-full);
margin-bottom: var(--s-xl);
width: fit-content;
animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
content: '';
width: 6px;
height: 6px;
background: var(--c-red);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.hero h1 {
position: relative;
z-index: 2;
mix-blend-mode: difference;
margin-bottom: var(--s-lg);
animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 span.text-red {
background: linear-gradient(135deg, var(--c-red), var(--c-red-hover));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero h1 span:not(.text-red) {
position: relative;
z-index: 2;
mix-blend-mode: difference;
color: var(--text-on-hero) !important;
}
.hero-desc {
position: relative;
z-index: 2;
font-size: 1.125rem;
color: #ABABAB;
line-height: 1.7;
max-width: 600px;
margin-bottom: var(--s-2xl);
animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
position: relative;
z-index: 2;
display: flex;
gap: var(--s-md);
flex-wrap: wrap;
animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions .btn-outline {
background-color: #170b0b;
}
.hero-actions .btn-outline:hover {
background-color: #220e0e;
}
.hero-stats {
position: relative;
mix-blend-mode: difference;
display: flex;
gap: var(--s-3xl);
margin-top: var(--s-3xl);
animation: fadeUp 0.8s 0.4s ease both;
z-index: 2;
}
.hero-stat {
position: relative;
display: flex;
align-items: center;
flex-direction: column;
gap: 4px;
}
.hero-stat-value {
font-family: var(--f-heading);
font-size: 2.5rem; 
font-weight: 800;
color: var(--text-on-hero);
line-height: 1;
}
.hero-stat-label {
font-size: 0.875rem;
color: #787878;
margin-top: 4px;
}
.hero-stat-dot{position:absolute;top:-4px;right:-4px;width:7px;height:7px;border-radius:50%;background:var(--red-d-sphere);box-shadow:0 0 10px var(--red-glow-sphere);opacity:0;transition:opacity .3s;pointer-events:none}
.hero-stat.linked .hero-stat-dot{opacity:1}
.hero-stat.linked .hero-stat-value {
color:var(--red-d-sphere);
text-shadow:0 0 20px var(--red-glow-sphere)
} .hero-float-object {
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
z-index: 2;
width: 450px;
height: 450px;
pointer-events: none;
}
.hero-float-inner {
width: 100%;
height: 100%;
animation: heroFloat 6s ease-in-out infinite;
filter: drop-shadow(0 20px 60px rgba(229, 32, 32, 0.2));
}
@keyframes heroFloat {
0%, 100% { transform: translateY(0) rotate(0deg); }
33% { transform: translateY(-20px) rotate(2deg); }
66% { transform: translateY(10px) rotate(-1deg); }
}
.hero-ratings {
position: relative;
margin-bottom: var(--s-xl);
display: flex;
gap: var(--s-xl);
flex-wrap: wrap;
z-index: 2;
animation: fadeUp 0.8s 0.4s ease both;
}
.hero-ratings .rating-card {
background: rgba(43, 23, 23, 0.5);
border-radius: var(--r-md);
padding: var(--s-md);
display: flex;
align-items: center;
gap: var(--s-sm);
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
max-width: 250px;
min-width: 190px;
width: fit-content;
height: fit-content;
}
.hero-ratings .rating-card__logo {
width: auto;
height: 28px;
display: flex;
align-items: center;
}
.hero-ratings .rating-card__logo img {
width: auto;
height: 30px;
object-fit: contain;
}
.hero-ratings .rating-card__divider {
width: 100%;
height: 1px;
background: #301414;
}
.hero-ratings .rating-card__score {
display: flex;
align-items: center;
gap: var(--s-md);
}
.hero-ratings .rating-card__score .rating-card__value {
font-size: 1.2rem;
font-weight: 600;
color: #FFFFFF;
}
.hero-ratings .rating-card__score .rating-card__stars {
display: flex;
align-items: center;
} .sphere-zone {
position: absolute;
top: 50%;
right: -380px;
transform: translateY(-50%);
width: 900px;
height: 900px;
z-index: 0;
pointer-events: none;
}
.sphere-zone .interactive {
pointer-events: auto
} .sphere-zone {
opacity:0;
animation: sphere-enter 1.8s cubic-bezier(.22,1,.36,1) .3s forwards
}
@keyframes sphere-enter{
0%{ opacity:0; transform:translateY(-50%) scale(.7); filter:blur(20px); }
60%{ opacity:1; filter:blur(0); }
100%{ opacity:1; transform:translateY(-50%) scale(1); filter:blur(0); }
}
.sphere-glow-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 860px;
height: 860px;
border-radius: 50%;
border: 1px solid rgba(220,38,38,.04);
pointer-events: none;
}
.sphere-glow-ring::after {
content: '';
position: absolute;
inset: 40px;
border-radius: 50%;
border: 1px dashed rgba(220,38,38,.06);
animation: orb 80s linear infinite;
}
@keyframes orb {from{ transform:rotate(0) } to { transform:rotate(360deg) } }
.sphere-amb {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 700px;
height: 700px;
border-radius: 50%;
background: radial-gradient(circle,rgba(220,38,38,.08) 0%,rgba(220,38,38,.02) 40%,transparent 65%);
pointer-events: none;
animation: abr 6s ease-in-out infinite;
}
@keyframes abr { 0%,100% { opacity:.5; transform:translate(-50%,-50%) scale(1) } 50% { opacity:.85; transform:translate(-50%,-50%) scale(1.04)} }
#sphereSvg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: crosshair;
}
.hex {
cursor: pointer;
}
#pCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 3;
} .pulse-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
border-radius: 50%;
border: 2px solid var(--red-sphere);
pointer-events: none;
z-index: 4;
opacity: 0;
width: 10px;
height: 10px;
} .svc-tag {
position: absolute;
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
background: rgba(12,12,16,.9);
border: 1px solid rgba(220,38,38,.12);
border-radius: 8px;
font-size: .72rem;
font-weight: 500;
color: rgba(255,255,255,.75);
z-index: 20;
backdrop-filter: blur(12px);
white-space: nowrap;
opacity: 0;
transform: translateX(12px);
transition: opacity .5s,transform .5s;
pointer-events: none;
box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.svc-tag.on {
opacity: 1;
transform: translateX(0);
}
.svc-tag .ico {
width:22px;
height:22px;
border-radius:6px;
background:rgba(220,38,38,.12);
display:grid;
place-items:center;
flex-shrink:0
}
.svc-tag .ico svg {
width: 12px;
height: 12px;
fill: none;
stroke: var(--red-h-sphere);
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.svc-tag.t1 {
top: 9%;
left: 12%;
transition-delay: 0s;
}
.svc-tag.t2 {
top: 26%;
left: 0%;
transition-delay: .1s;
}
.svc-tag.t3 {
bottom: 29%;
left: 0%;
transition-delay: .2s;
}
.svc-tag.t4 {
bottom: 50%;
left: -5%;
transition-delay: .3s;
}
.svc-tag.t5 {
bottom: 10%;
left: 10%;
transition-delay: .3s;
} .chat-bubble {
position: absolute;
padding: 6px 12px;
background: rgba(17,17,22,.92);
border: 1px solid rgba(220,38,38,.15);
border-radius: 10px 10px 10px 2px;
font-size: .65rem;
font-weight: 500;
color: rgba(255,255,255,.7);
z-index: 15;
pointer-events: none;
white-space: nowrap;
opacity: 0;
backdrop-filter: blur(8px);
box-shadow: 0 4px 16px rgba(0,0,0,.35);
animation: bubble-float 4s ease-out forwards;
}
.chat-bubble .cb-ico{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border-radius:4px;margin-right:6px;flex-shrink:0;vertical-align:middle}
.chat-bubble .cb-ico svg{width:10px;height:10px;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.chat-bubble .cb-ico.green{background:rgba(34,197,94,.15)}
.chat-bubble .cb-ico.green svg{stroke:#22c55e}
.chat-bubble .cb-ico.amber{background:rgba(245,158,11,.15)}
.chat-bubble .cb-ico.amber svg{stroke:#f59e0b}
.chat-bubble .cb-ico.red{background:rgba(220,38,38,.15)}
.chat-bubble .cb-ico.red svg{stroke:var(--red-h-sphere)}
.chat-bubble .cb-ico.blue{background:rgba(59,130,246,.15)}
.chat-bubble .cb-ico.blue svg{stroke:#3b82f6}
@keyframes bubble-float{
0%{opacity:0;transform:translateY(0) scale(.85)}
12%{opacity:1;transform:translateY(-8px) scale(1)}
75%{opacity:1;transform:translateY(-40px)}
100%{opacity:0;transform:translateY(-60px) scale(.9)}
} .tt{position:fixed;background:rgba(12,12,16,.95);border:1px solid rgba(220,38,38,.2);padding:8px 14px;font-size:.72rem;font-weight:500;color:rgba(255,255,255,.8);pointer-events:none;z-index:300;opacity:0;transition:opacity .12s;border-radius:8px;backdrop-filter:blur(12px);box-shadow:0 8px 30px rgba(0,0,0,.45)}
.tt em{color:var(--red-h-sphere);font-style:normal;font-weight:600}
.tt small{color:var(--text3-sphere);margin-left:6px;font-family:monospace;font-size:.62rem}
@media(max-width:1200px){
.sphere-zone{right:-420px;width:800px;height:800px}
.sphere-glow-ring{width:760px;height:760px}
.sphere-amb{width:600px;height:600px}
}
@media(max-width:960px){
.sphere-zone{
top:auto;right:auto;transform:none;
width:480px;height:480px;
margin:24px auto 48px;
order:2; animation:sphere-enter-m 1.6s cubic-bezier(.22,1,.36,1) .3s forwards;
}
@keyframes sphere-enter-m{
0%{opacity:0;transform:scale(.7);filter:blur(16px)}
60%{opacity:1;filter:blur(0)}
100%{opacity:1;transform:scale(1);filter:blur(0)} 
} 
#sphereSvg,#pCanvas{ 
position:absolute;
width:480px;height:480px;
left:50%;top:50%;transform:translate(-50%,-50%);
}
.sphere-amb{width:440px;height:440px}
.sphere-glow-ring{width:460px;height:460px}
.svc-tag.t1{top:2%;left:5%}
.svc-tag.t2{top:30%;left:-4%}
.svc-tag.t3{bottom:28%;left:-2%}
.svc-tag.t4{bottom:4%;left:8%} .hero { padding-top: 100px; min-height: auto; overflow: hidden; }  
.hero-content { text-align: center; }
.hero-ratings { justify-content: center; flex-wrap: nowrap; }
.hero-desc { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; margin-top: var(--s-3xl); }
#services {
overflow: hidden;
}
}
@media(max-width:767px){
.sphere-zone{width:340px;height:340px;margin:16px auto 36px}
#sphereSvg,#pCanvas{width:340px;height:340px}
.sphere-amb{width:310px;height:310px}
.sphere-glow-ring{width:320px;height:320px} 
.svc-tag{font-size:.58rem;padding:5px 9px}
.svc-tag .ico{width:17px;height:17px}
.svc-tag .ico svg{width:9px;height:9px}
.svc-tag.t1{top:0%;left:2%}
.svc-tag.t2{top:28%;left:0%}
.svc-tag.t3{bottom:26%;left:0%}
.svc-tag.t4{bottom:2%;left:4%}
.hero h1 br { display: none; }
.hero-ratings .rating-card {
width: 50%;
}
.hero-ratings .rating-card__logo img {
height: 22px;
}
.hero-ratings .rating-card__score .rating-card__value {
font-size: 1rem;
}
}
@media(max-width:400px){
.sphere-zone{width:280px;height:280px}
#sphereSvg,#pCanvas{width:280px;height:280px}
.sphere-amb{width:250px;height:250px}
.sphere-glow-ring{width:260px;height:260px}
} @media(prefers-reduced-motion:reduce){
.sphere-zone{animation:none!important;opacity:1!important;transform:translateY(-50%) scale(1)!important;filter:none!important}
.sphere-amb,.sphere-glow-ring::after,.badge::before{animation:none!important}
.pulse-ring{display:none!important}
.chat-bubble{display:none!important}
.hex{transition:none!important} } .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
font-family: var(--f-body);
font-weight: 600;
font-size: 0.9375rem;
padding: 14px 32px;
border-radius: var(--r-full);
transition: var(--t-fast);
white-space: nowrap;
border: none;
}
.btn-primary {
background: var(--c-red);
color: #FFFFFF;
box-shadow: var(--shadow-red);
}
.btn-primary:hover {
background: var(--c-red-hover);
transform: translateY(-1px);
box-shadow: 0 6px 30px rgba(229, 32, 32, 0.4);
}
.btn-secondary {
background: var(--bg-invert);
color: var(--text-invert);
}
.btn-secondary:hover {
opacity: 0.85;
transform: translateY(-1px);
}
.btn-outline {
background: transparent;
color: #FFFFFF;
border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(255,255,255,0.35);
}
.btn-outline-themed {
background: transparent;
color: var(--text-primary);
border: 1px solid var(--border-primary);
}
.btn-outline-themed:hover {
border-color: var(--c-red);
color: var(--c-red);
}
.btn-dark {
background: #0A0A0A;
color: #FFFFFF;
}
.btn-dark:hover {
background: #1A1A1A;
transform: translateY(-1px);
}
.btn-sm { font-size: 0.8125rem; padding: 10px 20px; }
.btn-lg { font-size: 1rem; padding: 16px 40px; } #problems {
transition: var(--t-normal);
}
#problems.active {
transform: translateY(0);
}
.pain-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--s-lg);
}
.pain-card {
background: var(--bg-card);
border-radius: var(--r-xl);
padding: var(--s-xl) var(--s-lg);
text-align: center;
transition: var(--t-normal);
position: relative;
overflow: hidden;
}
.pain-card::before {
content: attr(data-num);
position: absolute;
top: -35px;
right: -20px;
font-family: var(--f-heading);
font-size: 10rem;
font-weight: 800;
color: var(--border-secondary);
line-height: 1;
pointer-events: none;
opacity: 0.5;
}
.pain-card:hover {
border-color: var(--border-hover);
transform: translateY(-4px);
box-shadow: var(--shadow-card-hover);
}
.pain-card h4 {
color: var(--c-red);
font-size: 1.125rem;
margin-bottom: var(--s-md);
}
.pain-icon {
width: 56px;
height: 56px;
margin: 0 auto var(--s-md);
background: var(--bg-card-alt);
border-radius: var(--r-md);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
}
.pain-icon svg { width: 24px; height: 24px; } .services-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--s-lg);
}
.service-card-hero {
grid-row: 1 / 4;
background: #0A0A0A;
border-radius: var(--r-2xl);
padding: var(--s-2xl);
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end;
min-height: 480px;
}
.service-card-hero h3 {
color: #FFFFFF !important;
font-size: clamp(1.75rem, 3vw, 2.25rem);
margin-bottom: var(--s-sm);
}
.service-card-hero p {
color: #ABABAB;
} .service-hero-illustration {
position: absolute;
top: 40%;
right: 20%;
transform: translateY(-60%);
width: 400px;
height: 400px;
animation: levitate 5s ease-in-out infinite;
pointer-events: none;
}
@keyframes levitate {
0%, 100% { transform: translateY(-60%) rotate(0deg); }
50% { transform: translateY(-68%) rotate(3deg); }
}
.service-card-small {
background: var(--bg-card-alt);
border-radius: var(--r-xl);
padding: var(--s-xl) var(--s-lg);
transition: var(--t-normal)!important;
position: relative;
overflow: hidden;
}
.service-card-small:hover {
border-color: var(--border-hover);
}
.service-card-small h4 {
font-size: 1.25rem;
margin-bottom: var(--s-sm);
} .service-float-icon {
position: absolute;
right: -20px;
top: -20px;
width: 90px;
height: 90px;
border-radius: var(--r-md);
display: flex;
opacity: 0.05;
align-items: center;
justify-content: center;
color: var(--text-primary);
}
.service-float-icon svg { width: 100%; height: 100%; }
@keyframes microFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
} .formula-block {
border-radius: var(--r-xl, 24px);
padding: 32px 40px;
margin-top: 40px;
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
flex-wrap: wrap;
} .formula-item {
display: flex;
align-items: center;
gap: 16px;
padding: 24px 40px;
background: var(--bg-card-alt); border-radius: 16px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: default;
} .formula-item:not(.result-item):hover {
transform: translateY(-4px);
background: var(--bg-primary);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
border-color: rgba(229, 32, 32, 0.2);
}
.formula-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--bg-primary);
border-radius: 12px;
color: var(--text-primary);
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
transition: transform 0.3s ease;
}
.formula-item:hover .formula-icon {
transform: scale(1.1) rotate(-5deg);
color: var(--c-red, #E52020);
} @keyframes spinSlow {
100% { transform: rotate(360deg); }
}
.formula-item:hover .ai-sparkle svg {
animation: spinSlow 4s linear infinite;
}
.formula-text {
display: flex;
flex-direction: column;
}
.formula-label {
color: var(--text-primary);
font-family: var(--f-heading, sans-serif);
font-weight: 700;
font-size: 1.125rem;
line-height: 1.2;
}
.formula-desc {
color: var(--text-secondary);
font-size: 0.875rem;
margin-top: 4px;
} .formula-sep {
color: var(--c-red, #E52020);
font-size: 1.5rem;
font-weight: 500;
opacity: 1;
} @keyframes softPulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.2); opacity: 1; }
}
.formula-sep.pulse { } .result-item {
background: rgba(229, 32, 32, 0.05); position: relative;
overflow: hidden;
}
.result-item .formula-label {
color: var(--c-red, #E52020);
}
.result-item .formula-icon {
background: var(--c-red, #E52020);
color: var(--text-on-hero);
}
.result-item:hover .formula-icon {
color: var(--text-on-hero);
} .result-item::before {
content: '';
position: absolute;
top: 0; left: -100%; width: 50%; height: 100%;
background: linear-gradient(90deg, transparent, var(--text-on-hero), transparent);
transform: skewX(-20deg);
animation: shine 4s infinite 2s; }
@keyframes shine {
0% { left: -100%; }
20% { left: 200%; }
100% { left: 200%; }
} @keyframes slideUpFade {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.visible .formula-item {
animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
opacity: 0;
}  .ceo-video-block {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: var(--s-2xl);
align-items: start;
background: var(--c-dark-2);
border-radius: var(--r-2xl);
margin-bottom: var(--s-xl);
} .ceo-video-wrapper {
position: relative;
width: 100%;
}
.ceo-video-container {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
border-radius: var(--r-xl);
overflow: hidden;
background: var(--c-dark-3);
} .ceo-video-poster {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
cursor: none;
z-index: 2;
}
.ceo-video-gradient {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 40%, rgba(229, 32, 32, 0.12) 0%, transparent 60%), linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.4) 100%);
z-index: 1;
}
.ceo-video-poster-placeholder {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--c-dark-2), var(--c-dark-3));
}
.ceo-video-poster-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: var(--r-xl);
} .ceo-video-play {
position: relative;
z-index: 3;
width: 72px;
height: 72px;
border-radius: 50%;
background: rgba(229, 32, 32, 0.9);
color: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
border: none;
cursor: none;
transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
box-shadow: 0 8px 32px rgba(229, 32, 32, 0.4);
}
.ceo-video-play:hover {
transform: scale(1.08);
box-shadow: 0 12px 40px rgba(229, 32, 32, 0.55);
}
.ceo-video-play svg {
width: 64px;
height: 64px;
margin-left: 2px;
} .ceo-video-play-ring {
position: absolute;
inset: -8px;
border-radius: 50%;
border: 2px solid rgba(229, 32, 32, 0.4);
animation: ceoPlayRing 2.5s ease-out infinite;
}
@keyframes ceoPlayRing {
0% {
transform: scale(1);
opacity: 0.6;
}
100% {
transform: scale(1.5);
opacity: 0;
}
} .ceo-video-container.playing .ceo-video-poster {
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
} .ceo-video-info {
padding: var(--s-sm) 0;
}
.ceo-video-author {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: var(--s-lg);
}
.ceo-video-avatar {
width: 48px;
height: 48px;
border-radius: 14px;
background: linear-gradient(135deg, var(--c-red), #FF5252);
color: #FFFFFF;
font-family: var(--f-heading);
font-weight: 700;
font-size: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
}
.ceo-video-name {
font-family: var(--f-heading);
font-weight: 700;
font-size: 1rem;
color: var(--c-white);
line-height: 1.3;
}
.ceo-video-role {
font-size: 0.8125rem;
color: var(--c-gray-400);
margin-top: 1px;
}
.ceo-video-title {
font-family: var(--f-heading);
font-size: clamp(1.125rem, 2vw, 1.375rem);
font-weight: 700;
color: var(--c-white);
line-height: 1.3;
margin-bottom: var(--s-lg);
} .ceo-video-points {
display: flex;
flex-direction: column;
gap: 2px;
margin-bottom: var(--s-lg);
}
.ceo-video-point {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 0;
border-radius: var(--r-md);
transition: background 0.2s;
cursor: none;
}
.ceo-video-point:hover {
background: rgba(255,255,255,0.04);
}
.ceo-video-point-time {
font-family: var(--f-heading);
font-size: 0.8125rem;
font-weight: 700;
color: var(--c-red);
min-width: 45px;
padding: 4px 0;
border-radius: 6px;
text-align: center;
background: rgba(229,32,32,0.1);
}
.ceo-video-point-text {
font-size: 0.875rem;
color: var(--c-gray-300);
line-height: 1.4;
} .ceo-video-quote {
margin-top: var(--s-3xl);
padding: 16px 18px;
margin-bottom: var(--s-3xl);
background: var(--bg-card-alt);
border-radius: var(--r-md);
border-left: 3px solid var(--c-red);
box-shadow: var(--shadow-card);
}
.ceo-video-quote svg {
color: var(--c-white);
margin-bottom: 6px;
}
.ceo-video-quote p {
font-size: 0.875rem;
font-style: italic;
color: var(--c-gray-300);
line-height: 1.6;
} @media (max-width: 1024px) {
.ceo-video-block {
grid-template-columns: 1fr;
gap: var(--s-xl);
}
}
@media (max-width: 768px) {
.ceo-video-block {
padding: 0;
}
.ceo-video-play {
width: 60px;
height: 60px;
}
.ceo-video-play svg {
width: 20px;
height: 20px;
}
.ceo-video-points {
gap: 0;
}
.ceo-video-point {
padding: 8px 10px;
}
} .compare-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--s-lg);
margin-bottom: var(--s-2xl);
}
.compare-card {
position: relative;
overflow: hidden;
border-radius: var(--r-xl);
padding: var(--s-2xl);
}
.compare-card.before {
background: var(--bg-elevated);
}
.compare-card.after {
background: var(--bg-card);
border: 2px solid var(--c-red);
}
.compare-accent {
position: absolute;
top: -10px;
right: -10px;
width: 45%;
max-width: 240px;
aspect-ratio: 4 / 3;
border-radius: 0 var(--r-xl, 20px) 0 var(--r-2xl, 32px);
overflow: hidden;
pointer-events: none;
z-index: 0;
}
.compare-accent svg {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.compare-tag,
.compare-list {
position: relative;
z-index: 1;
}
.compare-card.before .compare-accent {
mask-image: radial-gradient(
ellipse 90% 90% at 85% 15%,
black 20%,
transparent 70%
);
-webkit-mask-image: radial-gradient(
ellipse 90% 90% at 85% 15%,
black 20%,
transparent 70%
);
}
.compare-card.before .compare-accent svg {
filter: grayscale(100%) contrast(0.8) brightness(0.6);
mix-blend-mode: luminosity;
opacity: 0.35;
} .compare-card.before .compare-accent::after {
content: '';
position: absolute;
inset: 0;
background: rgba(229, 32, 32, 0.12);
mix-blend-mode: color;
}
.compare-card.after .compare-accent {
mask-image: radial-gradient(
ellipse 90% 90% at 85% 15%,
black 20%,
transparent 70%
);
-webkit-mask-image: radial-gradient(
ellipse 90% 90% at 85% 15%,
black 20%,
transparent 70%
);
}
.compare-card.after .compare-accent svg {
filter: saturate(0.75) brightness(0.85) contrast(0.95);
opacity: 0.3;
} .compare-card.after .compare-accent::after {
content: '';
position: absolute;
inset: 0;
background: rgba(40, 200, 80, 0.06);
mix-blend-mode: color;
}
.compare-card.before:hover .compare-accent svg {
opacity: 0.45;
filter: grayscale(100%) contrast(0.85) brightness(0.65);
transition: opacity 0.5s ease, filter 0.5s ease;
}
.compare-card.after:hover .compare-accent svg {
opacity: 0.4;
filter: saturate(0.85) brightness(0.9);
transition: opacity 0.5s ease, filter 0.5s ease;
}
.compare-accent svg {
transition: opacity 0.5s ease, filter 0.5s ease;
}
.compare-accent:has(svg:not(.img-error)) .compare-accent-fallback {
display: none;
} .compare-accent-fallback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
}
.compare-card.before .compare-accent-fallback {
opacity: 0.15;
}
.compare-card.before .compare-accent-fallback svg {
width: 80%;
height: 80%;
color: #FF4444;
} .compare-card.after .compare-accent-fallback {
opacity: 0.12;
}
.compare-card.after .compare-accent-fallback svg {
width: 80%;
height: 80%;
color: var(--c-red, #E52020);
}
.compare-tag {
display: inline-flex;
align-items: center;
gap: 6px;
font-weight: 700;
font-size: 1.25rem;
margin-bottom: var(--s-lg);
}
.compare-tag.tag-before { color: var(--text-tertiary); }
.compare-tag.tag-after { color: var(--c-red); }
.compare-list {
display: flex;
flex-direction: column;
gap: var(--s-md);
}
.compare-list li {
display: flex;
align-items: flex-start;
gap: var(--s-sm);
font-size: 0.9375rem;
line-height: 1.5;
color: var(--text-secondary);
}
.compare-list li svg {
width: 20px;
height: 20px;
flex-shrink: 0;
margin-top: 2px;
}
.stats-bar {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--s-lg);
}
.stat-item {
background: var(--bg-card);
border-radius: var(--r-lg);
padding: var(--s-xl);
text-align: center;
}
.stat-value {
font-family: var(--f-heading);
font-size: 2rem;
font-weight: 800;
color: var(--c-red);
line-height: 1.2;
}
.stat-label {
font-size: 0.875rem;
color: var(--text-tertiary);
margin-top: 4px;
}
.stat-cta {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--s-md);
margin-top: var(--s-2xl);
width: 100%;
}
.stat-cta-desc {
font-size: 1.2rem;
color: var(--text-tertiary);
font-weight: 600;
line-height: 1.2;
}
.stat-cta-btn {
width: fit-content;
height: fit-content;
} .cases-list {
display: flex;
flex-direction: column;
gap: var(--s-3xl);
}
.case-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--s-2xl);
align-items: start;
padding: var(--s-2xl);
border-radius: var(--r-2xl);
background: var(--bg-card-alt);
}
.case-block:nth-child(even) { direction: rtl; }
.case-block:nth-child(even) > * { direction: ltr; }
.case-num {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--f-heading);
font-weight: 700;
font-size: 0.8125rem;
color: var(--c-red);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: var(--s-md);
}
.case-block h3 {
font-size: clamp(1.375rem, 2.5vw, 1.75rem);
margin-bottom: var(--s-md);
}
.case-task {
font-size: 0.9375rem;
color: var(--text-secondary);
margin-bottom: var(--s-lg);
padding-left: var(--s-md);
border-left: 3px solid var(--c-red);
}
.case-features {
display: flex;
flex-direction: column;
gap: var(--s-sm);
margin-bottom: var(--s-lg);
}
.case-feature {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.9375rem;
color: var(--text-secondary);
}
.case-feature svg {
width: 18px;
height: 18px;
color: var(--c-red);
flex-shrink: 0;
margin-top: 3px;
}
.case-results {
display: flex;
flex-wrap: wrap;
gap: var(--s-sm);
}
.case-result-tag {
background: var(--c-red-light);
color: var(--c-red);
font-size: 0.8125rem;
font-weight: 600;
padding: 6px 14px;
border-radius: var(--r-full);
}
.case-visual {
display: flex;
align-items: center;
justify-content: center;
background: #0A0A0A;
border-radius: var(--r-xl);
min-height: 360px;
position: relative;
overflow: hidden;
}
.case-visual-icon {
width: 80px;
height: 80px;
background: rgba(229, 32, 32, 0.1);
border-radius: var(--r-lg);
display: flex;
align-items: center;
justify-content: center;
animation: levitate 5s ease-in-out infinite;
}
.case-visual-icon svg {
width: 40px;
height: 40px;
color: var(--c-red);
} .case-visual::before {
content: '';
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(229,32,32,0.08) 0%, transparent 70%);
animation: pulseSlow 4s ease-in-out infinite;
}
@keyframes pulseSlow {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.3); opacity: 0.8; }
} .why-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--s-lg);
}
.why-card {
background: var(--bg-card-alt);
border-radius: var(--r-xl);
padding: 100px var(--s-xl) var(--s-xl);
text-align: center;
transition: var(--t-normal);
overflow: hidden;
}
.why-card:hover {
border-color: var(--border-hover);
transform: translateY(-4px);
box-shadow: var(--shadow-card-hover);
}
.why-icon {
width: 120px;
height: 120px;
margin: 0 auto var(--s-lg);
background: var(--c-red-light);
border-radius: var(--r-lg);
display: flex;
align-items: center;
justify-content: center;
color: var(--c-red);
padding: 20px;
position: absolute;
top: -30px;
left: -30px;
transform: rotate(45deg);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h4 { margin-bottom: var(--s-sm); }
.badge-simple {
display: inline-flex;
align-items: center;
gap: 12px;
background: var(--bg-card);
padding: 16px 32px;
border-radius: var(--r-full);
box-shadow: var(--shadow-card);
font-weight: 600;
color: var(--text-primary);
} #blog {
overflow: hidden;
}
.blog-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: var(--s-2xl);
}
.blog-header h2 {
margin: 0;
}
.blog-nav {
display: flex;
gap: var(--s-sm);
}
.blog-nav-btn {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid var(--border-primary);
background: var(--bg-card);
color: var(--text-primary);
display: flex;
align-items: center;
justify-content: center;
transition: var(--t-fast);
}
.blog-nav-btn:hover {
border-color: var(--c-red);
color: var(--c-red);
}
.blog-nav-btn svg { width: 20px; height: 20px; }
.blog-slider-wrap {
margin: 0 calc(-1 * var(--s-lg));
padding: 0 var(--s-lg);
}
.blog-slider {
display: flex;
gap: var(--s-lg);
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
cursor: grab;
user-select: none;
}
.blog-slider.dragging {
cursor: grabbing;
transition: none;
}
.blog-card {
min-width: 320px;
max-width: 320px;
background: var(--bg-card);
border-radius: var(--r-xl);
padding: var(--s-xl);
display: flex;
flex-direction: column;
gap: var(--s-md);
transition: var(--t-normal);
flex-shrink: 0;
}
.blog-card:hover {
border-color: var(--border-hover);
box-shadow: var(--shadow-card-hover);
transform: translateY(-2px);
}
.blog-card-time {
display: inline-flex;
align-self: flex-start;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 4px 12px;
border-radius: var(--r-full);
background: var(--bg-tertiary);
color: var(--text-secondary);
}
.blog-card-title {
font-size: 1.125rem;
line-height: 1.35;
} .team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--s-lg);
}
.team-card { text-align: center; }
.team-photo {
width: 100%;
aspect-ratio: 1;
border-radius: var(--r-xl);
overflow: hidden;
margin-bottom: var(--s-md);
background: var(--bg-tertiary);
position: relative;
}
.team-avatar {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--f-heading);
font-size: 2.5rem;
font-weight: 700;
color: var(--text-tertiary);
background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}
.team-name {
font-family: var(--f-heading);
font-weight: 700;
font-size: 1.125rem;
margin-bottom: 2px;
}
.team-role {
color: var(--c-red);
font-size: 0.8125rem;
font-weight: 600;
margin-bottom: var(--s-sm);
}
.team-desc {
font-size: 0.8125rem;
color: var(--text-tertiary);
line-height: 1.5;
} .cta-section {
padding-top: var(--s-6xl);
background: #000000 !important;
position: relative;
overflow: hidden;
} .cta-content {
text-align: center;
position: relative;
z-index: 1;
}
.cta-content h2 { color: #FFFFFF !important; margin-bottom: var(--s-md); }
.cta-content p { color: #ABABAB; max-width: 520px; margin: 0 auto var(--s-xl); }
.cta-buttons {
display: flex;
justify-content: center;
gap: var(--s-md);
flex-wrap: wrap;
margin-bottom: var(--s-2xl);
}
.cta-contacts {
display: flex;
justify-content: center;
gap: var(--s-2xl);
flex-wrap: wrap;
}
.cta-contact-item {
display: flex;
align-items: center;
gap: 10px;
color: #ABABAB;
font-size: 0.9375rem;
transition: var(--t-fast);
}
.cta-contact-item:hover { color: #FFFFFF; }
.cta-contact-item svg { width: 20px; height: 20px; color: var(--c-red); } .modal-overlay {
position: fixed;
inset: 0;
background: var(--overlay);
z-index: 2000;
display: flex;
align-items: flex-start;
justify-content: flex-end;
opacity: 0;
visibility: hidden;
transition: opacity 0.35s ease, visibility 0.35s ease;
backdrop-filter: blur(4px);
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
.modal-content {
background: var(--bg-primary);
width: 100%;
max-width: 520px;
height: 100vh;
overflow-y: auto;
padding: var(--s-2xl);
transform: translateX(100%);
transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.modal-overlay.active .modal-content:not(.modal-success-content) {
transform: translateX(0);
}
.modal-close {
position: absolute;
top: var(--s-lg);
right: var(--s-lg);
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-tertiary);
color: var(--text-primary);
display: flex;
align-items: center;
justify-content: center;
transition: var(--t-fast);
}
.modal-close:hover {
background: var(--c-red);
color: #FFFFFF;
}
.modal-close svg { width: 20px; height: 20px; }
.modal-title {
font-family: var(--f-heading);
font-size: 1.75rem;
font-weight: 700;
margin-bottom: var(--s-2xl);
}
.form-group {
margin-bottom: var(--s-lg);
}
.form-input {
width: 100%;
padding: 14px 16px;
font-family: var(--f-body);
font-size: 1rem;
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
border-radius: var(--r-md);
color: var(--text-primary);
transition: var(--t-fast);
outline: none;
}
.form-input:focus {
border-color: var(--c-red);
box-shadow: 0 0 0 3px rgba(229, 32, 32, 0.1);
}
.form-input::placeholder {
color: var(--text-tertiary);
}
textarea.form-input {
min-height: 120px;
resize: vertical;
}
.form-checkboxes {
display: flex;
gap: var(--s-lg);
margin-bottom: var(--s-lg);
}
.form-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9375rem;
color: var(--text-primary);
cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border: 2px solid var(--border-primary);
border-radius: 4px;
cursor: pointer;
position: relative;
transition: var(--t-fast);
flex-shrink: 0;
}
.form-checkbox input[type="checkbox"]:checked {
background: var(--c-red);
border-color: var(--c-red);
}
.form-checkbox input[type="checkbox"]:checked::after {
content: '';
position: absolute;
left: 5px;
top: 1px;
width: 6px;
height: 11px;
border: solid #FFFFFF;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.form-file-label {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.9375rem;
color: var(--text-secondary);
cursor: pointer;
padding: 10px 0;
transition: var(--t-fast);
}
.form-file-label:hover { color: var(--c-red); }
.form-file-label svg { width: 18px; height: 18px; }
.form-consent {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.8125rem;
color: var(--text-tertiary);
margin-bottom: var(--s-lg);
line-height: 1.5;
}
.form-consent a {
color: var(--c-red);
text-decoration: underline;
}
.form-submit {
width: 100%;
padding: 16px;
background: var(--bg-invert);
color: var(--text-invert);
font-family: var(--f-body);
font-size: 1rem;
font-weight: 600;
border-radius: var(--r-md);
transition: var(--t-fast);
}
.form-submit:hover {
opacity: 0.85;
} .footer {
background: #000000 !important;
border-top: 1px solid rgba(255,255,255,0.06);
padding: var(--s-xl) 0;
}
.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: var(--s-md);
}
.footer-left {
display: flex;
align-items: center;
gap: var(--s-xl);
}
.footer-logo {
display: flex;
align-items: center;
gap: 8px;
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo-text {
font-family: var(--f-heading);
font-weight: 700;
font-size: 0.875rem;
color: #FFFFFF;
}
.footer-copy {
font-size: 0.8125rem;
color: #555555;
}
.footer-links {
display: flex;
gap: var(--s-lg);
}
.footer-links a {
font-size: 0.8125rem;
color: #787878;
transition: var(--t-fast);
}
.footer-links a:hover { color: #FFFFFF; }
.footer-socials {
display: flex;
gap: var(--s-sm);
}
.footer-social {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255,255,255,0.06);
display: flex;
align-items: center;
justify-content: center;
color: #787878;
transition: var(--t-fast);
}
.footer-social:hover {
background: var(--c-red);
color: #FFFFFF;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-gradient {
height: 100%;
left: 0;
pointer-events: none;
position: absolute;
right: 0;
top: -2px;
width: 100%;
}
.footer-gradient-img {
-o-object-fit: fill;
object-fit: fill;
position: absolute;
top: 0;
width: 100%;
} @keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; } .parallax-layer {
will-change: transform;
} .section-glow {
position: relative;
background: var(--bg-secondary);
}
.section-glow::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 300px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--c-red), transparent);
opacity: 0.3;
} @media (max-width: 1024px) {
.pain-grid, .why-grid, .team-grid {
grid-template-columns: repeat(2, 1fr);
}
.stats-bar { grid-template-columns: repeat(2, 1fr); }
.compare-accent {
width: 40%;
max-width: 200px;
}
.case-block { grid-template-columns: 1fr; }
.case-block:nth-child(even) { direction: ltr; }
.hero-stats { gap: var(--s-2xl); }
.services-layout { grid-template-columns: 1fr; }
.service-card-hero { grid-row: auto; min-height: 320px; padding-top: 320px; }
.hero-float-object { display: none; }
}
@media (max-width: 768px) {
section { padding: var(--s-3xl) 0; border-radius: var(--r-2xl); }
.cta-section { border-radius: 0; padding-top: var(--s-4xl); }
.nav-links { display: none; }
.nav-cta { display: none; }
.nav-burger { display: flex; }
.nav { padding: 8px 8px 8px 20px; }
.service-hero-illustration {
top: 35%;
right: -5%;
}
.footer-gradient-img {
max-height: 10%;
}
.compare-grid { grid-template-columns: 1fr; }
.compare-accent {
width: 35%;
max-width: 160px;
top: -8px;
right: -8px;
}
.pain-grid, .why-grid, .team-grid {
grid-template-columns: 1fr;
}
.pain-card-hint,
.why-card-hint {
opacity: 1 !important;
}
.stats-bar { grid-template-columns: 1fr 1fr; }
.hero-stats {
gap: var(--s-lg);
align-items: center;
}
.hero-stat { align-items: center; }
.hero-stat-value { font-size: 1.75rem; }
.hero-desc { font-size: 1rem; }
.hero-ratings { gap: var(--s-md); }
.hero-ratings .rating-card { padding: var(--s-sm) var(--s-md); }
.hero-actions { flex-direction: column; width: 100%; }
.hero-actions .btn { width: 100%; }
.btn-lg { padding: 14px 24px; }
.formula-block {
flex-direction: column; align-items: stretch;
padding: 24px;
}
.formula-sep {
text-align: center;
transform: rotate(90deg); }
.formula-sep.pulse {
animation: none; }
.case-block {
padding: var(--s-xl) var(--s-lg);
}
.footer-inner {
flex-direction: column;
text-align: center;
}
.footer-left { flex-direction: column; }
.cta-contacts {
flex-direction: column;
align-items: center;
gap: var(--s-md);
}
.hero { padding-top: 100px; padding-bottom: 160px; border-radius: 0; }
.blog-card { min-width: 280px; max-width: 280px; }
.blog-header {
flex-direction: column;
align-items: flex-start;
gap: var(--s-md);
}
.modal-content {
max-width: 100%;
}
}
@media (max-width: 480px) {
.hero h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
.container { padding: 0 var(--s-md); }  
.compare-accent {
width: 30%;
max-width: 120px;
}
.hero { padding-top: 100px; }
.hero-stat-value { font-size: 1.5rem; }
.hero-desc { font-size: 0.9375rem; }
}
@media (max-width: 400px) {
.hero-stat-value { font-size: 1.25rem; }
} .policy-page {
padding-top: 120px;
padding-bottom: var(--s-4xl);
}
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h1 { margin-bottom: var(--s-2xl); }
.policy-content h2 { font-size: 1.5rem; margin-top: var(--s-2xl); margin-bottom: var(--s-md); }
.policy-content p { margin-bottom: var(--s-md); }
.policy-content ul { margin-bottom: var(--s-md); padding-left: var(--s-lg); }
.policy-content ul li {
margin-bottom: var(--s-sm);
color: var(--text-secondary);
font-size: 0.9375rem;
position: relative;
padding-left: var(--s-md);
}
.policy-content ul li::before {
content: '—';
position: absolute;
left: 0;
color: var(--c-red);
} .page-404 {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0A0A0A;
text-align: center;
padding: var(--s-xl);
}
.page-404-content h1 {
font-size: clamp(6rem, 15vw, 12rem);
font-weight: 800;
color: var(--c-red);
line-height: 1;
margin-bottom: var(--s-md);
} .modal-success-overlay {
align-items: center;
justify-content: center;
} .modal-success-overlay .modal-success-content {
height: auto;
width: 90%;
max-width: 460px;
border-radius: var(--r-xl, 20px);
transform: translateY(40px) scale(0.95) !important;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease !important;
opacity: 0;
text-align: center;
padding: var(--s-3xl, 3rem) var(--s-2xl, 2rem);
display: flex;
flex-direction: column;
align-items: center;
gap: var(--s-lg, 1.5rem);
}
.modal-success-overlay.active .modal-success-content {
transform: translateY(0) scale(1) !important;
opacity: 1;
}
.modal-success-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: rgba(34, 197, 94, 0.12);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.modal-success-icon svg {
width: 44px;
height: 44px;
stroke: #22c55e;
stroke-width: 2;
}
.modal-success-text {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.6;
margin: 0;
}
.modal-success-btn {
width: 100%;
max-width: 280px;
}
@media (max-width: 480px) {
.modal-success-content {
margin: var(--s-md, 1rem);
padding: var(--s-2xl, 2rem) var(--s-lg, 1.5rem);
}
}.container {
max-width: var(--container-max, 1280px);
margin-inline: auto;
padding-inline: var(--s-lg, 24px);
} .archive-main {
padding-block: var(--s-4xl, 96px) var(--s-5xl, 128px);
min-height: 70vh;
background: var(--bg-secondary);
}
.archive-header {
margin-bottom: var(--s-3xl, 64px);
text-align: center;
}
.archive-title {
font-family: var(--f-heading);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--text-primary);
margin-top: var(--s-sm, 8px);
margin-bottom: var(--s-md, 16px);
}
.archive-desc {
color: var(--text-secondary);
max-width: 560px;
margin-inline: auto;
line-height: 1.7;
} .archive-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: var(--s-xl, 32px);
} .archive-pagination {
margin-top: var(--s-3xl, 64px);
display: flex;
justify-content: center;
}
.archive-pagination .nav-links {
display: flex;
gap: var(--s-sm, 8px);
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
.archive-pagination .page-numbers {
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 var(--s-md, 16px);
border-radius: var(--r-sm, 8px);
font-size: 0.875rem;
font-weight: 600;
color: var(--text-secondary);
background: var(--bg-card);
border: 1px solid var(--border-primary);
text-decoration: none;
transition: all var(--t-fast);
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
background: var(--c-red);
color: #fff;
border-color: var(--c-red);
}
.archive-pagination .page-numbers svg {
width: 16px;
height: 16px;
vertical-align: middle;
} .archive-empty {
text-align: center;
padding-block: var(--s-5xl, 128px);
color: var(--text-secondary);
}
.archive-empty svg {
width: 64px;
height: 64px;
margin-bottom: var(--s-lg, 24px);
opacity: 0.3;
}
.archive-empty h3 {
font-size: 1.5rem;
color: var(--text-primary);
margin-bottom: var(--s-sm, 8px);
} .post-card {
background: var(--bg-card);
border-radius: var(--r-lg, 20px);
border: 1px solid var(--border-primary);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t-normal), transform var(--t-normal), border-color var(--t-normal);
box-shadow: var(--shadow-card);
}
.post-card:hover {
box-shadow: var(--shadow-card-hover);
transform: translateY(-4px);
border-color: var(--border-hover);
}
.post-card-img {
display: block;
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--bg-secondary);
}
.post-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform var(--t-slow);
}
.post-card:hover .post-card-img img {
transform: scale(1.04);
}
.post-card-img--placeholder {
display: flex;
align-items: center;
justify-content: center;
}
.post-card-placeholder {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
color: var(--text-tertiary);
}
.post-card-placeholder svg {
width: 40px;
height: 40px;
opacity: 0.3;
}
.post-card-body {
padding: var(--s-xl, 32px);
flex: 1;
display: flex;
flex-direction: column;
gap: var(--s-sm, 8px);
}
.post-card-cat {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--c-red);
text-decoration: none;
}
.post-card-title {
font-family: var(--f-heading);
font-size: 1.125rem;
font-weight: 700;
line-height: 1.4;
color: var(--text-primary);
margin: 0;
flex: 1;
}
.post-card-title a {
color: inherit;
text-decoration: none;
transition: color var(--t-fast);
}
.post-card-title a:hover {
color: var(--c-red);
}
.post-card-excerpt {
font-size: 0.875rem;
color: var(--text-secondary);
line-height: 1.65;
margin: 0;
}
.post-card-meta {
display: flex;
align-items: center;
gap: var(--s-md, 16px);
flex-wrap: wrap;
margin-top: auto;
padding-top: var(--s-md, 16px);
border-top: 1px solid var(--border-secondary);
}
.post-card-date,
.post-card-read,
.post-card-views {
display: flex;
align-items: center;
gap: 4px;
font-size: 0.8rem;
color: var(--text-tertiary);
}
.post-card-date svg,
.post-card-read svg,
.post-card-views svg {
width: 13px;
height: 13px;
flex-shrink: 0;
} .single-main {
padding-block: var(--s-4xl, 96px) var(--s-5xl, 128px);
} .post-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 280px;
gap: var(--s-3xl, 64px);
align-items: start;
}
@media (max-width: 1024px) {
.post-layout {
grid-template-columns: 1fr;
}
.post-sidebar {
display: none;
}
} .breadcrumbs {
display: flex;
align-items: center;
gap: var(--s-xs, 4px);
flex-wrap: wrap;
font-size: 0.8125rem;
color: var(--text-tertiary);
margin-bottom: var(--s-2xl, 48px);
}
.breadcrumbs a {
color: var(--text-secondary);
text-decoration: none;
transition: color var(--t-fast);
}
.breadcrumbs a:hover {
color: var(--c-red);
}
.breadcrumbs-sep svg {
width: 12px;
height: 12px;
opacity: 0.4;
}
.breadcrumbs-current {
color: var(--text-tertiary);
max-width: 240px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .post-cat-badge {
display: inline-block;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--c-red);
background: var(--c-red-light);
padding: 4px 12px;
border-radius: var(--r-full, 9999px);
text-decoration: none;
margin-bottom: var(--s-md, 16px);
transition: background var(--t-fast);
}
.post-cat-badge:hover {
background: rgba(229, 32, 32, 0.14);
} .post-title {
font-family: var(--f-heading);
font-size: clamp(1.75rem, 3.5vw, 2.75rem);
font-weight: 800;
line-height: 1.2;
color: var(--text-primary);
margin: 0 0 var(--s-xl, 32px);
} .post-meta-bar {
display: flex;
align-items: center;
gap: var(--s-md, 16px);
flex-wrap: wrap;
margin-bottom: var(--s-xl, 32px);
padding-bottom: var(--s-xl, 32px);
border-bottom: 1px solid var(--border-primary);
}
.post-meta-item {
display: flex;
align-items: center;
gap: 5px;
font-size: 0.875rem;
color: var(--text-secondary);
}
.post-meta-item svg {
width: 14px;
height: 14px;
flex-shrink: 0;
color: var(--text-tertiary);
}
.post-meta-dot {
width: 3px;
height: 3px;
border-radius: 50%;
background: var(--text-tertiary);
flex-shrink: 0;
} .post-featured-img {
margin-bottom: var(--s-2xl, 48px);
border-radius: var(--r-lg, 20px);
overflow: hidden;
aspect-ratio: 16 / 9;
}
.post-featured-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .post-content {
color: var(--text-primary);
font-size: 1.0625rem;
line-height: 1.78;
max-width: 72ch;
}
.post-content h2 {
font-family: var(--f-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
margin: 2.5em 0 0.75em;
padding-top: 0.25em;
scroll-margin-top: 100px;
}
.post-content h3 {
font-family: var(--f-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--text-primary);
margin: 2em 0 0.6em;
scroll-margin-top: 100px;
}
.post-content p {
margin: 0 0 1.4em;
}
.post-content a {
color: var(--c-red);
text-decoration: underline;
text-underline-offset: 3px;
transition: opacity var(--t-fast);
}
.post-content a:hover {
opacity: 0.8;
}
.post-content ul,
.post-content ol {
margin: 0 0 1.4em;
padding-left: 1.5em;
}
.post-content ul {
list-style-type: disc;
}
.post-content ol {
list-style-type: decimal;
}
.post-content li {
margin-bottom: 0.5em;
}
.post-content blockquote {
margin: 2em 0;
padding: var(--s-lg, 24px) var(--s-xl, 32px);
border-left: 3px solid var(--c-red);
background: var(--c-red-light);
border-radius: 0 var(--r-md, 12px) var(--r-md, 12px) 0;
font-style: italic;
color: var(--text-secondary);
}
.post-content blockquote p:last-child {
margin-bottom: 0;
}
.post-content code {
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 0.875em;
background: var(--bg-secondary);
padding: 2px 6px;
border-radius: 4px;
color: var(--c-red);
}
.post-content pre {
background: var(--bg-invert);
color: #f8f8f2;
padding: var(--s-lg, 24px);
border-radius: var(--r-md, 12px);
overflow-x: auto;
margin: 1.5em 0;
}
.post-content pre code {
background: none;
color: inherit;
padding: 0;
font-size: 0.875rem;
}
.post-content img {
max-width: 100%;
height: auto;
border-radius: var(--r-md, 12px);
margin-block: var(--s-xl, 32px);
}
.post-content table {
width: 100%;
border-collapse: collapse;
margin-block: var(--s-xl, 32px);
font-size: 0.9rem;
}
.post-content th,
.post-content td {
padding: 10px 14px;
border: 1px solid var(--border-primary);
text-align: left;
}
.post-content th {
background: var(--bg-secondary);
font-weight: 700;
}
.post-content hr {
border: none;
border-top: 1px solid var(--border-primary);
margin-block: 2.5em;
} .post-tags {
display: flex;
flex-wrap: wrap;
gap: var(--s-sm, 8px);
margin-top: var(--s-2xl, 48px);
padding-top: var(--s-xl, 32px);
border-top: 1px solid var(--border-primary);
}
.post-tag {
font-size: 0.8125rem;
font-weight: 500;
color: var(--text-secondary);
background: var(--bg-secondary);
padding: 4px 12px;
border-radius: var(--r-full);
text-decoration: none;
transition: all var(--t-fast);
border: 1px solid var(--border-primary);
}
.post-tag:hover {
background: var(--c-red-light);
color: var(--c-red);
border-color: var(--c-red);
} .post-rating-block {
margin-top: var(--s-2xl, 48px);
padding: var(--s-2xl, 48px);
background: var(--bg-secondary);
border-radius: var(--r-xl, 24px);
border: 1px solid var(--border-primary);
text-align: center;
}
.rating-header {
margin-bottom: var(--s-lg, 24px);
}
.rating-title {
font-family: var(--f-heading);
font-size: 1.25rem;
font-weight: 700;
color: var(--text-primary);
margin: 0 0 var(--s-sm, 8px);
}
.rating-current {
font-size: 0.875rem;
color: var(--text-secondary);
}
.rating-current strong {
color: var(--c-red);
font-weight: 700;
}
.rating-count {
color: var(--text-tertiary);
font-size: 0.8125rem;
} .star-rating {
display: flex;
justify-content: center;
gap: var(--s-sm, 8px);
}
.star-btn {
background: none;
border: none;
cursor: pointer;
padding: 0;
color: var(--text-tertiary);
transition: color var(--t-fast), transform var(--t-fast);
line-height: 0;
} 
.star-btn svg {
width: 36px;
height: 36px;
fill: none;
stroke: currentColor;
stroke-width: 1.5;
transition: fill var(--t-fast), stroke var(--t-fast);
}
.star-btn:hover svg,
.star-btn.active svg {
fill: #F59E0B;
stroke: #F59E0B;
color: #F59E0B;
}
.star-btn:hover {
transform: scale(1.15);
}
.star-btn.voted svg {
fill: #F59E0B;
stroke: #F59E0B;
}
.rating-message {
margin-top: var(--s-md, 16px);
font-size: 0.875rem;
color: var(--text-secondary);
min-height: 1.4em;
}
.rating-message.success {
color: #22c55e;
font-weight: 600;
}
.rating-message.error {
color: var(--c-red);
} .social-share {
display: flex;
align-items: center;
gap: var(--s-md, 16px);
flex-wrap: wrap;
margin-top: var(--s-xl, 32px);
padding: var(--s-xl, 32px);
background: var(--bg-card);
border-radius: var(--r-xl, 24px);
border: 1px solid var(--border-primary);
}
.social-share-label {
font-size: 0.875rem;
font-weight: 600;
color: var(--text-secondary);
flex-shrink: 0;
}
.social-share-btn {
display: inline-flex;
align-items: center;
gap: var(--s-sm, 8px);
padding: 8px 18px;
border-radius: var(--r-full);
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
transition: all var(--t-fast);
flex-shrink: 0;
}
.social-share-btn svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.social-share-vk {
background: #4c75a3;
color: #fff;
}
.social-share-vk:hover {
background: #3d6190;
color: #fff;
}
.social-share-tg {
background: #26A5E4;
color: #fff;
}
.social-share-tg:hover {
background: #1d97d8;
color: #fff;
}
.social-share-max {
background: #5533EE;
color: #fff;
}
.social-share-max:hover {
background: #6040f1;
color: #fff;
} .post-sidebar {
position: sticky;
top: calc(var(--nav-height, 64px) + var(--s-xl, 32px));
max-height: calc(100vh - var(--nav-height, 64px) - var(--s-3xl, 64px));
overflow-y: auto;
display: flex;
flex-direction: column;
gap: var(--s-xl, 32px);
scrollbar-width: thin;
scrollbar-color: var(--border-primary) transparent;
}
.toc-widget {
background: var(--bg-card);
border-radius: var(--r-lg, 20px);
border: 1px solid var(--border-primary);
padding: var(--s-lg, 32px);
box-shadow: var(--shadow-card);
}
.toc-title {
display: flex;
align-items: center;
gap: var(--s-sm, 8px);
font-family: var(--f-heading);
font-size: 0.875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-secondary);
margin-bottom: var(--s-lg, 24px);
padding-bottom: var(--s-md, 16px);
border-bottom: 1px solid var(--border-primary);
}
.toc-title svg {
width: 14px;
height: 14px;
flex-shrink: 0;
}
.toc-nav {
display: flex;
flex-direction: column;
gap: 2px;
}
.toc-nav a {
display: block;
font-size: 0.8125rem;
line-height: 1.5;
color: var(--text-secondary);
text-decoration: none;
padding: 6px 0;
border-radius: var(--r-sm, 8px);
transition: all var(--t-fast);
border-left: 2px solid transparent;
}
.toc-nav a:hover {
color: var(--text-primary);
background: var(--bg-secondary);
}
.toc-nav a.is-active {
font-weight: 700;
}
.sidebar-widget {
background: var(--bg-card);
border-radius: var(--r-lg, 20px);
padding: var(--s-xl, 32px);
}
.sidebar-widget-title {
font-family: var(--f-heading);
font-size: 0.875rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-secondary);
margin: 0 0 var(--s-lg, 24px);
padding-bottom: var(--s-md, 16px);
border-bottom: 1px solid var(--border-primary);
} .related-posts {
margin-top: var(--s-3xl, 64px);
padding-top: var(--s-3xl, 64px);
border-top: 1px solid var(--border-primary);
}
.related-posts-header {
margin-bottom: var(--s-2xl, 48px);
}
.related-posts-title {
display: flex;
align-items: center;
gap: var(--s-sm, 8px);
font-family: var(--f-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
margin: 0;
}
.related-posts-title svg {
width: 20px;
height: 20px;
color: var(--c-red);
}
.related-posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--s-xl, 32px);
}
@media (max-width: 768px) {
.related-posts-grid {
grid-template-columns: 1fr;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.related-posts-grid {
grid-template-columns: repeat(2, 1fr);
}
} .related-card {
background: var(--bg-card);
border-radius: var(--r-lg, 20px);
border: 1px solid var(--border-primary);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t-normal), transform var(--t-normal), border-color var(--t-normal);
box-shadow: var(--shadow-card);
}
.related-card:hover {
box-shadow: var(--shadow-card-hover);
transform: translateY(-3px);
border-color: var(--border-hover);
}
.related-card-img {
display: block;
aspect-ratio: 16 / 9;
overflow: hidden;
background: var(--bg-secondary);
}
.related-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform var(--t-slow);
}
.related-card:hover .related-card-img img {
transform: scale(1.04);
}
.related-card-img--placeholder {
display: flex;
align-items: center;
justify-content: center;
}
.related-card-body {
padding: var(--s-lg, 24px);
flex: 1;
}
.related-card-title {
font-family: var(--f-heading);
font-size: 0.9375rem;
font-weight: 700;
line-height: 1.45;
color: var(--text-primary);
margin: 0 0 var(--s-sm, 8px);
}
.related-card-title a {
color: inherit;
text-decoration: none;
transition: color var(--t-fast);
}
.related-card-title a:hover {
color: var(--c-red);
}
.related-card-meta {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.8rem;
color: var(--text-tertiary);
flex-wrap: wrap;
} .page-404-main {
min-height: 70vh;
display: flex;
align-items: center;
}
.page-404 {
width: 100%;
}
.page-404-content {
text-align: center;
padding-block: var(--s-5xl, 128px);
max-width: 560px;
margin-inline: auto;
}
.page-404-code {
font-family: var(--f-heading);
font-size: clamp(5rem, 15vw, 10rem);
font-weight: 800;
color: var(--c-red);
line-height: 1;
margin: 0 0 var(--s-md, 16px);
}
.page-404-title {
font-family: var(--f-heading);
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
color: var(--text-primary);
margin: 0 0 var(--s-md, 16px);
}
.page-404-desc {
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: var(--s-2xl, 48px);
}
.page-404-actions {
display: flex;
justify-content: center;
gap: var(--s-md, 16px);
flex-wrap: wrap;
} .page-main {
padding-block: var(--s-4xl, 96px) var(--s-5xl, 128px);
min-height: 60vh;
}
.page-title {
font-family: var(--f-heading);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--text-primary);
margin: 0 0 var(--s-2xl, 48px);
}
.page-content {
max-width: 800px;
} [data-theme="dark"] .post-card,
[data-theme="dark"] .related-card,
[data-theme="dark"] .toc-widget,
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .post-rating-block,
[data-theme="dark"] .social-share {
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .archive-pagination .page-numbers {
background: var(--bg-card);
} .blog-archive-layout {
display: grid;
grid-template-columns: 1fr;
gap: var(--s-3xl, 64px);
align-items: start;
}
.blog-archive-layout--has-sidebar {
grid-template-columns: 220px 1fr;
} .blog-archive-sidebar {
position: sticky;
top: calc(var(--nav-height, 64px) + var(--s-xl, 32px));
}
.blog-cat-tabs {
display: flex;
flex-direction: column;
gap: 4px;
}
.blog-cat-tab {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--s-sm, 8px);
padding: 10px 14px;
border-radius: var(--r-md, 12px);
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
text-decoration: none;
border: 1px solid transparent;
transition: all var(--t-fast);
line-height: 1.3;
}
.blog-cat-tab:hover {
color: var(--text-primary);
background: var(--bg-secondary);
border-color: var(--border-primary);
}
.blog-cat-tab--active {
color: var(--c-red);
background: var(--c-red-light);
border-color: var(--c-red);
font-weight: 700;
}
.blog-cat-tab-count {
flex-shrink: 0;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-tertiary);
background: var(--bg-tertiary);
padding: 2px 7px;
border-radius: var(--r-full);
}
.blog-cat-tab--active .blog-cat-tab-count {
color: var(--c-red);
background: rgba(229, 32, 32, 0.12);
} .blog-archive-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: var(--s-xl, 32px);
} .blog-archive-grid .blog-card {
min-width: 0;
max-width: none;
width: 100%;
} .blog-load-more-wrap {
display: flex;
justify-content: center;
margin-top: var(--s-3xl, 64px);
}
.blog-load-more {
min-width: 200px;
transition: opacity var(--t-fast), transform var(--t-fast);
}
.blog-load-more.is-loading {
opacity: 0.7;
cursor: wait;
} @media (max-width: 900px) {
.blog-archive-layout--has-sidebar {
grid-template-columns: 1fr;
}
.blog-archive-sidebar {
position: static;
}
.blog-cat-tabs {
flex-direction: row;
flex-wrap: nowrap;
overflow-x: auto;
gap: var(--s-sm, 8px);
padding-bottom: var(--s-sm, 8px);
scrollbar-width: none;
-ms-overflow-style: none;
}
.blog-cat-tabs::-webkit-scrollbar {
display: none;
}
.blog-cat-tab {
white-space: nowrap;
flex-shrink: 0;
}
}
@media (max-width: 600px) {
.blog-archive-grid {
grid-template-columns: 1fr;
}
} .blog-card a {
color: inherit;
text-decoration: none;
}
.blog-card h4 a {
transition: color var(--t-fast);
}
.blog-card h4 a:hover {
color: var(--c-red);
}
.blog-card-img {
display: block;
margin-bottom: var(--s-md, 16px);
border-radius: var(--r-md, 12px);
overflow: hidden;
aspect-ratio: 16 / 9;
background: var(--bg-secondary);
}
.blog-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform var(--t-slow);
}
.blog-card:hover .blog-card-img img {
transform: scale(1.04);
}