@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --smoke-white: #F8FAFB;
    --slate-gray: #F1F5F9;
    --electric-purple: #9333EA;
    --electric-purple-dark: #7C3AED;
    --neon-yellow: #FACC15;
    --deep-slate: #1E293B;
    --rich-black: #0F172A;
    --steel-charcoal: #334155;
    --cool-gray: #94A3B8;
    --light-gray: #B0B8C4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--steel-charcoal);
    background-color: var(--smoke-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

::selection {
    background: var(--electric-purple);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--slate-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--electric-purple), var(--neon-yellow));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.text-electric-purple { color: var(--electric-purple); }
.text-neon-yellow { color: var(--neon-yellow); }
.text-deep-slate { color: var(--deep-slate); }
.text-rich-black { color: var(--rich-black); }
.text-steel-charcoal { color: var(--steel-charcoal); }
.text-cool-gray { color: var(--cool-gray); }

.bg-smoke-white { background-color: var(--smoke-white); }
.bg-slate-gray { background-color: var(--slate-gray); }
.bg-electric-purple { background-color: var(--electric-purple); }
.bg-deep-slate { background-color: var(--deep-slate); }
.bg-rich-black { background-color: var(--rich-black); }

.header-bottom-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 900px;
    background: rgba(248, 250, 251, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 60px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.1), 0 20px 60px rgba(147, 51, 234, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-bottom-bar.scrolled {
    padding: 10px 28px;
}

.header-bottom-bar.scrolled .nav-links {
    /* opacity: 0; */
    /* pointer-events: none; */
    font-size: 11px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo svg {
    width: 36px;
    height: 36px;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--rich-black);
    line-height: 1.2;
}

.header-logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 8px;
    color: var(--cool-gray);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: opacity 0.35s ease;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--steel-charcoal);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: var(--electric-purple);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--electric-purple);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--neon-yellow);
    text-decoration: none;
}

.btn-primary {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--electric-purple), var(--electric-purple-dark));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(248, 250, 251, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.12);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-logo svg {
    width: 28px;
    height: 28px;
}

.mobile-logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--rich-black);
}

.hamburger {
    width: 44px;
    height: 44px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--electric-purple);
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 251, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay svg.diagonal-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 1;
}

.mobile-nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--rich-black);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.16s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.34s; }

.mobile-nav-divider {
    width: 40px;
    height: 2px;
    background: var(--electric-purple);
}

.mobile-contact-info {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-contact-info {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--neon-yellow);
    text-decoration: none;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(147, 51, 234, 0.1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    min-height: 100vh;
    background: var(--smoke-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.15);
    animation: floatParticle 10s ease-in-out infinite alternate;
}

@keyframes floatParticle {
    0% { transform: translate(0, 0); }
    100% { transform: translate(12px, -12px); }
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 1;
}

.hero-diagonal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
    clip-path: polygon(60% 0, 100% 0, 100% 40%, 40% 100%, 0 100%, 0 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    padding: 120px 60px 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-accent-line {
    width: 60px;
    height: 4px;
    background: var(--electric-purple);
    transform: rotate(-12deg);
    margin-bottom: 24px;
    animation: accentReveal 0.4s ease-out;
}

@keyframes accentReveal {
    from { width: 0; }
    to { width: 60px; }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--rich-black);
    max-width: 520px;
    line-height: 0.95;
    clip-path: inset(0 0 0 0);
    animation: titleReveal 0.7s ease-out;
}

@keyframes titleReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

.hero-subtitle {
    font-size: 17px;
    color: #64748B;
    line-height: 1.75;
    max-width: 440px;
    margin-top: 20px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-markers {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.hero-marker {
    width: 10px;
    height: 10px;
    background: var(--neon-yellow);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.4));
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.btn-hero-primary {
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--electric-purple), var(--electric-purple-dark));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.2);
    transition: all 0.25s ease-out;
}

.btn-hero-primary:hover {
    box-shadow: 0 0 28px rgba(147, 51, 234, 0.5);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    padding: 18px 36px;
    background: transparent;
    color: var(--rich-black);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.05em;
    border: 2px solid var(--rich-black);
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease-out;
}

.btn-hero-secondary:hover {
    border-color: var(--electric-purple);
    color: var(--electric-purple);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageReveal 0.7s ease-out;
}

@keyframes imageReveal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3) 0%, transparent 60%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.hero-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: 0;
    padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
    animation: cardReveal 0.6s ease-out both;
}

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

