/*

TemplateMo 597 Neural Glass

https://templatemo.com/tm-597-neural-glass

*/


@charset "utf-8";
/* CSS Document */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     overflow-x: hidden;
}
 body {
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
     background: #000;
     color: #e0a3ff;
     overflow-x: hidden;
     min-height: 100vh;
     font-weight: 400;
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
}
body.preloader-active {
    overflow: hidden;
}
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: radial-gradient(circle at 50% 35%, rgba(60, 24, 94, 0.92) 0%, rgba(10, 6, 18, 0.98) 70%);
    backdrop-filter: blur(6px);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-core {
    position: relative;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(224, 163, 255, 0.2);
    border-top-color: #e0a3ff;
    border-right-color: #ff69b4;
    animation: preloaderSpin 1.1s linear infinite;
    box-shadow: 0 0 20px rgba(224, 163, 255, 0.2);
}
.preloader-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(224, 163, 255, 0.5);
    animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader-text {
    color: #f1dcff;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    opacity: 0.9;
}
@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}
/* Enhanced background colors - Purple/Pink/Green palette */
 .neural-background {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     background: radial-gradient(circle at 15% 85%, rgba(75, 0, 130, 0.7) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(139, 37, 99, 0.8) 0%, transparent 50%), radial-gradient(circle at 45% 60%, rgba(128, 0, 128, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.4) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #2d1b3d 50%, #000000 100%);
    animation: backgroundPulse 24s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    will-change: filter, transform;
}
 @keyframes backgroundPulse {
    0%, 100% {
        filter: brightness(0.94) saturate(1.25) hue-rotate(0deg);
        transform: scale(1);
   }
    25% {
        filter: brightness(1.0) saturate(1.35) hue-rotate(4deg);
        transform: scale(1.015);
   }
    50% {
        filter: brightness(1.03) saturate(1.4) hue-rotate(7deg);
        transform: scale(1.02);
   }
    75% {
        filter: brightness(0.98) saturate(1.32) hue-rotate(3deg);
        transform: scale(1.012);
   }
}
/* Floating geometric shapes */
 .geometric-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
}
 .shape {
     position: absolute;
     border: 1px solid rgba(0, 255, 255, 0.3);
    animation: floatShape 36s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: blur(0.35px);
    will-change: transform, opacity;
}
 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     left: 10%;
     animation-delay: 0s;
     border-color: rgba(255, 105, 180, 0.4);
}
 .shape:nth-child(2) {
     width: 60px;
     height: 60px;
     left: 70%;
     animation-delay: -5s;
     border-radius: 50%;
     border-color: rgba(147, 112, 219, 0.4);
}
 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     left: 30%;
     animation-delay: -10s;
     transform: rotate(45deg);
     border-color: rgba(224, 163, 255, 0.4);
}
 .shape:nth-child(4) {
     width: 120px;
     height: 120px;
     left: 50%;
     animation-delay: -15s;
     clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
     background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), transparent);
}
 @keyframes floatShape {
    0% {
        transform: translate3d(0, 110vh, 0) rotate(0deg) scale(0.94);
         opacity: 0;
    }
    15% {
        opacity: 0.55;
    }
    50% {
        opacity: 0.72;
        transform: translate3d(18px, 38vh, 0) rotate(190deg) scale(1);
    }
    85% {
        opacity: 0.45;
    }
    100% {
        transform: translate3d(-12px, -16vh, 0) rotate(360deg) scale(1.05);
        opacity: 0.1;
    }
}
/* Neural network lines */
 .neural-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
    display: none;
}
.neural-line {
    display: none !important;
}
 .neural-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, #00ffff, transparent);
     height: 1px;
     animation: neuralPulse 3s ease-in-out infinite;
}
 .neural-line:nth-child(1) {
     top: 20%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation-delay: 0s;
}
 .neural-line:nth-child(2) {
     top: 60%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #ff69b4, transparent);
     animation-delay: -1s;
}
 .neural-line:nth-child(3) {
     top: 40%;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, transparent, #9370db, transparent);
     animation-delay: -2s;
}
 @keyframes neuralPulse {
     0%, 100% {
         opacity: 0.2;
         transform: scaleX(0.5);
    }
     50% {
         opacity: 1;
         transform: scaleX(1);
    }
}
/* Glassmorphism styles */
 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
 .glass-strong {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
/* Enhanced Header */
 header {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     width: 96%;
     max-width: 1200px;
     padding: 18px 35px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 header.scrolled {
     background: rgba(224, 163, 255, 0.12);
     backdrop-filter: blur(30px);
     border-color: rgba(224, 163, 255, 0.2);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(224, 163, 255, 0.1);
}
 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     animation: logoGlow 3s ease-in-out infinite;
     transition: all 0.3s ease;
}
 .logo:hover {
     transform: scale(1.05);
}
.logo-image {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(224, 163, 255, 0.45));
}
 @keyframes logoGlow {
     0%, 100% {
         filter: drop-shadow(0 0 10px #e0a3ff);
    }
     50% {
         filter: drop-shadow(0 0 20px #ff69b4);
    }
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 12px;
}
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-links li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 22px;
    margin-left: 10px;
    background: linear-gradient(to bottom, transparent, rgba(224, 163, 255, 0.65), transparent);
}
 .nav-links a {
     color: #ffffff;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     padding: 12px 20px;
     border-radius: 15px;
     font-size: 0.95rem;
     font-weight: 500;
     letter-spacing: 0.02em;
}
.nav-links a::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e0a3ff, #ff69b4);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-links a:hover {
    transform: translateY(-2px);
    color: #ffe7ff;
    text-shadow: 0 0 12px rgba(224, 163, 255, 0.45);
    background: rgba(224, 163, 255, 0.08);
}
.nav-links a:hover::before {
    transform: scaleX(1);
    opacity: 1;
}
 .nav-links a.active {
     color: #e0a3ff;
     background: linear-gradient(135deg, rgba(224, 163, 255, 0.15), rgba(255, 105, 180, 0.1));
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(224, 163, 255, 0.2);
     border: 1px solid rgba(224, 163, 255, 0.3);
     text-shadow: 0 0 10px rgba(224, 163, 255, 0.8);
     transform: translateY(-1px);
}
 .nav-links a.active::after {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4, #9370db, #e0a3ff);
     background-size: 400% 400%;
     border-radius: 17px;
     z-index: -2;
     animation: borderGlow 3s ease infinite;
}
.nav-links a.external-link::after {
    content: " ↗";
    font-size: 0.8em;
    vertical-align: super;
}
 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
