:root {
    --bg-dark: #0A0A0A;
    --bg-dark-secondary: #111111;
    --bg-light: #F5F5F5;
    --bg-light-secondary: #EBEBEB;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-dark: #0A0A0A;
    --text-dark-secondary: #666666;
    --accent: #D05A3E;
    --accent-glow: rgba(208, 90, 62, 0.3);
    --accent-hover: #E06A4E;
    --accent-dark: #B84A30;
    --success: #22C55E;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --container-padding: 4rem;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
}
html, body {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    width: 100vw;
}
body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}
ul {
    list-style: none;
}
button {
    cursor: none;
    font-family: var(--font-primary);
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover {
    width: 16px;
    height: 16px;
}
.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.hidden {
    transform: translateY(-100%);
}
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    margin-top: -40px;
}
.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 74, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 74, 0.6));
    }
}
.preloader-logo .logo-icon {
    width: 70px;
    height: 70px;
}
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 74, 0.2);
}
.orbit-1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: orbitRotate 4s linear infinite;
}
.orbit-2 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    animation: orbitRotate 6s linear infinite reverse;
}
.orbit-3 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation: orbitRotate 8s linear infinite;
}
.orbit::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
}
@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}
.preloader-progress {
    position: absolute;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    animation: progressFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes progressFill {
    to {
        width: 100%;
    }
}
.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 1.5rem var(--container-padding);
    z-index: 1000;
    transition: all var(--transition-medium);
}
.header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1rem var(--container-padding);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}
.logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-medium);
}
.nav-links a:hover {
    color: var(--text-primary);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 4px;
}
.lang-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.lang-btn.active {
    background: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
}
.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}
.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--transition-fast);
}
.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}
.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
.burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 3rem;
    padding: 2rem;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.mobile-nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links a {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.mobile-nav-links a:hover {
    color: var(--accent);
}
.mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.mobile-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.hero {
    position: sticky;
    top: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem var(--container-padding) 8rem;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #1a2744 0%, #2d3a5c 50%, #1e3a5f 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(224, 112, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 90%, rgba(224, 112, 80, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-play-state: paused;
}
.hero.animate .hero-badge {
    animation-play-state: running;
}
.badge-icon {
    font-size: 1rem;
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.title-line {
    display: block;
    /* overflow: hidden; */
}
.title-line.accent {
    color: var(--accent);
}
.char {
    display: inline-block;
    transform: translateY(100%);
    animation: charReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-play-state: paused;
}
.char.space {
    min-width: 0.3em;
}
.hero.animate .char {
    animation-play-state: running;
}
@keyframes charReveal {
    to {
        transform: translateY(0);
    }
}
.char:nth-child(1) { animation-delay: 0.1s; }
.char:nth-child(2) { animation-delay: 0.15s; }
.char:nth-child(3) { animation-delay: 0.2s; }
.char:nth-child(4) { animation-delay: 0.25s; }
.char:nth-child(5) { animation-delay: 0.3s; }
.char:nth-child(6) { animation-delay: 0.35s; }
.char:nth-child(7) { animation-delay: 0.4s; }
.char:nth-child(8) { animation-delay: 0.45s; }
.char:nth-child(9) { animation-delay: 0.5s; }
.title-line:nth-child(2) .char:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) .char:nth-child(2) { animation-delay: 0.55s; }
.title-line:nth-child(2) .char:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(2) .char:nth-child(4) { animation-delay: 0.65s; }
.title-line:nth-child(2) .char:nth-child(5) { animation-delay: 0.7s; }
.title-line:nth-child(2) .char:nth-child(6) { animation-delay: 0.75s; }
.title-line:nth-child(2) .char:nth-child(7) { animation-delay: 0.8s; }
.title-line:nth-child(2) .char:nth-child(8) { animation-delay: 0.85s; }
.title-line:nth-child(2) .char:nth-child(9) { animation-delay: 0.9s; }
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    animation-play-state: paused;
}
.hero.animate .hero-subtitle {
    animation-play-state: running;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    animation-play-state: paused;
}
.hero.animate .hero-cta {
    animation-play-state: running;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all var(--transition-medium);
}
.cta-button.primary {
    background: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
}
.cta-button.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
}
.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}
.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}
.cta-icon {
    transition: transform var(--transition-fast);
}
.cta-button:hover .cta-icon {
    transform: translateX(4px);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.4s forwards;
    animation-play-state: paused;
}
.hero.animate .hero-stats {
    animation-play-state: running;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.scroll-indicator {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: arrowFloat 2s ease-in-out infinite;
}
.scroll-indicator::before {
    content: 'Scroll';
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}
.scroll-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(0, 0, 0, 0.4);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.scroll-indicator:hover::before {
    color: var(--accent);
}
.scroll-indicator:hover::after {
    border-color: var(--accent);
    transform: rotate(45deg) scale(1.1);
}
.mouse,
.wheel,
.scroll-arrows,
.scroll-line {
    display: none;
}
@keyframes arrowFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 1;
    }
}
.builder-animation {
    position: absolute;
    top: 35%;
    right: 18%;
    transform: translateY(-50%);
    width: 44%;
    max-width: 480px;
    height: 550px;
    z-index: 1;
    overflow: visible;
}
.builder-scene {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    z-index: 2;
}
.website-frame {
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(3deg);
    width: 322px;
    height: 437px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform-style: preserve-3d;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(255, 107, 74, 0.03);
}
.builder-element {
    opacity: 0;
    transform: translateZ(-50px) translateY(30px);
    animation: elementAssemble 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-play-state: paused;
}
.hero.animate .builder-element {
    animation-play-state: running;
}
@keyframes elementAssemble {
    to {
        opacity: 1;
        transform: translateZ(0) translateY(0);
    }
}
.builder-element[data-delay="0.2"] { animation-delay: 0.2s; }
.builder-element[data-delay="0.5"] { animation-delay: 0.5s; }
.builder-element[data-delay="0.8"] { animation-delay: 0.8s; }
.builder-element[data-delay="1.1"] { animation-delay: 1.1s; }
.header-el {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 8px;
}
.el-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.el-logo {
    width: 24px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
}
.el-menu {
    display: flex;
    gap: 6px;
}
.el-menu span {
    width: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}