.hero-stat-card:nth-child(2) { top: 80px; right: 0; animation-delay: 0.7s; }
.hero-stat-card:nth-child(3) { top: 50%; right: 20px; animation-delay: 0.85s; }
.hero-stat-card:nth-child(4) { bottom: 40px; right: 0; animation-delay: 1s; }

.stat-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--rich-black);
}

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--electric-purple);
}

.page-hero {
    min-height: 280px;
    background: var(--slate-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    max-width: 560px;
    margin-left: 40px;
}

.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--light-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: var(--cool-gray);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--electric-purple);
}

.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--rich-black);
    display: flex;
    align-items: center;
}

.page-hero-dot {
    width: 10px;
    height: 10px;
    background: var(--electric-purple);
    border-radius: 50%;
    margin-right: 16px;
    animation: dotScale 0.3s ease-out;
}

@keyframes dotScale {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.page-hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.page-hero-marker {
    width: 8px;
    height: 8px;
    background: var(--neon-yellow);
    transform: rotate(45deg);
    animation: markerReveal 0.4s ease-out both;
}

.page-hero-marker:nth-child(2) { animation-delay: 0.1s; }
.page-hero-marker:nth-child(3) { animation-delay: 0.2s; }

@keyframes markerReveal {
    from { transform: scale(0) rotate(45deg); }
    to { transform: scale(1) rotate(45deg); }
}

.section {
    padding: 100px 60px 80px;
    position: relative;
}

.section-sticky-transition {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--slate-gray);
}

.section-purple {
    background: var(--electric-purple);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    border-left: 4px solid var(--electric-purple);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.12);
    border-left-width: 6px;
    transform: translateY(-3px);
}

.service-card-accent {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.06), rgba(250, 204, 21, 0.02));
}

.service-card-yellow-decor {
    height: 2px;
    width: 40px;
    background: var(--neon-yellow);
    margin-top: auto;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    color: var(--rich-black);
    margin-bottom: 8px;
}

.service-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    flex-grow: 1;
}

.service-card-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    border: none;
    overflow: hidden;
}

.service-card-large:hover {
    border: none;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-card-image {
    transform: scale(1.02);
}

.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, transparent 60%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
    pointer-events: none;
}

.service-card-text-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: white;
}

.service-card-large .service-title {
    color: white;
    font-size: 20px;
}

.service-card-large .service-text {
    color: rgba(255,255,255,0.85);
}

.service-card-cta {
    background: linear-gradient(135deg, var(--electric-purple), var(--electric-purple-dark));
    border: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-cta-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: white;
}

.btn-yellow {
    padding: 12px 24px;
    background: var(--neon-yellow);
    color: var(--rich-black);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-yellow:hover {
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}

.service-headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.service-headline-line {
    width: 80px;
    height: 4px;
    background: var(--electric-purple);
    transform: rotate(-12deg);
    margin-bottom: 16px;
}

.service-headline-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--rich-black);
}

.service-headline-subtitle {
    font-size: 14px;
    color: var(--cool-gray);
    max-width: 280px;
    margin-top: 8px;
}

.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(147, 51, 234, 0.08);
    margin-top: 60px;
}

.marquee-track {
    display: flex;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--rich-black);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 0 18px;
}

.marquee-divider {
    width: 6px;
    height: 6px;
    background: var(--neon-yellow);
    transform: rotate(45deg);
}

.marquee-process .marquee-divider {
    background: var(--electric-purple);
}

.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
}

.about-image-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 60%);
}

.about-image-decor {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 80px;
    height: 80px;
    background: rgba(250, 204, 21, 0.15);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.about-content-section {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-line {
    width: 48px;
    height: 4px;
    background: var(--electric-purple);
    transform: rotate(-12deg);
    margin-bottom: 24px;
}

.about-content-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--rich-black);
    margin-bottom: 24px;
}

.about-content-text {
    font-size: 15px;
    color: var(--steel-charcoal);
    line-height: 1.8;
}

.about-content-text + .about-content-text {
    margin-top: 16px;
}

.about-dot {
    width: 4px;
    height: 4px;
    background: var(--neon-yellow);
    transform: rotate(45deg);
    display: inline-block;
    margin: 16px 0;
}

.btn-about {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--electric-purple), var(--electric-purple-dark));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
    align-self: flex-start;
    margin-top: 24px;
}

.btn-about:hover {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--electric-purple), var(--electric-purple-dark), var(--neon-yellow));
    transform: rotate(-6deg);
}