/* Mobile Menu */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     padding: 8px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
}
 .mobile-menu-toggle:hover {
     background: rgba(224, 163, 255, 0.1);
     box-shadow: 0 0 15px rgba(224, 163, 255, 0.3);
}
/* Mobile menu active state */
.mobile-nav a.active {
    background: linear-gradient(135deg, rgba(224, 163, 255, 0.2), rgba(255, 105, 180, 0.15));
    color: #e0a3ff;
    border: 1px solid rgba(224, 163, 255, 0.4);
    box-shadow: 
        0 0 25px rgba(224, 163, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(224, 163, 255, 0.6);
}
 .hamburger-line {
     width: 25px;
     height: 3px;
     background: linear-gradient(45deg, #e0a3ff, #ff69b4);
     margin: 3px 0;
     border-radius: 2px;
     transition: all 0.3s ease;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
     transform: rotate(45deg) translate(9px, 9px);
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -6px);
}
 .mobile-nav {
     position: fixed;
     top: 90px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 400px;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     padding: 30px;
     display: none;
     flex-direction: column;
     gap: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 .mobile-nav.active {
     display: flex;
     animation: slideDown 0.3s ease-out;
}
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateX(-50%) translateY(-20px);
    }
     to {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
    }
}
 .mobile-nav a {
     color: #ffffff;
     text-decoration: none;
     padding: 15px 20px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     font-size: 1.1rem;
     transition: all 0.3s ease;
}
 .mobile-nav a:hover {
     background: rgba(224, 163, 255, 0.1);
     color: #e0a3ff;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
     transform: translateY(-2px);
}
/* Section 1: Modern Redesigned Hero */
 .hero {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
  background-image:
      linear-gradient(to bottom, rgba(10, 6, 18, 0) 52%, rgba(10, 6, 18, 0.28) 72%, rgba(10, 6, 18, 0.62) 88%, rgba(10, 6, 18, 0.9) 100%),
      url('images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  box-shadow: none;
}
 .hero::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 60%;
     height: 60%;
     background: radial-gradient(circle, rgba(224, 163, 255, 0.04) 0%, transparent 70%);
     transform: translate(-50%, -50%);
     animation: heroGlow 10s ease-in-out infinite;
     z-index: -1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    z-index: 0;
}
 @keyframes heroGlow {
     0%, 100% {
         transform: translate(-50%, -50%) scale(1) rotate(0deg);
         opacity: 0.6;
    }
     50% {
         transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
         opacity: 1;
    }
}
 .hero-content {
     max-width: 1000px;
     padding: 80px 40px;
	 margin-top: 120px;
     animation: heroAppear 2.5s ease-out;
     position: relative;
    z-index: 1;
     background: none;
     backdrop-filter: none;
     border: none;
     box-shadow: none;
     border-radius: 0;
}
 @keyframes heroAppear {
     from {
         opacity: 0;
         transform: translateY(60px) scale(0.96);
    }
     to {
         opacity: 1;
         transform: translateY(0) scale(1);
    }
}
 .hero-subtitle {
     font-size: 0.9rem;
    color: #ffffff;
     margin-bottom: 25px;
     opacity: 0;
     animation: slideInFromLeft 1.2s ease 0.3s forwards;
     text-transform: uppercase;
     letter-spacing: 0.4em;
     position: relative;
     display: inline-block;
     font-weight: 300;
    background: rgba(0, 0, 0, 0.55);
    padding: 10px 16px;
    border-radius: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
 .hero-subtitle::before, .hero-subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 40px;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
     animation: linePulse 3s ease infinite;
}
 .hero-subtitle::before {
     left: -60px;
}
 .hero-subtitle::after {
     right: -60px;
}
 @keyframes linePulse {
     0%, 100% {
         opacity: 0.4;
         transform: scaleX(0.8);
    }
     50% {
         opacity: 1;
         transform: scaleX(1.2);
    }
}
 @keyframes slideInFromLeft {
     from {
         opacity: 0;
         transform: translateX(-40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero h1 {
     font-size: clamp(2.2rem, 6vw, 4rem);
     margin-bottom: 30px;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
     animation: modernGradient 8s ease infinite;
     line-height: 1.1;
     letter-spacing: -0.02em;
     font-weight: 800;
     text-shadow: none;
     opacity: 0;
     animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
}
 @keyframes modernGradient {
     0% {
         background-position: 0% 50%;
    }
     50% {
         background-position: 100% 50%;
    }
     100% {
         background-position: 0% 50%;
    }
}
 @keyframes slideInFromRight {
     from {
         opacity: 0;
         transform: translateX(40px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .hero-description {
     max-width: 700px;
     margin: 40px auto 50px;
     opacity: 0;
     animation: fadeInScale 1.2s ease 0.9s forwards;
     text-align: center;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
 .hero-description p {
     font-size: 1.2rem;
    color: #f3f3f3;
     line-height: 1.7;
     margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .hero-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 40px;
     margin: 60px auto 50px;
     max-width: 640px;
     opacity: 0;
     animation: slideUpStagger 1.2s ease 1.2s forwards;
}
 .hero-stat {
     text-align: center;
     position: relative;
     padding: 20px;
    background: linear-gradient(135deg, rgba(8, 8, 12, 0.75), rgba(34, 20, 46, 0.72));
    border: 1px solid rgba(224, 163, 255, 0.35);
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
 .hero-stat:hover {
     transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 105, 180, 0.55);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(224, 163, 255, 0.18);
}
 .hero-stat-number {
     font-size: 1.8rem;
     font-weight: 700;
    color: #e7b8ff;
     display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
     margin-bottom: 8px;
}
 .hero-stat-label {
     font-size: 0.8rem;
    color: #f2f2f2;
     text-transform: uppercase;
     letter-spacing: 0.1em;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
 @keyframes slideUpStagger {
     from {
         opacity: 0;
         transform: translateY(30px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
     opacity: 0;
     animation: buttonSlideUp 1.2s ease 1.5s forwards;
}
 @keyframes buttonSlideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .cta-button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(135deg, #e0a3ff, #ff69b4);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     text-transform: uppercase;
     letter-spacing: 0.03em;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.2);
}
 .cta-button.secondary {
     background: transparent;
     border: 2px solid #e0a3ff;
     color: #e0a3ff;
     box-shadow: 0 4px 15px rgba(224, 163, 255, 0.1);
}
 .cta-button:hover {
     transform: translateY(-4px) scale(1.02);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.3);
}
 .cta-button.secondary:hover {
     background: rgba(224, 163, 255, 0.08);
     box-shadow: 0 12px 30px rgba(224, 163, 255, 0.2);
}
/* Section 2: Diagonal Features */
 .features {
    margin-top: -2px;
     padding: 150px 0;
     position: relative;
     overflow: hidden;
   background-image:
      linear-gradient(to bottom, rgba(10, 6, 18, 0.94) 0%, rgba(10, 6, 18, 0.72) 12%, rgba(10, 6, 18, 0.34) 26%, rgba(10, 6, 18, 0.08) 42%),
      linear-gradient(to top, rgba(10, 6, 18, 0.3) 0%, rgba(10, 6, 18, 0.08) 28%),
       url('images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  box-shadow: none;
}
.features {
    isolation: isolate;
}
 .features::before {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   bottom: -1px;
   height: 90px;
   background: linear-gradient(to bottom, rgba(10, 6, 18, 0) 0%, rgba(10, 6, 18, 0.88) 100%);
   z-index: 1;
   pointer-events: none;
}
.features::after {
    content: '';
    position: absolute;
    inset: 0;
   background: rgba(10, 6, 18, 0.14);
    backdrop-filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}
.features::after {
    background:
        linear-gradient(to bottom, rgba(10, 6, 18, 0.8) 0%, rgba(10, 6, 18, 0.14) 18%),
        linear-gradient(to top, rgba(10, 6, 18, 0.58) 0%, rgba(10, 6, 18, 0.14) 22%),
        rgba(10, 6, 18, 0.08);
}
 @keyframes rotate {
     from {
         transform: rotate(0deg);
    }
     to {
         transform: rotate(360deg);
    }
}
 .section-title {
     text-align: center;
     font-size: clamp(2.5rem, 6vw, 4rem);
     margin-bottom: 80px;
     color: #00ffff;
     position: relative;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
}
 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: linear-gradient(90deg, #00ffff, #ff0080);
     border-radius: 2px;
}
.features .section-title {
    color: #ffffff;
}
 .features-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
    position: relative;
    z-index: 1;
}
.features-intro {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.85;
    background: rgba(8, 6, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(17, 8, 30, 0.75);
    border: 1px solid rgba(224, 163, 255, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.45);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4), 0 0 30px rgba(224, 163, 255, 0.16);
}
.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 8, 27, 0.08) 0%, rgba(15, 8, 27, 0.75) 100%);
}
.service-image-1 {
    background-image: url('images/templatemo-neural-01.jpg');
}
.service-image-2 {
    background-image: url('images/templatemo-neural-02.jpg');
}
.service-image-3 {
    background-image: url('images/templatemo-neural-03.jpg');
}
.service-image-4 {
    background-image: url('images/templatemo-neural-04.jpg');
}
.service-image-5 {
    background-image: url('images/templatemo-neural-05.jpg');
}
.service-image-6 {
    background-image: url('images/templatemo-neural-06.jpg');
    background-position: right top;
}
.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 24px 26px;
}
.service-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd9ff;
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid rgba(255, 182, 239, 0.5);
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
}
.service-content h3 {
    font-size: 1.45rem;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 14px;
}
.service-content p {
    color: #e3d5f1;
    line-height: 1.7;
    font-size: 1rem;
}
.service-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}
.service-card.is-open .service-detail {
    max-height: 160px;
    opacity: 1;
    margin-top: 12px;
}
.service-toggle {
    margin-top: auto;
    align-self: flex-start;
    margin-bottom: 0;
    border: 1px solid rgba(224, 163, 255, 0.45);
    background: rgba(224, 163, 255, 0.14);
    color: #f5e7ff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-toggle:hover {
    background: rgba(255, 105, 180, 0.26);
    border-color: rgba(255, 182, 239, 0.65);
}
/* Services Page Carousel */
.services-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}
.services-carousel-viewport {
    overflow: hidden;
}
.services-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}
body.services-page .services-carousel-track .service-card {
    flex: 0 0 calc((100% - 48px) / 3);
}
.services-carousel-btn {
    border: 1px solid rgba(224, 163, 255, 0.4);
    background: rgba(224, 163, 255, 0.12);
    color: #f4e9ff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.services-carousel-btn:hover {
    background: rgba(255, 105, 180, 0.24);
    border-color: rgba(255, 182, 239, 0.62);
}
/* Section 3: Delivery Framework */
 .showcase {
     padding: 150px 0;
     position: relative;
    overflow: hidden;
    background-image: url('images/bg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 18, 0.62) 0%, rgba(10, 6, 18, 0.48) 100%);
    backdrop-filter: blur(1.5px);
    z-index: 0;
}
.showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 6, 18, 0.9) 0%, rgba(10, 6, 18, 0) 22%),
        linear-gradient(to top, rgba(10, 6, 18, 0.92) 0%, rgba(10, 6, 18, 0.28) 14%, rgba(10, 6, 18, 0) 30%);
    z-index: 0;
    pointer-events: none;
}
.showcase-intro {
    max-width: 950px;
    margin: 0 auto 56px;
    text-align: center;
    color: #efe5f8;
    font-size: 1.06rem;
    line-height: 1.85;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.delivery-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}