.hero-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 16px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.el-title {
    width: 80%;
    height: 16px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.2) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 4px;
}
.el-subtitle {
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.el-button {
    width: 80px;
    height: 28px;
    background: var(--accent);
    border-radius: 6px;
    margin-top: auto;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.grid-item {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-el {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
}
.el-footer-content {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.floating-code {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.code-tag {
    position: absolute;
    padding: 6px 12px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    animation: floatCode 4s ease-in-out infinite;
}
.tag-1 {
    top: 35%;
    right: -10%;
    animation-delay: 0s;
}
.tag-2 {
    top: 55%;
    left: 15%;
    animation-delay: 1s;
}
.tag-3 {
    bottom: 5%;
    right: 15%;
    animation-delay: 2s;
}
.tag-4 {
    bottom: -10%;
    left: 20%;
    animation-delay: 3s;
}
@keyframes floatCode {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 1;
    }
}
.builder-cursor {
    position: absolute;
    top: 45%;
    left: 55%;
    width: 24px;
    height: 24px;
    animation: cursorMove 4s ease-in-out infinite;
}
.builder-cursor svg {
    filter: drop-shadow(0 2px 8px rgba(255, 107, 74, 0.5));
}
@keyframes cursorMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-30px, 40px);
    }
    50% {
        transform: translate(20px, 80px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 9998;
    width: 0;
}
.services-section {
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: -50px;
}
.for-whom-section {
    z-index: 3;
}
.platform-section {
    position: relative;
    z-index: 4;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: -50px;
}
.tech-section {
    position: relative;
    z-index: 5;
    border-radius: 0px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: -50px;
}
.internal-tech-section {
    position: relative;
    z-index: 6;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    overflow-x: hidden;
}
.contact-section {
    z-index: 7;
}
.footer {
    position: relative;
    z-index: 8;
}
.services-section {
    padding: 8rem 0 8rem;
    padding-top: 10rem;
    background: var(--bg-light);
    color: var(--text-dark);
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 74, 0.1);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.service-card {
    background: var(--bg-light-secondary);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
    contain: layout style paint;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.service-card.featured {
    background: var(--bg-dark);
    color: var(--text-primary);
}
.service-card.featured .card-description {
    color: var(--text-secondary);
}
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 12px;
}
.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}
.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    flex: 1;
}
.card-badge {
    padding: 0.25rem 0.75rem;
    background: var(--bg-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
}
.card-description {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.pricing-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 10px;
}
.service-card.featured .pricing-tabs {
    background: rgba(255, 255, 255, 0.05);
}
.pricing-tab {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark-secondary);
    border-radius: 8px;
    transition: all var(--transition-fast);
}
.service-card.featured .pricing-tab {
    color: var(--text-primary);
}
.pricing-tab.active {
    background: var(--accent);
    color: white;
}
.pricing-tab:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}
.service-card.featured .pricing-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}
.pricing-content {
    margin-bottom: 1.5rem;
}
.price-display {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}
.delivery-time {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.delivery-time::before {
    content: '⏱';
    font-size: 0.8rem;
}
.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card.featured .tier-features li {
    color: var(--text-secondary);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
.tier-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}
.tier-features .feature-creative,
.tier-features .feature-creative-only,
.tier-features .feature-premium {
    display: none;
}
.tier-features li {
    transition: all 0.3s ease;
}
.extra-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
    text-align: center;
}
.service-card.featured .extra-options {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}
.example-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.example-link {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    color: var(--accent);
    background: rgba(224, 112, 80, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.example-link[data-tier-link="basic"] {
    display: inline-flex;
}
.example-link svg {
    width: 12px;
    height: 12px;
}
.example-link:hover {
    background: var(--accent);
    color: white;
}
.service-card.featured .example-link {
    background: rgba(224, 112, 80, 0.2);
}
.service-card.featured .example-link:hover {
    background: var(--accent);
}
.service-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--text-primary);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all var(--transition-fast);
}
.service-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.price-match-banner {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
}
.price-match-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 4px 0 0 4px;
}
.price-match-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-left: 1rem;
}
.price-match-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.price-match-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}
.price-match-text {
    flex: 1;
    min-width: 200px;
}
.price-match-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
.price-match-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.price-match-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}
.price-match-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.price-match-btn:hover svg {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .price-match-banner {
        padding: 1.25rem 1.5rem;
    }
    .price-match-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .price-match-text {
        min-width: auto;
    }
    .price-match-btn {
        width: 100%;
        justify-content: center;
    }
}
.for-whom-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a2744 0%, #2d3a5c 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
    will-change: position, transform;
    backface-visibility: hidden;
}
.for-whom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(224, 112, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.for-whom-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}
.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.for-whom-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.for-whom-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}
.audience-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    contain: layout style paint;
    position: relative;
    overflow: hidden;
}
.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.audience-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}
.audience-card:hover::before {
    transform: scaleX(1);
}
.audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(224, 112, 80, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.audience-card:hover .audience-icon {
    background: linear-gradient(135deg, rgba(224, 112, 80, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%);
    transform: scale(1.1);
}
.audience-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}
.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}
.audience-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.benefits-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.benefit-item {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}
.benefit-item:last-child {
    border-right: none;
}
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.03);
}
.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}
.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}
.benefit-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.for-whom-cta {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 3rem 4rem;
    background: linear-gradient(135deg, rgba(224, 112, 80, 0.2) 0%, rgba(224, 112, 80, 0.08) 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 2;
}
.cta-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cta-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.35rem 0.85rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cta-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    max-width: 500px;
}
.cta-left p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
}
.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.cta-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
.cta-button.large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cta-button.large:hover {
    background: var(--accent-hover);
    transform: translateX(4px);
}
.cta-button.large svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.cta-button.large:hover svg {
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-item:nth-child(2) {
        border-right: none;
    }
    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}