.process-step {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-card {
    width: calc(50% - 56px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    padding: 24px 28px;
    border: 1px solid rgba(147, 51, 234, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}

.process-number {
    width: 52px;
    height: 52px;
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid var(--electric-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--electric-purple);
    margin-bottom: 16px;
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--rich-black);
    margin-bottom: 8px;
}

.process-text {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
}

.process-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 12px;
    filter: saturate(1.05);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}

.process-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 3px;
    background: var(--electric-purple);
    transform: translate(-50%, -50%) rotate(-6deg);
}

.process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--electric-purple);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--electric-purple);
    transform: translate(-50%, -50%);
}

.advantages-overlap {
    display: flex;
    padding: 0 80px;
    gap: 0;
    position: relative;
}

.advantage-card {
    width: 300px;
    background: white;
    border-radius: 0;
    border-top: 4px solid var(--neon-yellow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    padding: 28px;
    margin-left: -32px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
    position: relative;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-16px) scale(1.05);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.advantage-card:hover .advantage-icon {
    color: var(--electric-purple);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--neon-yellow);
    transition: color 0.3s ease;
}

.advantage-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--rich-black);
    margin-bottom: 12px;
}

.advantage-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.65;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(147, 51, 234, 0.08);
    border-radius: 0;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.achievement-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.15);
}

.achievement-card:hover .achievement-value {
    color: var(--electric-purple);
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-icon {
    width: 44px;
    height: 44px;
    color: var(--electric-purple);
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.achievement-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--rich-black);
    transition: color 0.3s ease;
}

.achievement-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--cool-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.achievement-decor {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(250, 204, 21, 0.4);
    transform: rotate(45deg);
}

.team-canvas {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    padding: 0 80px;
}

.team-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(147, 51, 234, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.team-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(147, 51, 234, 0.08);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    padding: 0;
    cursor: grab;
    width: 220px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 20px 56px rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.15);
    transform: translateY(-4px);
}

.team-card.dragging {
    cursor: grabbing;
    transform: scale(1.02);
    box-shadow: 0 24px 72px rgba(147, 51, 234, 0.12);
    z-index: 100;
}

.team-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    filter: saturate(1.05);
}

.team-card-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--electric-purple), var(--neon-yellow));
}

.team-card-content {
    padding: 16px;
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--rich-black);
}

.team-role {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: var(--electric-purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.team-specialty {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--cool-gray);
    margin-top: 6px;
}

.team-card-decor {
    height: 2px;
    width: 30px;
    background: var(--neon-yellow);
    transform: rotate(-12deg);
    margin-top: 12px;
}

.team-connection-line {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.team-glow-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(250, 204, 21, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    border-left: 3px solid var(--electric-purple);
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:nth-child(even) {
    align-self: end;
    margin-top: 20px;
}

.faq-item.active {
    background: rgba(147, 51, 234, 0.04);
    border-left-width: 4px;
    grid-column: span 2;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--rich-black);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--cool-gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--electric-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.75;
    padding: 16px 0 0;
}

.testimonials-carousel {
    position: relative;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.testimonials-track {
    position: relative;
    width: 300px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    border-top: 3px solid var(--neon-yellow);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    padding: 0;
    transition: all 0.4s ease;
}

.testimonial-card.active {
    z-index: 100;
    transform: scale(1.05);
    box-shadow: 0 24px 64px rgba(147, 51, 234, 0.12);
}

.testimonial-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: rgba(250, 204, 21, 0.15);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.testimonial-image {
    width: 100%;
    height: 110px;
    object-fit: cover;
    filter: saturate(1.05);
}

.testimonial-content {
    padding: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-star {
    width: 16px;
    height: 16px;
    color: var(--neon-yellow);
}

.testimonial-text {
    font-size: 15px;
    color: var(--steel-charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--electric-purple);
}

.testimonial-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--rich-black);
}

.testimonial-company {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: var(--cool-gray);
}

.testimonial-bottom-accent {
    height: 3px;
    width: 100%;
    background: var(--electric-purple);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0;
    border: 1px solid rgba(147, 51, 234, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--electric-purple);
}

.carousel-arrow:hover svg {
    stroke: white;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--electric-purple);
}

.carousel-arrow-prev { left: calc(50% - 220px); }
.carousel-arrow-next { right: calc(50% - 220px); }

.contacts-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.contacts-form-section {
    padding: 80px 60px;
}

.contacts-form-line {
    width: 48px;
    height: 4px;
    background: var(--electric-purple);
    transform: rotate(-12deg);
    margin-bottom: 24px;
}

.contacts-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--rich-black);
    margin-bottom: 24px;
}