.showcase .section-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.delivery-card {
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(224, 163, 255, 0.24);
    background: linear-gradient(150deg, rgba(19, 10, 34, 0.84), rgba(24, 14, 42, 0.72));
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.delivery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 182, 239, 0.55);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35), 0 0 24px rgba(224, 163, 255, 0.16);
}
.delivery-card h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.35;
}
.delivery-card p {
    margin: 0;
    color: #dbd0e8;
    font-size: 0.98rem;
    line-height: 1.72;
}
.delivery-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(145deg, rgba(224, 163, 255, 0.24), rgba(255, 105, 180, 0.16));
    margin-bottom: 16px;
    position: relative;
}
.delivery-icon span {
    position: absolute;
    display: block;
}
.delivery-icon-bar {
    width: 18px;
    height: 3px;
    background: #f6e8ff;
    left: 13px;
    top: 12px;
    box-shadow: 0 8px 0 #f6e8ff, 0 16px 0 #f6e8ff;
}
.delivery-icon-grid {
    inset: 10px;
    background:
      linear-gradient(to right, #f6e8ff 0 2px, transparent 2px 8px, #f6e8ff 8px 10px, transparent 10px 16px, #f6e8ff 16px 18px),
      linear-gradient(to bottom, #f6e8ff 0 2px, transparent 2px 8px, #f6e8ff 8px 10px, transparent 10px 16px, #f6e8ff 16px 18px);
    opacity: 0.95;
}
.delivery-icon-pulse {
    width: 24px;
    height: 24px;
    border: 2px solid #f6e8ff;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.delivery-icon-pulse::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f6e8ff;
    border-radius: 50%;
    left: 5px;
    top: 5px;
}
.delivery-icon-flow {
    width: 24px;
    height: 24px;
    left: 10px;
    top: 10px;
    border-left: 2px solid #f6e8ff;
    border-bottom: 2px solid #f6e8ff;
    transform: rotate(-45deg);
}
.delivery-icon-ring {
    width: 24px;
    height: 24px;
    border: 2px dashed #f6e8ff;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}
.delivery-icon-track {
    width: 24px;
    height: 2px;
    background: #f6e8ff;
    left: 10px;
    top: 14px;
    box-shadow: 0 8px 0 #f6e8ff;
}
.delivery-icon-track::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f6e8ff;
    right: -1px;
    top: -2px;
    box-shadow: 0 8px 0 #f6e8ff;
}
/* Section 4: Enhanced Timeline */
 .timeline {
    margin-top: -2px;
     padding: 100px 0;
     position: relative;
    overflow: hidden;
    background-image: url('images/bg4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 18, 0.5);
    backdrop-filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}
.timeline::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 6, 18, 0.95) 0%, rgba(10, 6, 18, 0.35) 14%, rgba(10, 6, 18, 0) 30%),
        linear-gradient(to top, rgba(10, 6, 18, 0.78) 0%, rgba(10, 6, 18, 0) 20%);
    z-index: 0;
    pointer-events: none;
}
.workflow-layout {
    max-width: 1160px;
     margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.timeline .section-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.workflow-step {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(224, 163, 255, 0.24);
    background: rgba(24, 12, 40, 0.55);
    color: #efe5f8;
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.workflow-step:hover {
    border-color: rgba(255, 182, 239, 0.55);
    background: rgba(40, 20, 62, 0.7);
}
.workflow-step.is-active {
    color: #ffffff;
    border-color: rgba(255, 182, 239, 0.75);
    background: linear-gradient(135deg, rgba(224, 163, 255, 0.3), rgba(255, 105, 180, 0.22));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}
.workflow-panel {
    padding: 36px 34px;
    border-radius: 18px;
    border: 1px solid rgba(224, 163, 255, 0.26);
    background: linear-gradient(150deg, rgba(18, 9, 31, 0.86), rgba(24, 14, 40, 0.72));
}
.workflow-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffe5f8;
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid rgba(255, 182, 239, 0.45);
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
}
.workflow-panel h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.6rem;
}
.workflow-panel p {
    margin: 0 0 18px;
    color: #dbd0e8;
    line-height: 1.75;
}
.workflow-points {
    margin: 0;
    padding-left: 18px;
    color: #ece3f6;
}
.workflow-points li {
    margin: 0 0 10px;
    line-height: 1.65;
}
/* Process Page */
body.process-page .neural-background {
    background:
        radial-gradient(circle at 16% 20%, rgba(167, 98, 255, 0.26) 0%, transparent 46%),
        radial-gradient(circle at 84% 22%, rgba(255, 118, 173, 0.2) 0%, transparent 46%),
        radial-gradient(circle at 52% 82%, rgba(75, 160, 255, 0.16) 0%, transparent 52%),
        linear-gradient(135deg, #090914 0%, #1a102f 50%, #0a0a16 100%);
    animation: processBackgroundFlow 28s ease-in-out infinite;
}
body.process-page .timeline {
    background-image: none;
}
body.process-page .timeline::before,
body.process-page .timeline::after {
    content: none;
    background: none;
    backdrop-filter: none;
}
.process-framework-section {
    padding-bottom: 70px;
}
.process-framework-intro {
    max-width: 980px;
    margin: 0 auto 20px;
    padding: 0 20px;
}
.process-framework-intro p {
    margin: 0;
    color: #d8cde7;
    text-align: center;
    line-height: 1.75;
}
.process-framework-grid {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.process-framework-card {
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(145deg, rgba(23, 12, 39, 0.84), rgba(18, 9, 31, 0.72));
    padding: 18px 16px;
}
.process-framework-step {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2e6ff;
    background: rgba(224, 163, 255, 0.14);
    border: 1px solid rgba(224, 163, 255, 0.35);
    border-radius: 999px;
    padding: 6px 10px;
}
.process-framework-card h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.02rem;
}
.process-framework-card p {
    margin: 0;
    color: #d8cce6;
    font-size: 0.92rem;
    line-height: 1.58;
}
@keyframes processBackgroundFlow {
    0%, 100% { filter: saturate(1.12) brightness(0.94); transform: scale(1); }
    50% { filter: saturate(1.25) brightness(1); transform: scale(1.015); }
}
.process-signals {
    padding: 0 0 70px;
}
.process-signals-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.process-signals h3,
.process-playbook h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.5rem;
}
.process-signals p,
.process-playbook p {
    margin: 0 0 16px;
    color: #d8cde7;
    line-height: 1.7;
}
.process-signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.process-signal-card {
    padding: 18px 16px;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(145deg, rgba(23, 12, 39, 0.84), rgba(18, 9, 31, 0.72));
}
.process-signal-card h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
}
.process-signal-card p {
    margin: 0;
    color: #d8cce6;
    font-size: 0.92rem;
    line-height: 1.58;
}
.process-playbook {
    padding: 0 0 100px;
}
.process-playbook-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.process-playbook-item {
    border: 1px solid rgba(224, 163, 255, 0.22);
    background: linear-gradient(145deg, rgba(24, 13, 40, 0.86), rgba(18, 9, 31, 0.76));
    overflow: hidden;
    margin-bottom: 10px;
}
.process-playbook-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 500;
}
.process-playbook-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(224, 163, 255, 0.45);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.process-playbook-icon::before,
.process-playbook-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 1.6px;
    background: #f3e5ff;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.process-playbook-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.process-playbook-item.is-open .process-playbook-icon::after {
    opacity: 0;
}
.process-playbook-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 18px;
    transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.32s ease;
}
.process-playbook-item.is-open .process-playbook-content {
    max-height: 200px;
    opacity: 1;
    padding: 0 18px 16px;
}
.process-playbook-content p {
    margin: 0;
    color: #d8cce6;
}
/* Legal Page */
.legal-page {
    padding: 170px 0 100px;
    position: relative;
    overflow: hidden;
}
.legal-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.legal-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.legal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.4;
    animation: legalFloat 14s ease-in-out infinite;
}
.legal-orb-1 {
    width: 260px;
    height: 260px;
    top: 12%;
    left: -80px;
    background: radial-gradient(circle, rgba(224, 163, 255, 0.45) 0%, rgba(224, 163, 255, 0) 72%);
}
.legal-orb-2 {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 32%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.35) 0%, rgba(255, 105, 180, 0) 74%);
    animation-delay: -4s;
}
.legal-orb-3 {
    width: 220px;
    height: 220px;
    left: 35%;
    bottom: -80px;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.3) 0%, rgba(147, 112, 219, 0) 72%);
    animation-delay: -8s;
}
@keyframes legalFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-18px) translateX(8px) scale(1.08); }
}
.legal-page h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.legal-lead {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
    color: #ded4eb;
    line-height: 1.75;
}
.legal-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto 22px;
}
.legal-highlight {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(224, 163, 255, 0.24);
    background: rgba(22, 12, 38, 0.58);
    backdrop-filter: blur(10px);
}
.legal-highlight strong {
    display: block;
    color: #ffffff;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.legal-highlight span {
    color: #d5c8e6;
    font-size: 0.82rem;
}
.legal-card {
    padding: 34px 30px;
    border: 1px solid rgba(224, 163, 255, 0.24);
    background: linear-gradient(150deg, rgba(18, 9, 31, 0.9), rgba(24, 14, 40, 0.78));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.legal-card h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 26px 0 10px;
}
.legal-card h2:first-child {
    margin-top: 0;
}
.legal-card p {
    margin: 0;
    color: #d9cde6;
    line-height: 1.72;
}
.legal-card a {
    color: #f3dfff;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 223, 255, 0.45);
}
.legal-card a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}
/* FAQ Page */
body.faq-page .neural-background {
    background-image:
        linear-gradient(135deg, rgba(8, 6, 18, 0.78), rgba(22, 12, 38, 0.66)),
        radial-gradient(circle at 18% 22%, rgba(255, 105, 180, 0.2) 0%, transparent 46%),
        radial-gradient(circle at 82% 16%, rgba(120, 80, 240, 0.24) 0%, transparent 50%),
        url('images/bg5.jpg');
    background-size: cover, 140% 140%, 140% 140%, cover;
    background-position: center, 0% 0%, 100% 0%, center;
    background-repeat: no-repeat;
    animation: faqBackgroundFlow 26s ease-in-out infinite;
}
body.faq-page .shape {
    animation-duration: 44s;
    opacity: 0.6;
}
@keyframes faqBackgroundFlow {
    0%, 100% { filter: saturate(1.15) brightness(0.92); transform: scale(1); }
    30% { filter: saturate(1.28) brightness(0.98); transform: scale(1.01); }
    65% { filter: saturate(1.22) brightness(0.95); transform: scale(1.015); }
}
body.terms-page .neural-background {
    background-image:
        linear-gradient(135deg, rgba(8, 6, 18, 0.78), rgba(22, 12, 38, 0.66)),
        url('images/bg6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
body.privacy-page .neural-background {
    background-image:
        linear-gradient(135deg, rgba(8, 6, 18, 0.78), rgba(22, 12, 38, 0.66)),
        url('images/bg7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.faq-page-section {
    position: relative;
    padding: 170px 0 100px;
    overflow: hidden;
}
.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.faq-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.faq-wave {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.34;
    animation: faqWaveShift 18s ease-in-out infinite;
}
.faq-wave-1 {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 20%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.42) 0%, rgba(255, 105, 180, 0) 72%);
}
.faq-wave-2 {
    width: 300px;
    height: 300px;
    right: -90px;
    top: 10%;
    background: radial-gradient(circle, rgba(155, 120, 255, 0.42) 0%, rgba(155, 120, 255, 0) 72%);
    animation-delay: -6s;
}
.faq-wave-3 {
    width: 320px;
    height: 320px;
    left: 36%;
    bottom: -120px;
    background: radial-gradient(circle, rgba(70, 150, 255, 0.34) 0%, rgba(70, 150, 255, 0) 72%);
    animation-delay: -12s;
}
@keyframes faqWaveShift {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.08); }
}
.faq-header {
    padding: 30px 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(224, 163, 255, 0.24);
    background: linear-gradient(150deg, rgba(18, 9, 31, 0.9), rgba(24, 14, 40, 0.78));
}
.faq-header h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
}
.faq-header p {
    margin: 0;
    color: #d9cde6;
    line-height: 1.72;
    max-width: 760px;
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 20px;
}
.faq-side {
    padding: 22px 18px;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: rgba(18, 10, 31, 0.72);
    align-self: start;
}
.faq-side h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #ffffff;
}
.faq-side ul {
    margin: 0;
    padding-left: 16px;
}
.faq-side li {
    color: #d7cce7;
    margin-bottom: 8px;
    line-height: 1.5;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(145deg, rgba(24, 13, 40, 0.86), rgba(18, 9, 31, 0.76));
    overflow: hidden;
}
.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 500;
}
.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(224, 163, 255, 0.45);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: #f3e5ff;
    transition: transform 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.6px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    padding: 0 18px;
}
.faq-item.is-open .faq-answer {
    max-height: 220px;
    opacity: 1;
    padding: 0 18px 16px;
}
.faq-answer p {
    margin: 0;
    color: #d8cce6;
    line-height: 1.68;
}
.faq-answer a {
    color: #f3dfff;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 223, 255, 0.45);
}
.faq-answer a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}
/* About Page */
body.about-page .neural-background {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 118, 173, 0.2) 0%, transparent 46%),
        radial-gradient(circle at 84% 18%, rgba(118, 102, 255, 0.24) 0%, transparent 46%),
        linear-gradient(135deg, #090914 0%, #1b1030 50%, #0a0a16 100%);
}
.about-hero {
    padding: 170px 0 80px;
}
.about-hero-container,
.about-story-container,
.about-principles-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
}
.about-hero-content {
    padding: 34px 30px;
    border: 1px solid rgba(224, 163, 255, 0.22);
    background: linear-gradient(145deg, rgba(24, 13, 40, 0.86), rgba(18, 9, 31, 0.76));
}
.about-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f3dfff;
    margin-bottom: 12px;
}
.about-hero-content h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}
.about-hero-content p {
    margin: 0;
    color: #d8cce6;
    line-height: 1.75;
}
.about-hero-image,
.about-story-image {
    overflow: hidden;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: rgba(20, 10, 34, 0.72);
}
.about-hero-image img,
.about-story-image img,
.about-principle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-story {
    padding: 0 0 80px;
}
.about-story-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
}
.about-story-image {
    min-height: 320px;
}
.about-story-content {
    padding: 30px 28px;
    border: 1px solid rgba(224, 163, 255, 0.22);
    background: linear-gradient(145deg, rgba(24, 13, 40, 0.86), rgba(18, 9, 31, 0.76));
}
.about-story-content h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.5rem;
}
.about-story-content p {
    margin: 0 0 12px;
    color: #d8cce6;
    line-height: 1.72;
}
.about-story-content ul {
    margin: 0;
    padding-left: 18px;
}
.about-story-content li {
    color: #e0d5eb;
    margin-bottom: 8px;
}
.about-principles {
    padding: 0 0 100px;
}
.about-principles h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 1.5rem;
}
.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.about-principle-card {
    overflow: hidden;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(145deg, rgba(24, 13, 40, 0.86), rgba(18, 9, 31, 0.76));
}
.about-principle-card img {
    height: 180px;
}
.about-principle-card h4 {
    margin: 14px 16px 8px;
    color: #ffffff;
    font-size: 1.05rem;
}
.about-principle-card p {
    margin: 0 16px 18px;
    color: #d8cce6;
    line-height: 1.66;
    font-size: 0.94rem;
}
/* Section 5: Contact */
 .contact {
     padding: 150px 0;
     position: relative;
}
 .contact-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}
 .contact-info {
     padding: 60px 40px;
     position: relative;
}
 .contact-info::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent 70%);
     animation: pulse 4s ease-in-out infinite;
     z-index: -1;
}
 @keyframes pulse {
     0%, 100% {
         transform: scale(1);
         opacity: 0.5;
    }
     50% {
         transform: scale(1.1);
         opacity: 1;
    }
}
 .contact-form {
     padding: 50px 40px;
}
 .form-group {
     margin-bottom: 30px;
     position: relative;
}
 .form-group input, .form-group textarea {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: #ffffff;
     font-family: inherit;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}
 .form-group input:focus, .form-group textarea:focus {
     outline: none;
     border-color: #00ffff;
     box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
}
 .form-group input::placeholder, .form-group textarea::placeholder {
     color: #888;
}
 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(45deg, #00ffff, #ff0080);
     border: none;
     border-radius: 10px;
     color: #000;
     font-weight: bold;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}
 .contact-info h3 {
     font-size: 2.5rem;
     color: #00ffff;
     margin-bottom: 30px;
}
 .contact-info p {
     font-size: 1.2rem;
     color: #cccccc;
     line-height: 1.7;
     margin-bottom: 30px;
}
.contact-map-section {
    padding: 0 0 100px;
}
.contact-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 24px 24px;
}
.contact-map-wrapper h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.4rem;
}
.contact-map-wrapper p {
    margin: 0 0 14px;
    color: #d4c8e6;
}
.contact-map-wrapper iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
/* Contact Page Polish */
body.contact-page .contact-page-main {
    padding-top: 170px;
}
body.contact-page .contact-container {
    max-width: 1160px;
    gap: 26px;
    align-items: stretch;
}
body.contact-page .contact-info,
body.contact-page .contact-form {
    border-radius: 18px;
    border: 1px solid rgba(224, 163, 255, 0.22);
    background: linear-gradient(155deg, rgba(20, 10, 34, 0.9), rgba(31, 17, 49, 0.76));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body.contact-page .contact-info {
    padding: 42px 34px;
    overflow: hidden;
}
body.contact-page .contact-info::before {
    opacity: 0.6;
}
body.contact-page .contact-info h3 {
    font-size: clamp(2rem, 4.8vw, 3rem);
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: #ffffff;
}
body.contact-page .contact-info p {
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 20px;
    color: #ddd2e9;
}
body.contact-page .contact-form {
    padding: 34px 30px;
}
body.contact-page .form-group {
    margin-bottom: 16px;
}
body.contact-page .form-group input,
body.contact-page .form-group textarea {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
}
body.contact-page .form-group input::placeholder,
body.contact-page .form-group textarea::placeholder {
    color: #b9aacb;
}
body.contact-page .form-group input:focus,
body.contact-page .form-group textarea:focus {
    border-color: rgba(224, 163, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(224, 163, 255, 0.15), 0 12px 24px rgba(0, 0, 0, 0.2);
}
body.contact-page .form-group input.is-invalid,
body.contact-page .form-group textarea.is-invalid {
    border-color: rgba(255, 122, 153, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 122, 153, 0.16);
}
body.contact-page .submit-btn {
    margin-top: 6px;
    border-radius: 12px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #f2e7ff 0%, #d9c2f5 100%);
    color: #1a0f2a;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
body.contact-page .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    filter: brightness(1.03);
}
body.contact-page .contact-map-section {
    padding-top: 10px;
}
body.contact-page .contact-map-wrapper {
    max-width: 1160px;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(155deg, rgba(20, 10, 34, 0.88), rgba(31, 17, 49, 0.72));
}
body.contact-page .contact-map-wrapper h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}
body.contact-page .contact-map-wrapper p {
    margin-bottom: 12px;
    color: #d8cee7;
}
body.contact-page .contact-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 5, 16, 0.62);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
body.contact-page .contact-feedback-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}
body.contact-page .contact-feedback-card {
    width: min(520px, 100%);
    padding: 24px 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(224, 163, 255, 0.28);
    background: linear-gradient(150deg, rgba(18, 9, 31, 0.94), rgba(24, 14, 40, 0.84));
    position: relative;
}
body.contact-page .contact-feedback-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(224, 163, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: #f1e7ff;
    font-size: 1rem;
    cursor: pointer;
}
body.contact-page .contact-feedback-status {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
}
body.contact-page .contact-feedback-status.success {
    background: linear-gradient(135deg, rgba(82, 232, 180, 0.28), rgba(38, 181, 140, 0.22));
    border: 1px solid rgba(82, 232, 180, 0.45);
}
body.contact-page .contact-feedback-status.error {
    background: linear-gradient(135deg, rgba(255, 122, 153, 0.3), rgba(194, 57, 87, 0.22));
    border: 1px solid rgba(255, 122, 153, 0.5);
}
body.contact-page .contact-feedback-status::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
}
body.contact-page .contact-feedback-status.success::before {
    content: "✓";
    color: #cffff1;
}
body.contact-page .contact-feedback-status.error::before {
    content: "!";
    color: #ffe3ea;
}
body.contact-page .contact-feedback-card h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.25rem;
}
body.contact-page .contact-feedback-card p {
    margin: 0;
    color: #ddd2ea;
    line-height: 1.6;
}
body.contact-page #contactFeedbackErrors {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #ffbdcb;
}
body.contact-page #contactFeedbackErrors:empty {
    display: none;
}
 .social-links {
     display: flex;
     gap: 20px;
     margin-top: 40px;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 15px;
     color: #00ffff;
     text-decoration: none;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}
 .social-links a::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
}
 .social-links a:hover::before {
     left: 100%;
}
 .social-links a:hover {
     transform: translateY(-5px) scale(1.1);
     box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}