@media (max-width: 768px) {
    .for-whom-section {
        padding: 5rem 0;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .audience-card {
        padding: 1.5rem;
    }
    .benefits-strip {
        grid-template-columns: 1fr;
    }
    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .benefit-item:last-child {
        border-bottom: none;
    }
    .for-whom-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    .cta-left h3,
    .cta-left p {
        max-width: 100%;
    }
    .cta-badge {
        margin: 0 auto;
    }
    .cta-parallax-section {
        min-height: 40vh;
        padding: 3rem 0;
    }
}
.platform-section {
    padding: 10rem 0 8rem;
    background: var(--bg-dark-secondary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
    contain: layout style paint;
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}
.feature-card.highlight {
    background: rgba(255, 107, 74, 0.1);
    border-color: rgba(255, 107, 74, 0.3);
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.platform-comparison {
    margin-top: 4rem;
}
.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.comparison-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.comparison-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.comparison-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.comparison-tabs .tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.comparison-tabs .tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.comparison-tabs .tab-btn > * {
    position: relative;
    z-index: 1;
}
.comparison-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.comparison-tabs .tab-btn.active {
    border-color: var(--accent);
    color: white;
    box-shadow:
        0 10px 40px rgba(224, 112, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.comparison-tabs .tab-btn.active::before {
    opacity: 1;
}
.tab-badge {
    padding: 0.3rem 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.comparison-tabs .tab-btn.active .tab-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}
.tab-badge.pro {
    background: rgba(224, 112, 80, 0.15);
    color: var(--accent);
    font-weight: 700;
}
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icm-description {
    text-align: center;
    margin-bottom: 1.5rem;
}
.icm-description p {
    color: var(--text-secondary);
    font-size: 1rem;
}
.comparison-table {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
}
.table-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 1.75rem 2.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.table-header .col-neoweb {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin: -0.75rem 0;
    text-align: center;
    box-shadow:
        0 4px 15px rgba(224, 112, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.table-row {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.table-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.table-row:hover {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.08) 0%, transparent 100%);
}
.table-row:hover::before {
    opacity: 1;
}
.table-row.highlight {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.15) 0%, rgba(224, 112, 80, 0.05) 100%);
    border-top: 1px solid rgba(224, 112, 80, 0.2);
}
.table-row.highlight::before {
    opacity: 1;
}
.table-row.highlight:hover {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.2) 0%, rgba(224, 112, 80, 0.08) 100%);
}
.col-feature {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.col-neoweb {
    color: var(--accent);
    font-weight: 700;
    text-align: center;
}
.col-competitor {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}
.check {
    color: var(--success);
    font-weight: bold;
    font-size: 1.25rem;
}
.cross {
    color: #EF4444;
    font-size: 1.25rem;
    opacity: 0.8;
}
.partial {
    color: #F59E0B;
    font-size: 1.1rem;
}
.price-value {
    font-weight: 700;
    font-size: 1rem;
}
.price-value.price-accent {
    color: var(--accent);
    font-size: 1.2rem;
    text-shadow: 0 0 20px rgba(224, 112, 80, 0.3);
}
.builder-table .table-header,
.builder-table .table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}
.icm-table {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.icm-table .table-header,
.icm-table .table-row {
    grid-template-columns: 2fr 1.2fr 1.2fr;
}
.icm-table .table-header .col-neoweb {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    box-shadow:
        0 4px 15px rgba(224, 112, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.value-highlight {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}
.value-dim {
    color: var(--text-secondary);
    opacity: 0.7;
    font-size: 0.9rem;
}
.note {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}
.note.dim {
    opacity: 0.5;
}
.icm-footer {
    margin-top: 2rem;
    text-align: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}
.icm-footer p {
    color: #EF4444;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}
.platform-comparison.light-theme {
    margin-top: 5rem;
    padding-bottom: 2rem;
}
.platform-comparison.light-theme .comparison-title {
    color: var(--text-dark);
}
.platform-comparison.light-theme .comparison-subtitle {
    color: var(--text-dark-secondary);
}
.platform-comparison.light-theme .comparison-tabs .tab-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.platform-comparison.light-theme .comparison-tabs .tab-btn:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.platform-comparison.light-theme .comparison-tabs .tab-btn.active {
    border-color: var(--accent);
    color: white;
    box-shadow:
        0 10px 40px rgba(224, 112, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.platform-comparison.light-theme .tab-badge {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-dark-secondary);
}
.platform-comparison.light-theme .comparison-tabs .tab-btn.active .tab-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}
.platform-comparison.light-theme .comparison-table {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.platform-comparison.light-theme .table-header {
    background: linear-gradient(180deg, #f5f5f5 0%, #ebebeb 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.platform-comparison.light-theme .table-row {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.platform-comparison.light-theme .table-row::before {
    background: var(--accent);
}
.platform-comparison.light-theme .table-row:hover {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.08) 0%, transparent 100%);
}
.platform-comparison.light-theme .table-row.highlight {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.12) 0%, rgba(224, 112, 80, 0.04) 100%);
    border-top: 1px solid rgba(224, 112, 80, 0.2);
}
.platform-comparison.light-theme .table-row.highlight:hover {
    background: linear-gradient(90deg, rgba(224, 112, 80, 0.18) 0%, rgba(224, 112, 80, 0.06) 100%);
}
.platform-comparison.light-theme .col-feature {
    color: var(--text-dark);
}
.platform-comparison.light-theme .col-competitor {
    color: var(--text-dark-secondary);
}
.platform-comparison.light-theme .price-value {
    color: var(--text-dark);
}
.platform-comparison.light-theme .check {
    text-shadow: none;
}
.platform-comparison.light-theme .icm-description p {
    color: var(--text-dark-secondary);
}
.platform-comparison.light-theme .icm-table {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.platform-comparison.light-theme .value-dim {
    color: var(--text-dark-secondary);
}
.platform-comparison.light-theme .note {
    color: var(--text-dark-secondary);
}
.tech-section {
    padding: 10rem 0 8rem;
    background: var(--bg-light);
    color: var(--text-dark);
}
.tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light-secondary);
    border-radius: 16px;
    transition: all var(--transition-medium);
    contain: layout style paint;
}
.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.tech-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
}
.tech-logo svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}
.tech-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.tech-item p {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
}
.tech-marquee {
    width: 120vw;
    margin-left: -10vw;
    padding: 1.5rem 0;
    background: var(--bg-dark);
    overflow: hidden;
    margin-top: 4rem;
    transform: rotate(-3deg);
}
.tech-marquee .marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tech-marquee .marquee-dot {
    color: var(--accent);
}
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.result-item {
    text-align: center;
}
.result-item.compare {
    opacity: 0.5;
}
.result-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.result-item.compare .result-number {
    color: var(--text-secondary);
}
.result-label {
    font-size: 1.5rem;
    font-weight: 600;
}
.result-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}
.result-divider {
    width: 1px;
    height: 80px;
    background: var(--border-light);
}
.internal-tech-section {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #1a2744 0%, #2d3a5c 50%, #1e3a5f 100%);
    color: var(--text-primary);
    border-radius: 0px;
    overflow: visible;
    position: relative;
    will-change: position, transform;
    backface-visibility: hidden;
}
.internal-tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(224, 112, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.internal-tech-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.internal-tech-text {
    padding-right: 2rem;
}
.internal-tech-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.internal-tech-title span {
    display: block;
}
.internal-tech-title .accent-text {
    color: var(--accent);
    opacity: 1;
}
.internal-tech-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.internal-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.internal-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}
.internal-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 10px;
}
.internal-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.internal-tech-visual {
    position: relative;
}
.browser-mockup {
    position: relative;
}
.browser-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(224, 112, 80, 0.25) 0%, rgba(224, 112, 80, 0.15) 100%);
    border: 1px solid rgba(224, 112, 80, 0.4);
    border-radius: 24px;
    transform: rotate(-2deg);
    z-index: -1;
    pointer-events: none;
    transition: transform 0.4s ease;
}
.browser-mockup:hover::before {
    transform: rotate(2deg);
}
.browser-frame {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: #F8F9FA;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.browser-dots .dot.red { background: #FF5F56; }
.browser-dots .dot.yellow { background: #FFBD2E; }
.browser-dots .dot.green { background: #27CA40; }
.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    font-family: 'Monaco', 'Consolas', monospace;
    background: #FFFFFF;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.browser-content {
    display: flex;
    min-height: 350px;
    background: #FAFBFC;
}
.builder-sidebar {
    width: 60px;
    background: #FFFFFF;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    transition: all 0.2s;
}
.sidebar-icon.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
}
.sidebar-icon svg {
    width: 20px;
    height: 20px;
}
.builder-canvas {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}
.canvas-element {
    border-radius: 8px;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    background: #FFFFFF;
    transition: all 0.3s;
}
.canvas-element.header-preview {
    height: 40px;
    background: linear-gradient(90deg, #E5E7EB 30%, transparent 30%);
}
.canvas-element.hero-preview {
    height: 60px;
    background: linear-gradient(180deg,
        #E5E7EB 0%, #E5E7EB 40%,
        transparent 40%, transparent 60%,
        #E5E7EB 60%, #E5E7EB 100%);
    background-size: 100% 100%;
}
.canvas-element.component-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    font-size: 0.9rem;
    color: #6366F1;
    font-weight: 500;
}
.canvas-element.empty-block {
    height: 80px;
}
.browser-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-dark);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.browser-badge svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 992px) {
    .internal-tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .internal-tech-text {
        padding-right: 0;
        text-align: center;
    }
    .internal-features {
        align-items: center;
    }
    .browser-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
}
.contact-section {
    padding: 10rem 0 8rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 40px 40px 0 0;
    position: relative;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}