.contacts-form-subtitle {
    font-size: 14px;
    color: var(--cool-gray);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--cool-gray);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: block;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.12);
    border-radius: 0;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: var(--steel-charcoal);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--electric-purple);
}

.form-input:focus + .form-label,
.form-textarea:focus + .form-label {
    color: var(--electric-purple);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--electric-purple), var(--electric-purple-dark));
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 6px 6px 0 rgba(15, 23, 42, 0.2);
    transition: all 0.25s ease;
}

.btn-submit:hover {
    box-shadow: 0 0 28px rgba(147, 51, 234, 0.5);
}

.contacts-info-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    padding: 80px 48px;
    border: 1px solid rgba(147, 51, 234, 0.08);
    box-shadow: 0 16px 56px rgba(15, 23, 42, 0.06);
}

.contact-block {
    padding: 20px 0;
}

.contact-block + .contact-block {
    border-top: 1px solid rgba(250, 204, 21, 0.15);
    margin-top: 16px;
    padding-top: 36px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--electric-purple);
    margin-bottom: 12px;
}

.contact-text {
    font-size: 15px;
    color: var(--steel-charcoal);
}

.contact-map {
    width: 100%;
    height: 200px;
    border-radius: 0;
    border: 1px solid rgba(147, 51, 234, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    filter: grayscale(100%);
    margin-top: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(147, 51, 234, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
}

.footer {
    background: var(--deep-slate);
    color: white;
    padding: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.footer-brand-text {
    font-size: 14px;
    color: var(--cool-gray);
    line-height: 1.7;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--cool-gray);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--neon-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 12px;
    color: var(--cool-gray);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--cool-gray);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 100px;
    left: 24px;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 24px;
    z-index: 999;
    border: 1px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.visible {
    display: block;
    animation: cookieSlideIn 0.4s ease-out;
}

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

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: white;
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 13px;
    color: var(--cool-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-cookie-accept {
    background: var(--electric-purple);
    color: white;
}

.btn-cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.cookie-link {
    color: var(--neon-yellow);
    text-decoration: none;
    font-size: 12px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.5s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-diagonal {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

.reveal-diagonal.visible {
    opacity: 1;
    transform: scale(1);
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--electric-purple);
    margin-top: auto;
    padding-top: 12px;
}

.price-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--rich-black);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--rich-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--cool-gray);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.process-marquee .marquee-item {
    font-size: 13px;
}

.process-marquee .marquee-divider {
    background: var(--electric-purple);
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--electric-purple);
}

.form-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--rich-black);
    margin-bottom: 16px;
}

.form-success-text {
    font-size: 16px;
    color: var(--steel-charcoal);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--rich-black);
    margin-bottom: 32px;
}

.legal-text {
    font-size: 15px;
    color: var(--steel-charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--rich-black);
    margin-bottom: 16px;
    margin-top: 32px;
}

.thank-you-content {
    text-align: center;
    padding: 120px 60px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    color: var(--electric-purple);
    margin-bottom: 32px;
}

.thank-you-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--rich-black);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--steel-charcoal);
    max-width: 500px;
    margin-bottom: 40px;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--rich-black);
    margin-bottom: 24px;
}

.service-detail-text {
    font-size: 16px;
    color: var(--steel-charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--electric-purple);
    margin-bottom: 8px;
}

.service-detail-price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--rich-black);
}

.service-features {
    margin-top: 40px;
}

.service-features-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--rich-black);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
}

.service-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--steel-charcoal);
}

.service-features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--electric-purple);
    transform: rotate(45deg);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .header-bottom-bar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 30px 80px;
    }
    
    .hero-right {
        display: none;
    }
    
    .section {
        padding: 60px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .service-card-large {
        grid-column: span 1;
        grid-row: span 1;
        height: 280px;
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-image-section {
        height: 300px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }
    
    .process-card {
        width: calc(100% - 60px);
        margin-left: 50px;
    }
    
    .process-connector,
    .process-dot {
        left: 20px;
    }
    
    .advantages-overlap {
        flex-direction: column;
        padding: 0 30px;
        gap: 24px;
    }
    
    .advantage-card {
        width: 100%;
        margin-left: 0;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-canvas {
        padding: 0 20px;
    }
    
    .team-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 20px;
    }
    
    .faq-accordion {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
    
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
    
    .faq-item.active {
        grid-column: span 1;
    }
    
    .contacts-split {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}