/* Footer */
 footer {
    padding: 64px 20px 32px;
    border-top: 1px solid rgba(224, 163, 255, 0.18);
    background: linear-gradient(180deg, rgba(14, 8, 24, 0.85) 0%, rgba(8, 5, 15, 0.96) 100%);
    backdrop-filter: blur(14px);
}
 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.footer-column {
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(224, 163, 255, 0.2);
    background: linear-gradient(145deg, rgba(30, 16, 46, 0.78), rgba(20, 10, 34, 0.65));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: footerFadeUp 0.8s ease both;
}
.footer-column:nth-child(2) {
    animation-delay: 0.08s;
}
.footer-column:nth-child(3) {
    animation-delay: 0.16s;
}
.footer-column:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 182, 239, 0.45);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(224, 163, 255, 0.14);
}
.footer-logo {
    height: 34px;
    width: auto;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(224, 163, 255, 0.2));
}
.footer-column h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.footer-column p {
    margin: 0;
    color: #d7cce6;
    font-size: 0.92rem;
    line-height: 1.65;
}
.footer-column a {
    display: inline-block;
    margin-top: 10px;
    color: #f0dbff;
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 219, 255, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-column a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}
.footer-strengths {
    margin: 0;
    padding-left: 18px;
}
.footer-strengths li {
    color: #d7cce6;
    margin-bottom: 9px;
    line-height: 1.6;
}
 .footer-copyright {
    color: #9e92b0;
    font-size: 0.86rem;
    text-align: center;
    border-top: 1px solid rgba(224, 163, 255, 0.14);
    padding-top: 16px;
}
.footer-copyright a {
    color: #d9c7ed;
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 199, 237, 0.4);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-copyright a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}
.footer-legal-links {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-legal-links span {
    color: #8b7e9d;
}
@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(224, 163, 255, 0.45);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(224, 163, 255, 0.26), rgba(255, 105, 180, 0.26));
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    z-index: 200;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.scroll-top-btn:hover {
    border-color: rgba(255, 182, 239, 0.8);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(224, 163, 255, 0.2);
    transform: translateY(0);
}
.scroll-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px 18px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(224, 163, 255, 0.26);
    background: linear-gradient(140deg, rgba(17, 10, 29, 0.95), rgba(26, 14, 42, 0.92));
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    z-index: 210;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-badge {
    height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 182, 239, 0.4);
    background: rgba(255, 105, 180, 0.12);
    color: #fbe8ff;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner-content h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
}
.cookie-banner-content p {
    margin: 0;
    color: #d5c8e6;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 520px;
}
.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    border: 1px solid rgba(224, 163, 255, 0.34);
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ede3f8;
}
.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.38);
}
.cookie-btn-primary {
    background: linear-gradient(135deg, #e0a3ff, #ff69b4 60%, #ff4bac);
    color: #170a24;
    border-color: rgba(255, 182, 239, 0.65);
    font-weight: 600;
}
.cookie-btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
/* Mobile Responsiveness */
 @media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-image {
        height: 230px;
    }
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
    }

    .workflow-layout {
        grid-template-columns: 1fr;
    }
    .workflow-panel {
        padding: 28px 22px;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}
 @media (max-width: 768px) {
     header {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: none;
        padding: 14px 14px;
    }
     nav {
        min-width: 0;
        gap: 8px;
    }
     .logo {
        min-width: 0;
        flex-shrink: 1;
    }
     .logo-image {
        max-width: min(220px, 58vw);
        height: 38px;
        width: auto;
        object-fit: contain;
    }
     .hero-content {
         padding: 40px 20px;
        margin-top: 160px;
    }
     .hero h1 {
         font-size: clamp(1.8rem, 8vw, 3rem);
    }
     .hero-description p {
         font-size: 1.1rem;
    }
     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin: 40px auto 35px;
    }
     .hero-stat {
         padding: 15px;
    }
     .hero-stat-number {
         font-size: 1.5rem;
    }
     .hero-subtitle::before, .hero-subtitle::after {
         width: 25px;
    }
     .hero-subtitle::before {
         left: -35px;
    }
     .hero-subtitle::after {
         right: -35px;
    }
     .cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
    }
     .cta-button {
         width: 100%;
         max-width: 280px;
         text-align: center;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    .delivery-card {
        padding: 24px 20px;
    }
   .process-signal-grid {
       grid-template-columns: 1fr;
   }
   .process-framework-grid {
       grid-template-columns: 1fr;
   }
   .services-carousel {
       grid-template-columns: 1fr;
   }
   body.services-page .features-container {
       padding: 0 10px;
   }
   .services-carousel-btn {
       width: 100%;
   }
   body.services-page .services-carousel-viewport {
       width: 100%;
       max-width: 100%;
   }
   body.services-page .services-carousel-track {
       align-items: stretch;
   }
   body.services-page .services-carousel-track .service-card {
       flex: 0 0 100%;
       min-width: 100%;
       max-width: 100%;
       box-sizing: border-box;
   }
   .process-framework-section {
       padding-bottom: 40px;
   }
   .process-playbook {
       padding-bottom: 70px;
   }
     .section-title {
         margin-bottom: 60px;
    }
     .features, .showcase, .timeline, .contact {
         padding: 80px 0;
    }
     .timeline {
         padding: 60px 0;
    }
   body.process-page .process-framework-section.timeline {
       padding-top: 126px;
   }
   body.services-page .features {
       padding-top: 138px;
   }
   .contact-map-section {
       padding: 0 0 70px;
   }
   .contact-map-wrapper {
       padding: 18px 14px 14px;
   }
   .contact-map-wrapper iframe {
       height: 280px;
   }
   body.contact-page .contact-page-main {
       padding-top: 138px;
   }
   body.contact-page .contact-container {
       max-width: 100%;
       padding-left: 16px;
       padding-right: 16px;
       box-sizing: border-box;
   }
   body.contact-page .contact-info,
   body.contact-page .contact-form {
       padding: 22px 18px;
   }
   body.contact-page .contact-info h3 {
       font-size: clamp(1.65rem, 7vw, 2.2rem);
   }
   body.contact-page .contact-feedback-card {
       padding: 20px 16px 16px;
   }
   .about-hero {
       padding: 140px 0 60px;
   }
   .about-hero-container,
   .about-story-container,
   .about-principles-grid {
       grid-template-columns: 1fr;
   }
   .about-hero-container .about-hero-image {
       order: -1;
   }
   .about-hero-content,
   .about-story-content {
       padding: 24px 18px;
   }
   .about-principles {
       padding-bottom: 70px;
   }
    .legal-page {
        padding: 140px 0 70px;
    }
    .legal-highlights {
        grid-template-columns: 1fr;
    }
    .legal-card {
        padding: 24px 18px;
    }
   .faq-page-section {
       padding: 140px 0 70px;
   }
   .faq-layout {
       grid-template-columns: 1fr;
   }
   .faq-header {
       padding: 24px 18px;
   }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .footer-column {
        padding: 18px 16px;
    }
    .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1.25rem;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 12px;
        padding: 14px;
    }
    .cookie-banner-content p {
        max-width: 100%;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
/* Enhanced scrollbar */
 ::-webkit-scrollbar {
     width: 12px;
}
 ::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.8);
     border-radius: 6px;
}
 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #00ffff, #ff0080);
     border-radius: 6px;
     box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #ff0080, #8000ff);
     box-shadow: 0 0 15px rgba(255, 0, 128, 0.7);
}