.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}
.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark-secondary);
}
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light-secondary);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-medium);
    min-width: 250px;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}
.contact-card.telegram:hover {
    border-color: #0088cc;
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #ff8a5c);
    border-radius: 14px;
    color: white;
    flex-shrink: 0;
}
.contact-card.telegram .contact-card-icon {
    background: linear-gradient(135deg, #0088cc, #00b4e6);
}
.contact-card-icon svg {
    width: 24px;
    height: 24px;
}
.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.contact-card-label {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.contact-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 320px;
    }
}
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
    color: var(--text-primary);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}
.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-column h4,
.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.footer-column a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}
.footer-column a:hover {
    color: var(--accent);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact h4,
.footer-contact .footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
}
.footer-contact > a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}
.footer-contact > a:hover {
    color: var(--accent);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.footer-contact-item:hover {
    color: var(--accent);
}
.footer-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}
.footer-socials a svg {
    width: 20px;
    height: 20px;
}
.footer-socials a:hover {
    background: var(--accent);
    color: white;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--text-primary);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1200px) {
    :root {
        --container-padding: 2rem;
    }
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
    .builder-animation {
        width: 40%;
        right: 3%;
    }
    .website-frame {
        width: 280px;
        height: 360px;
        top: 35%;
        left: 25%;
    }
}
@media (max-width: 992px) {
    .scroll-progress {
        display: none;
    }
    .header {
        padding: 1rem var(--container-padding);
    }
    .header.scrolled {
        padding: 1rem var(--container-padding);
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .hero {
        flex-direction: column;
        padding-top: 10rem;
        position: relative;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .builder-animation {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 4rem;
        width: 100%;
        height: 400px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .website-frame {
        width: 260px;
        height: 340px;
        top: 20%;
        left: 25%;
    }
    .builder-scene {
        transform: scale(0.9);
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    body {
        cursor: auto;
    }
    a, button {
        cursor: pointer;
    }
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .hero-badge {
        font-size: 0.75rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .tech-stack {
        grid-template-columns: 1fr;
    }
    .tech-result {
        flex-direction: column;
        gap: 2rem;
    }
    .result-divider {
        width: 80px;
        height: 1px;
    }
    .builder-table .table-header,
    .builder-table .table-row {
        grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr;
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    .table-header .col-neoweb {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 0px;
    }
    .platform-comparison {
        margin-top: 3rem;
    }
    .comparison-title {
        font-size: 1.35rem;
    }
    .comparison-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    .comparison-tabs .tab-btn {
        padding: 0.75rem 1.5rem;
        justify-content: center;
    }
    .icm-table .table-header,
    .icm-table .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
    .note {
        display: none;
    }
    .marquee-content span {
        font-size: 1.5rem;
    }
    .tech-marquee {
        width: 120vw;
        margin-left: -10px;
        transform: rotate(-2deg);
    }
    .tech-marquee .marquee-track {
        font-size: 1rem;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .scroll-indicator {
        display: none;
    }
    .internal-tech-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .platform-section,
    .tech-section,
    .contact-section {
        padding: 5rem 0 4rem;
    }
    .contact-section {
        margin-top: -40px;
    }
    .services-section {
        padding: 5rem 0;
    }
    .internal-tech-section {
        padding: 5rem 0 5rem;
    }
}
@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }
    header,
    section {
        overflow-x: hidden!important;
        max-width: 100vw!important;
    }
    .nav-actions {
        gap: 0.5rem;
    }
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .pricing-tabs {
        flex-direction: row;
    }
    .builder-table .table-header,
    .builder-table .table-row {
        grid-template-columns: 1.3fr 0.6fr 0.6fr 0.6fr;
        gap: 0.25rem;
        font-size: 0.65rem;
        padding: 0.6rem 0.75rem;
    }
    .col-competitor {
        font-size: 0.6rem;
    }
    .col-feature {
        font-size: 0.65rem;
    }
    .comparison-title {
        font-size: 1.2rem;
    }
    .comparison-tabs .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .tab-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }
    .icm-table .table-header,
    .icm-table .table-row {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        font-size: 0.65rem;
        padding: 0.6rem 0.75rem;
    }
    .value-highlight,
    .value-dim {
        font-size: 0.65rem;
    }
    .icm-footer p {
        font-size: 0.7rem;
    }
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .mobile-nav-links a {
        font-size: 1.5rem;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .builder-animation {
        display: none;
    }
    .internal-tech-title {
        font-size: 1.6rem;
    }
    .internal-tech-desc {
        font-size: 0.9rem;
    }
    .check, .cross, .partial {
        font-size: 1rem;
    }
    .price-value {
        font-size: 0.8rem;
    }
    .price-value.price-accent {
        font-size: 0.9rem;
    }
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 1.25rem 2rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-consent.show {
    transform: translateY(0);
}
.cookie-consent-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-consent-text {
    flex: 1;
}
.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-consent-text a:hover {
    color: var(--accent-hover);
}
.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem 1.25rem;
    }
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
}
