/*

TemplateMo 595 3d coverflow

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            position: relative;
            background: #000;
            max-width: 100vw;
        }

        /* ── Preloader ── */
        .preloader {
            position: fixed;
            inset: 0;
            background: #03030a;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            overflow: hidden;
            transition: opacity 0.7s ease, visibility 0.7s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* ── Background blobs (aurora) ── */
        .pl-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .pl-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.55;
        }

        .pl-blob--1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #3b1f8c, transparent 70%);
            top: -100px;
            left: -100px;
            animation: plBlobMove1 7s ease-in-out infinite alternate;
        }

        .pl-blob--2 {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, #1a3a8c, transparent 70%);
            bottom: -80px;
            right: -80px;
            animation: plBlobMove2 9s ease-in-out infinite alternate;
        }

        .pl-blob--3 {
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, #5b2fa0, transparent 70%);
            top: 40%;
            left: 55%;
            animation: plBlobMove3 6s ease-in-out infinite alternate;
        }

        @keyframes plBlobMove1 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(80px, 60px) scale(1.15); }
        }
        @keyframes plBlobMove2 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(-70px, -50px) scale(1.2); }
        }
        @keyframes plBlobMove3 {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(-60px, 40px) scale(0.9); }
        }

        /* ── Grid overlay ── */
        .pl-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(102, 126, 234, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(102, 126, 234, 0.07) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: plGridFade 3s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes plGridFade {
            from { opacity: 0.4; }
            to   { opacity: 1; }
        }

        /* ── Center stage ── */
        .pl-stage {
            position: relative;
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Rings */
        .pl-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid transparent;
        }

        .pl-ring--outer {
            inset: 0;
            border-top-color: rgba(102, 126, 234, 0.9);
            border-right-color: rgba(102, 126, 234, 0.2);
            border-bottom-color: transparent;
            border-left-color: rgba(102, 126, 234, 0.2);
            animation: plSpin 1.4s linear infinite;
            filter: drop-shadow(0 0 6px rgba(102, 126, 234, 0.7));
        }

        .pl-ring--mid {
            inset: 18px;
            border-top-color: transparent;
            border-right-color: rgba(118, 75, 162, 0.9);
            border-bottom-color: rgba(118, 75, 162, 0.2);
            border-left-color: transparent;
            animation: plSpin 2s linear infinite reverse;
            filter: drop-shadow(0 0 6px rgba(118, 75, 162, 0.7));
        }

        .pl-ring--inner {
            inset: 34px;
            border-style: dashed;
            border-color: rgba(167, 139, 250, 0.3);
            animation: plSpin 4s linear infinite;
        }

        @keyframes plSpin {
            to { transform: rotate(360deg); }
        }

        /* Orbiting dot */
        .pl-orbit {
            position: absolute;
            inset: 6px;
            border-radius: 50%;
            animation: plSpin 1.8s linear infinite;
        }

        .pl-dot {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #a78bfa;
            box-shadow: 0 0 10px 3px rgba(167, 139, 250, 0.7);
        }

        /* Logo */
        .pl-logo {
            width: 62px;
            height: 62px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            animation: plLogoPulse 2.4s ease-in-out infinite;
            filter: drop-shadow(0 0 14px rgba(102, 126, 234, 0.7));
        }

        @keyframes plLogoPulse {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.6));
                transform: scale(1);
            }
            50% {
                filter: drop-shadow(0 0 26px rgba(118, 75, 162, 1));
                transform: scale(1.06);
            }
        }

        /* ── Brand name ── */
        .pl-brand {
            display: flex;
            gap: 8px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            position: relative;
        }

        .pl-brand-accent {
            background: linear-gradient(90deg, #667eea, #a78bfa, #764ba2, #667eea);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: plShimmer 2.5s linear infinite;
        }

        @keyframes plShimmer {
            0%   { background-position: 0% 0; }
            100% { background-position: 300% 0; }
        }

        /* ── Loading dots ── */
        .pl-dots {
            display: flex;
            gap: 8px;
        }

        .pl-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.7);
            animation: plBounce 1.2s ease-in-out infinite;
        }

        .pl-dots span:nth-child(2) { animation-delay: 0.2s; }
        .pl-dots span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes plBounce {
            0%, 100% { transform: translateY(0);   opacity: 0.4; }
            50%       { transform: translateY(-8px); opacity: 1;
                        background: #a78bfa;
                        box-shadow: 0 0 8px rgba(167, 139, 250, 0.8); }
        }

        /* Sections */
        .section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            max-width: 100vw;
        }

        #home {
            background:
                linear-gradient(135deg, rgba(10, 10, 20, 0.85) 0%, rgba(26, 26, 46, 0.80) 100%),
                url('images/home-bg.jpg') center center / cover no-repeat fixed;
        }

        #home::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(to top, #0a0a12, transparent);
            z-index: 2;
            pointer-events: none;
        }

        #home .coverflow-wrapper {
            position: relative;
            z-index: 3;
        }

        #about {
            background:
                linear-gradient(135deg, rgba(10, 10, 20, 0.88) 0%, rgba(26, 26, 46, 0.82) 100%),
                url('images/about-bg.jpg') center center / cover no-repeat fixed;
        }

        #about::before,
        #about::after,
        #contact::before,
        #contact::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 160px;
            z-index: 2;
            pointer-events: none;
        }

        #about::before {
            top: 0;
            background: linear-gradient(to bottom, #0a0a12, transparent);
        }

        #about::after {
            bottom: 0;
            background: linear-gradient(to top, #0a0a12, transparent);
        }

        #contact::before {
            top: 0;
            background: linear-gradient(to bottom, #0a0a12, transparent);
        }

        #contact::after {
            bottom: 0;
            background: linear-gradient(to top, #050508, transparent);
        }

        #about .about-content,
        #contact .contact-content {
            position: relative;
            z-index: 3;
        }

        #contact {
            background:
                linear-gradient(135deg, rgba(10, 10, 20, 0.88) 0%, rgba(26, 26, 46, 0.82) 100%),
                url('images/contact-bg.jpg') center center / cover no-repeat fixed;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo-img {
            height: 46px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .main-menu {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 6px;
        }

        .menu-item:hover {
            color: white;
            transform: translateY(-2px);
        }

        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .menu-item:hover::after {
            width: 100%;
        }

        .menu-item.active {
            color: white;
        }

        .menu-item.active::after {
            width: 100%;
        }

        .menu-item.external::before {
            content: '↗';
            margin-right: 5px;
            font-size: 12px;
            opacity: 0.7;
        }

        /* Nav separator */
        .nav-sep {
            width: 1px;
            height: 22px;
            background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.7) 50%, transparent 100%);
            flex-shrink: 0;
            margin: 0 12px;
        }

        /* Pill-style nav items */
        .menu-item.menu-pill {
            padding: 7px 18px;
            border-radius: 50px;
            border: 1px solid rgba(102, 126, 234, 0.3);
            background: rgba(102, 126, 234, 0.06);
            color: rgba(255, 255, 255, 0.75);
            transition: all 0.3s ease;
        }

        .menu-item.menu-pill::after {
            display: none;
        }

        .menu-item.menu-pill:hover {
            background: rgba(102, 126, 234, 0.18);
            border-color: rgba(102, 126, 234, 0.7);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 18px rgba(102, 126, 234, 0.2);
        }

        .menu-item.menu-pill.active {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.28), rgba(118, 75, 162, 0.28));
            border-color: rgba(102, 126, 234, 0.8);
            color: #fff;
            box-shadow: 0 0 14px rgba(102, 126, 234, 0.25);
        }

        .menu-item.menu-pill.active::after {
            display: none;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Home Section with Coverflow */
        .coverflow-wrapper {
            width: 100%;
            max-width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
            overflow: hidden;
        }

        .coverflow-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
            position: relative;
            overflow: hidden;
        }

        .coverflow {
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            position: relative;
            width: 100%;
            height: 400px;
        }

        .coverflow-item {
            position: absolute;
            width: 300px;
            height: 300px;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            user-select: none;
        }

        .coverflow-item .cover {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            background: #333;
        }

        .coverflow-item .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Reflection */
        .coverflow-item .reflection {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transform: scaleY(-1);
            opacity: 0.2;
            filter: blur(2px);
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.8) 50%, 
                rgba(0, 0, 0, 1) 100%);
            overflow: hidden;
        }

        /* Active item (center) */
        .coverflow-item.active {
            z-index: 100;
            transform: translateX(0) translateZ(0) rotateY(0deg);
        }

        .coverflow-item.active .cover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
        }

        /* Navigation */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 50px;
        }

        .nav-button.next {
            right: 50px;
        }

        /* Dots indicator */
        .dots-container {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 200;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.3);
        }

        /* Info display */
        .info {
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            z-index: 200;
        }

        .info h2 {
            font-size: 32px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeIn 0.6s forwards;
        }

        .info p {
            font-size: 16px;
            opacity: 0.7;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Play/Pause Button */
        .play-pause-button {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 200;
        }

        .play-pause-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-50%) scale(1.1);
        }

        .play-pause-button span {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .play-pause-button .play-icon {
            margin-left: 2px; /* optical correction for ▶ glyph */
        }

        .play-pause-button .pause-icon {
            font-size: 16px;
            letter-spacing: 1px;
            margin-right: -1px; /* compensate letter-spacing trailing gap */
        }

        /* About Section */
        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px;
            color: white;
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-header h2 {
            font-size: 48px;
			margin-top: 60px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-visual {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-display {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-main {
            position: relative;
            width: 350px;
            height: 400px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .showcase-logo {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .showcase-logo svg {
            width: 70%;
            height: 70%;
            display: block;
        }

        .showcase-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-align: center;
        }

        .showcase-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .showcase-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            font-family: inherit;
        }

        .badge:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .badge:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        /* ── Modals ── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            z-index: 9000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal-card {
            position: relative;
            background: linear-gradient(145deg, #0e0e1a, #16162a);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 24px;
            padding: 48px 44px 40px;
            max-width: 660px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(102, 126, 234, 0.1);
            animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .modal-hero {
            width: calc(100% + 88px);
            margin: -48px -44px 32px;
            height: 210px;
            background-size: cover;
            background-position: center;
            border-radius: 24px 24px 0 0;
            position: relative;
            flex-shrink: 0;
        }

        .modal-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px 24px 0 0;
            background: linear-gradient(
                to bottom,
                rgba(14, 14, 26, 0.25) 0%,
                rgba(14, 14, 26, 0.10) 40%,
                rgba(14, 14, 26, 0.70) 80%,
                rgba(14, 14, 26, 1.00) 100%
            );
        }

        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.92) translateY(20px); }
            to   { opacity: 1; transform: scale(1)    translateY(0); }
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 34px;
            height: 34px;
            background: rgba(14, 14, 26, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.20);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-family: inherit;
            z-index: 10;
            backdrop-filter: blur(6px);
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.14);
            color: white;
        }

        .modal-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            border: 1px solid rgba(102, 126, 234, 0.35);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .modal-icon svg {
            width: 28px;
            height: 28px;
            fill: #a78bfa;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .modal-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .modal-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 34px;
        }

        .modal-list li {
            display: flex;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.65;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
            transition: border-color 0.2s ease;
        }

        .modal-list li:hover {
            border-color: rgba(102, 126, 234, 0.3);
        }

        .modal-list-icon {
            color: #667eea;
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .modal-list li svg {
            width: 18px;
            height: 18px;
            min-width: 18px;
            fill: #a78bfa;
            flex-shrink: 0;
            margin-top: 3px;
            filter: drop-shadow(0 0 5px rgba(167, 139, 250, 0.5));
        }

        .modal-list li strong {
            color: white;
        }

        .modal-body-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .modal-section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #a78bfa;
            margin-bottom: 14px;
        }

        .modal-outcomes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 0 0 34px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .modal-outcome-item {
            text-align: center;
            padding: 16px 10px;
            background: rgba(102, 126, 234, 0.05);
            border: 1px solid rgba(102, 126, 234, 0.15);
            border-radius: 12px;
        }

        .modal-outcome-value {
            font-size: 17px;
            font-weight: 700;
            color: #a78bfa;
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .modal-outcome-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.4;
        }

        @media (max-width: 480px) {
            .modal-outcomes {
                grid-template-columns: 1fr;
            }
        }

        .modal-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
        }

        .modal-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Decorative corner elements */
        .corner-decoration {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        .corner-decoration.top-left {
            top: -20px;
            left: -20px;
            border-right: none;
            border-bottom: none;
            border-radius: 20px 0 0 0;
        }

        .corner-decoration.bottom-right {
            bottom: -20px;
            right: -20px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .about-info {
            padding-left: 40px;
        }

        .about-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .about-info p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .cta-button svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Contact Section */
        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
            color: white;
        }

        .contact-header {
            text-align: center;
			margin-top: 60px;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-section {
            padding-right: 40px;
        }

        .contact-info-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .contact-info-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h4 {
            font-size: 16px;
            color: white;
            margin-bottom: 5px;
        }

        .contact-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Process Section (replaces contact form) */
        .contact-process-section {
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-process-section h3 {
            font-size: 28px;
            color: white;
            margin: 0;
        }

        .contact-process-section > p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin: 0;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 22px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(102, 126, 234, 0.08);
            border-color: rgba(102, 126, 234, 0.35);
            transform: translateX(6px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
        }

        .process-number {
            font-size: 30px;
            font-weight: 700;
            line-height: 1;
            min-width: 42px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-step-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .process-step-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            margin: 0;
        }

        .process-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            align-self: flex-start;
            padding: 15px 28px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
            border: 1px solid rgba(102, 126, 234, 0.45);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .process-cta svg {
            width: 20px;
            height: 20px;
            fill: #667eea;
            flex-shrink: 0;
        }

        .process-cta:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.28), rgba(118, 75, 162, 0.28));
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(102, 126, 234, 0.3);
        }

        /* Smooth image loading */
        .image-loading {
            background: linear-gradient(45deg, #333, #555);
            position: relative;
        }

        .image-loading::after {
            content: '';
        }

        /* Footer Styles */
        .footer {
            background: #050508;
            border-top: 1px solid rgba(102, 126, 234, 0.2);
            padding: 60px 40px 0;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.6fr 1.4fr 1fr;
            gap: 60px;
            padding-bottom: 50px;
        }

        /* Brand column */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .footer-logo-img {
            height: 42px;
            width: auto;
            display: block;
            object-fit: contain;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                        filter 0.4s ease,
                        opacity 0.4s ease;
            filter: brightness(1) drop-shadow(0 0 0px rgba(102, 126, 234, 0));
        }

        .footer-logo:hover .footer-logo-img {
            transform: scale(1.08) translateY(-3px);
            filter: brightness(1.15) drop-shadow(0 4px 16px rgba(102, 126, 234, 0.55));
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
            max-width: 280px;
        }

        /* Info / Nav columns */
        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .footer-col ul li svg {
            width: 16px;
            height: 16px;
            fill: #667eea;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-col ul li a:hover {
            color: #a78bfa;
        }

        /* Nav column — no icons, simpler list */
        .footer-col:last-child ul li {
            gap: 0;
        }

        .footer-col:last-child ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.25s ease;
            padding-left: 0;
        }

        .footer-col:last-child ul li a:hover {
            color: white;
            padding-left: 6px;
        }

        /* Bottom bar */
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-bottom span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ── Privacy / Legal Page ── */
        .legal-section {
            padding: 140px 40px 100px;
            min-height: 100vh;
            background: linear-gradient(180deg, #0a0a16 0%, #0e0c1e 50%, #0a0a16 100%);
            position: relative;
            overflow: hidden;
        }

        .legal-section::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .legal-inner {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .legal-badge {
            display: inline-block;
            padding: 6px 18px;
            border: 1px solid rgba(102, 126, 234, 0.4);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #667eea;
            margin-bottom: 24px;
        }

        .legal-title {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            line-height: 1.15;
        }

        .legal-meta {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 56px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .legal-block {
            margin-bottom: 48px;
        }

        .legal-block h2 {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .legal-block h2::before {
            content: '';
            display: inline-block;
            width: 3px;
            height: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .legal-block p,
        .legal-block li {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.85;
        }

        .legal-block ul {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }

        .legal-block ul li {
            padding: 6px 0 6px 22px;
            position: relative;
        }

        .legal-block ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 12px;
            top: 8px;
        }

        .legal-block a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .legal-block a:hover {
            color: #a78bfa;
        }

        .legal-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
            margin: 48px 0;
        }

        .legal-contact-box {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 16px;
            padding: 28px 32px;
            margin-top: 16px;
        }

        .legal-contact-box p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
        }

        .legal-contact-box strong {
            color: rgba(255, 255, 255, 0.85);
        }

        @media (max-width: 600px) {
            .legal-section {
                padding: 120px 20px 80px;
            }

            .legal-block h2 {
                font-size: 17px;
            }

            .legal-contact-box {
                padding: 20px;
            }
        }

        /* ── Contact Page ── */
        .contact-page .contact-content {
            padding: 0;
        }

        .contact-page .contact-header {
            text-align: left;
            margin-top: 0;
            margin-bottom: 52px;
        }

        .contact-page .contact-header h2 {
            font-size: clamp(32px, 5vw, 52px);
        }

        .contact-page .contact-header p {
            font-size: 16px;
            margin: 0;
        }

        .contact-page-badge {
            display: inline-block;
            padding: 6px 18px;
            border: 1px solid rgba(102, 126, 234, 0.4);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #667eea;
            margin-bottom: 24px;
        }

        @media (max-width: 600px) {
            .contact-page .contact-header h2 {
                font-size: 28px;
            }
        }

        /* ── Contact Form ── */
        .cf-form-section {
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cf-form-section h3 {
            font-size: 28px;
            color: white;
            margin: 0;
        }

        .cf-form-section > p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
        }

        .cf-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .cf-group {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .cf-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
        }

        .cf-input-wrap {
            position: relative;
        }

        .cf-input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            fill: rgba(102, 126, 234, 0.6);
            pointer-events: none;
            z-index: 1;
        }

        .cf-input-wrap .cf-textarea ~ .cf-input-icon,
        .cf-input-wrap:has(.cf-textarea) .cf-input-icon {
            top: 17px;
            transform: none;
        }

        .cf-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 13px 16px 13px 42px;
            color: white;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            box-sizing: border-box;
        }

        .cf-input::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .cf-input:focus {
            border-color: rgba(102, 126, 234, 0.6);
            background: rgba(102, 126, 234, 0.06);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
        }

        .cf-group.has-error .cf-input,
        .cf-input.error {
            border-color: rgba(239, 68, 68, 0.6);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        /* Select */
        .cf-select-wrap {
            position: relative;
        }

        .cf-select {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            padding-right: 40px;
        }

        .cf-select option {
            background: #1a1830;
            color: white;
        }

        .cf-chevron {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            fill: rgba(255, 255, 255, 0.3);
            pointer-events: none;
        }

        /* Textarea */
        .cf-textarea {
            resize: vertical;
            min-height: 120px;
            padding-top: 13px;
            line-height: 1.6;
        }

        /* Error messages */
        .cf-error {
            font-size: 12px;
            color: rgba(239, 68, 68, 0.85);
            display: none;
        }

        .cf-group.has-error .cf-error {
            display: block;
        }

        /* Submit button */
        .cf-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 32px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
            align-self: flex-start;
        }

        .cf-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(102, 126, 234, 0.55);
        }

        .cf-submit:active {
            transform: translateY(0);
        }

        .cf-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .cf-submit-icon {
            width: 17px;
            height: 17px;
            fill: currentColor;
            transition: transform 0.25s ease;
        }

        .cf-submit:hover .cf-submit-icon {
            transform: translateX(3px);
        }

        /* Success state */
        .cf-success {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
            gap: 16px;
        }

        .cf-success.visible {
            display: flex;
        }

        .cf-success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: successPop 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
        }

        @keyframes successPop {
            from { transform: scale(0.5); opacity: 0; }
            to   { transform: scale(1);   opacity: 1; }
        }

        .cf-success-icon svg {
            width: 32px;
            height: 32px;
            fill: #a78bfa;
        }

        .cf-success h4 {
            font-size: 20px;
            color: white;
            margin: 0;
        }

        .cf-success p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
            margin: 0;
            max-width: 300px;
        }

        /* Map block */
        .contact-map-block {
            margin-top: 52px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-map-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        .contact-map-label svg {
            width: 16px;
            height: 16px;
            fill: #667eea;
            flex-shrink: 0;
        }

        .contact-map-wrap {
            position: relative;
            width: 100%;
            height: 320px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(102, 126, 234, 0.2);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        }

        .contact-map-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            box-shadow: inset 0 0 0 1px rgba(102, 126, 234, 0.15);
            pointer-events: none;
            z-index: 1;
        }

        .contact-map-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.85);
        }

        @media (max-width: 900px) {
            .cf-form-section {
                padding-left: 0;
            }

            .contact-map-wrap {
                height: 260px;
            }
        }

        @media (max-width: 600px) {
            .cf-row {
                grid-template-columns: 1fr;
            }

            .cf-submit {
                align-self: stretch;
                justify-content: center;
            }

            .contact-map-wrap {
                height: 220px;
            }
        }

        /* ── Services Page ── */
        .services-intro {
            text-align: center;
            margin-bottom: 72px;
        }

        .services-intro p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            max-width: 640px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .srv-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 36px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .srv-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.07), rgba(118, 75, 162, 0.07));
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .srv-card:hover {
            transform: translateY(-6px);
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(102, 126, 234, 0.15);
        }

        .srv-card:hover::before {
            opacity: 1;
        }

        .srv-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: all 0.35s ease;
        }

        .srv-card:hover .srv-icon {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        }

        .srv-icon svg {
            width: 24px;
            height: 24px;
            fill: #a78bfa;
        }

        .srv-body {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .srv-title {
            font-size: 19px;
            font-weight: 600;
            color: white;
            line-height: 1.3;
        }

        .srv-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
        }

        .srv-features {
            list-style: none;
            padding: 0;
            margin: 4px 0 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .srv-features li {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            padding-left: 18px;
            position: relative;
            line-height: 1.5;
        }

        .srv-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 10px;
            top: 3px;
        }

        .srv-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            font-weight: 600;
            color: #667eea;
            text-decoration: none;
            margin-top: auto;
            position: relative;
            z-index: 1;
            transition: color 0.2s ease, gap 0.2s ease;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            font-family: inherit;
        }

        .srv-link svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            transition: transform 0.2s ease;
        }

        .srv-link:hover {
            color: #a78bfa;
            gap: 10px;
        }

        /* Services CTA banner */
        .services-cta-banner {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 24px;
            padding: 52px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }

        .services-cta-banner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .services-cta-text {
            position: relative;
            z-index: 1;
        }

        .services-cta-text h3 {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .services-cta-text p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.65;
            margin: 0;
            max-width: 480px;
        }

        .services-cta-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            position: relative;
            z-index: 1;
        }

        .services-cta-btn svg {
            width: 17px;
            height: 17px;
            fill: currentColor;
            transition: transform 0.25s ease;
        }

        .services-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.55);
        }

        .services-cta-btn:hover svg {
            transform: translateX(3px);
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 700px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-cta-banner {
                flex-direction: column;
                align-items: flex-start;
                padding: 32px 24px;
            }

            .services-cta-btn {
                width: 100%;
                justify-content: center;
            }

            .services-intro p {
                font-size: 15px;
            }
        }

        /* ── Pricing Block ── */
        .pricing-section {
            margin-bottom: 80px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .pricing-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .pricing-header p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.45);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
            padding-top: 14px;
            margin-bottom: 24px;
        }

        .pricing-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 36px 30px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            position: relative;
            transition: transform 0.35s cubic-bezier(0.34, 1.1, 0.64, 1),
                        box-shadow 0.35s ease,
                        border-color 0.35s ease;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
        }

        /* Popular card */
        .pricing-card--popular {
            background: linear-gradient(145deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.1));
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 0 8px 40px rgba(102, 126, 234, 0.2);
        }

        .pricing-card--popular:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 70px rgba(102, 126, 234, 0.35);
        }

        .pricing-popular-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 18px;
            border-radius: 50px;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(102, 126, 234, 0.5);
        }

        .pricing-top {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pricing-plan {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #667eea;
        }

        .pricing-card--popular .pricing-plan {
            color: #a78bfa;
        }

        .pricing-name {
            font-size: 22px;
            font-weight: 700;
            color: white;
        }

        .pricing-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.6;
        }

        .pricing-price {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .pricing-card--popular .pricing-price {
            border-color: rgba(102, 126, 234, 0.2);
        }

        .pricing-currency {
            font-size: 22px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1;
            padding-bottom: 8px;
        }

        .pricing-amount {
            font-size: 52px;
            font-weight: 800;
            color: white;
            line-height: 1;
            letter-spacing: -2px;
        }

        .pricing-card--popular .pricing-amount {
            background: linear-gradient(135deg, #a78bfa, #667eea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-period {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            padding-bottom: 10px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.5;
        }

        .pricing-features li svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 1px;
            fill: #667eea;
        }

        .pricing-card--popular .pricing-features li svg {
            fill: #a78bfa;
        }

        .pricing-features li.dimmed {
            color: rgba(255, 255, 255, 0.2);
        }

        .pricing-features li.dimmed svg {
            fill: rgba(255, 255, 255, 0.15);
        }

        .pricing-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s ease;
            border: 1px solid rgba(102, 126, 234, 0.35);
            color: rgba(255, 255, 255, 0.7);
            background: transparent;
        }

        .pricing-btn:hover {
            border-color: rgba(102, 126, 234, 0.7);
            color: white;
            background: rgba(102, 126, 234, 0.08);
        }

        .pricing-card--popular .pricing-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            color: white;
            box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
        }

        .pricing-card--popular .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(102, 126, 234, 0.55);
        }

        .pricing-btn svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .pricing-btn:hover svg {
            transform: translateX(3px);
        }

        .pricing-note {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.25);
            margin-top: -8px;
        }

        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .pricing-card--popular {
                transform: translateY(-4px);
            }

            .pricing-card {
                padding: 28px 22px;
            }

            .pricing-amount {
                font-size: 42px;
            }
        }

        @media (max-width: 780px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto 24px;
                padding-top: 14px;
            }
        }

        /* ── Pricing Modals ── */
        .pm-plan-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 5px 14px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #a78bfa;
            margin-bottom: 20px;
        }

        .pm-plan-badge svg {
            width: 13px;
            height: 13px;
            fill: #a78bfa;
        }

        .pm-status-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: successPop 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
        }

        .pm-status-icon--success {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
            border: 1px solid rgba(34, 197, 94, 0.35);
        }

        .pm-status-icon--error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
            border: 1px solid rgba(239, 68, 68, 0.35);
        }

        .pm-status-icon--success svg { fill: #4ade80; width: 36px; height: 36px; }
        .pm-status-icon--error svg   { fill: #f87171; width: 36px; height: 36px; }

        .pm-center {
            text-align: center;
        }

        .pm-center .modal-subtitle {
            margin-bottom: 0;
        }

        .pm-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 28px;
        }

        .pm-btn-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 4px 18px rgba(102, 126, 234, 0.4);
        }

        .pm-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 26px rgba(102, 126, 234, 0.55);
        }

        .pm-btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .pm-btn-primary svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .pm-btn-primary:hover svg {
            transform: translateX(3px);
        }

        .pm-btn-secondary {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 13px 28px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.45);
            font-size: 14px;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .pm-btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.25);
            color: rgba(255, 255, 255, 0.75);
        }

        /* ── About Page ── */

        /* Block base */
        .about-block {
            position: relative;
            padding: 100px 40px;
            overflow: hidden;
        }

        .about-block::before,
        .about-block::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 140px;
            z-index: 2;
            pointer-events: none;
        }

        .about-block::before {
            top: 0;
            background: linear-gradient(to bottom, #0a0a12, transparent);
        }

        .about-block::after {
            bottom: 0;
            background: linear-gradient(to top, #0a0a12, transparent);
        }

        .about-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }

        /* Hero block — about-bg.jpg */
        .about-block--hero {
            padding-top: 140px;
            background:
                linear-gradient(135deg, rgba(10, 10, 20, 0.87) 0%, rgba(20, 16, 40, 0.84) 100%),
                url('images/about-bg.jpg') center center / cover no-repeat fixed;
        }

        /* Process block — digital-strategy.jpg */
        .about-block--process {
            background:
                linear-gradient(135deg, rgba(10, 10, 22, 0.90) 0%, rgba(18, 14, 36, 0.88) 100%),
                url('images/digital-strategy.jpg') center top / cover no-repeat fixed;
        }

        /* Values block — analytics-insights.jpg */
        .about-block--values {
            background:
                linear-gradient(135deg, rgba(8, 8, 20, 0.88) 0%, rgba(22, 16, 44, 0.86) 100%),
                url('images/analytics-insights.jpg') center center / cover no-repeat fixed;
        }

        /* Location block — contact-bg.jpg */
        .about-block--location {
            background:
                linear-gradient(135deg, rgba(10, 10, 20, 0.88) 0%, rgba(20, 18, 40, 0.85) 100%),
                url('images/contact-bg.jpg') center center / cover no-repeat fixed;
        }

        /* Intro centering */
        .services-intro.about-page {
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Mission & Vision */
        .about-mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 60px;
        }

        .about-mv-card {
            background: linear-gradient(145deg, rgba(102, 126, 234, 0.07), rgba(118, 75, 162, 0.05));
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 20px;
            padding: 36px 32px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .about-mv-card:hover {
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.12);
        }

        .about-mv-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.18));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .about-mv-icon svg {
            width: 26px;
            height: 26px;
            fill: #a78bfa;
        }

        .about-mv-card h2 {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .about-mv-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            margin: 0;
        }

        /* Section Header */
        .about-section-header {
            margin-bottom: 40px;
        }

        .about-section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .about-section-header p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            max-width: 620px;
            margin: 0;
        }

        /* How We Work — Steps */
        .about-steps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 60px;
        }

        .about-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 28px 24px;
            transition: border-color 0.25s ease;
        }

        .about-step:hover {
            border-color: rgba(102, 126, 234, 0.3);
        }

        .about-step-number {
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #667eea, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0;
            min-width: 52px;
        }

        .about-step-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .about-step-body p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
        }

        /* Values */
        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }

        .about-value-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 28px 24px;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }

        .about-value-card:hover {
            border-color: rgba(102, 126, 234, 0.35);
            transform: translateY(-4px);
        }

        .about-value-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border: 1px solid rgba(102, 126, 234, 0.25);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .about-value-icon svg {
            width: 22px;
            height: 22px;
            fill: #a78bfa;
        }

        .about-value-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .about-value-card p {
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
        }

        /* Location */
        .about-location {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-location-text h2 {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .about-location-text p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .about-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            font-weight: 600;
            color: #667eea;
            text-decoration: none;
            transition: color 0.2s ease, gap 0.2s ease;
        }

        .about-contact-link svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            transition: transform 0.2s ease;
        }

        .about-contact-link:hover {
            color: #a78bfa;
            gap: 10px;
        }

        .about-location-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-info-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .about-info-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            background: rgba(102, 126, 234, 0.08);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-info-icon svg {
            width: 18px;
            height: 18px;
            fill: #a78bfa;
        }

        .about-info-item div {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .about-info-item strong {
            font-size: 13px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .about-info-item span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }

        .about-info-item span a {
            color: #667eea;
            text-decoration: none;
        }

        .about-info-item span a:hover {
            color: #a78bfa;
        }

        /* ── About Page — Mobile ── */
        @media (max-width: 1100px) {
            .about-block {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        @media (max-width: 900px) {
            .about-mv-grid {
                grid-template-columns: 1fr;
            }

            .about-steps-grid {
                grid-template-columns: 1fr;
            }

            .about-values-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-location {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 560px) {
            .about-block {
                padding: 70px 18px;
            }

            .about-block--hero {
                padding-top: 120px;
            }

            .about-values-grid {
                grid-template-columns: 1fr;
            }

            .about-mv-card {
                padding: 24px 20px;
            }

            .about-step {
                flex-direction: column;
                gap: 10px;
            }

            .about-step-number {
                font-size: 28px;
            }

            .about-section-header h2 {
                font-size: 22px;
            }

            .about-location-text h2 {
                font-size: 22px;
            }
        }

        /* ── FAQ Page ── */
        .faq-categories {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .faq-category-block {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-category-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #667eea;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-category-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(102, 126, 234, 0.3), transparent);
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .faq-item:first-of-type {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
        }

        .faq-question-text {
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.25s ease;
            line-height: 1.5;
        }

        .faq-question:hover .faq-question-text {
            color: white;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1px solid rgba(102, 126, 234, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: rgba(102, 126, 234, 0.06);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: #667eea;
            stroke-width: 2;
            stroke-linecap: round;
            transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
        }

        .faq-item.open .faq-icon {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            border-color: rgba(102, 126, 234, 0.6);
        }

        .faq-item.open .faq-icon svg {
            transform: rotate(45deg);
        }

        .faq-item.open .faq-question-text {
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-inner {
            padding: 0 0 22px;
        }

        .faq-answer-inner p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.85;
            margin: 0 0 10px;
        }

        .faq-answer-inner p:last-child {
            margin-bottom: 0;
        }

        .faq-answer-inner ul {
            list-style: none;
            padding: 0;
            margin: 10px 0 0;
        }

        .faq-answer-inner ul li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.75;
            padding: 4px 0 4px 20px;
            position: relative;
        }

        .faq-answer-inner ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 11px;
            top: 6px;
        }

        .faq-cta-block {
            margin-top: 56px;
            padding: 36px 40px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .faq-cta-block p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
            margin: 0;
        }

        .faq-cta-block strong {
            display: block;
            font-size: 18px;
            color: white;
            margin-bottom: 6px;
        }

        .faq-cta-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 26px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
        }

        .faq-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
        }

        .faq-cta-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        @media (max-width: 600px) {
            .faq-question-text {
                font-size: 15px;
            }

            .faq-cta-block {
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 20px;
                text-align: left;
            }

            .faq-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ── Cookie Banner ── */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9998;
            padding: 0 24px 24px;
            transform: translateY(calc(100% + 24px));
            transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
            pointer-events: none;
        }

        .cookie-banner.visible {
            transform: translateY(0);
            pointer-events: all;
        }

        .cookie-banner-inner {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(10, 10, 22, 0.97), rgba(20, 18, 38, 0.97));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 20px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            backdrop-filter: blur(16px);
            box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(102, 126, 234, 0.1);
        }

        .cookie-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-icon svg {
            width: 20px;
            height: 20px;
            fill: #a78bfa;
        }

        .cookie-text {
            flex: 1;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .cookie-text strong {
            color: rgba(255, 255, 255, 0.9);
        }

        .cookie-text em {
            font-style: normal;
            color: #a78bfa;
        }

        .cookie-text a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .cookie-text a:hover {
            color: #a78bfa;
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 9px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .cookie-btn--decline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.5);
        }

        .cookie-btn--decline:hover {
            border-color: rgba(255, 255, 255, 0.35);
            color: rgba(255, 255, 255, 0.8);
        }

        .cookie-btn--accept {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            color: white;
            box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
        }

        .cookie-btn--accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.55);
        }

        @media (max-width: 600px) {
            .cookie-banner-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 18px;
            }

            .cookie-actions {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                text-align: center;
            }
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .about-main {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-visual {
                height: 400px;
            }

            .about-info {
                padding-left: 0;
                text-align: center;
            }

            .feature-list {
                text-align: left;
                max-width: 500px;
                margin: 0 auto 40px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 40px;
            }

            /* Contact section responsive */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info-section {
                padding-right: 0;
            }

            .contact-process-section {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-sep {
                display: none;
            }

            .menu-item.menu-pill {
                width: 100%;
                text-align: center;
                border-radius: 10px;
                padding: 10px 18px;
            }

            .main-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .coverflow-item {
                width: 200px;
                height: 200px;
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .nav-button.prev {
                left: 20px;
            }

            .nav-button.next {
                right: 20px;
            }

            .info h2 {
                font-size: 24px;
            }

            .info p {
                font-size: 14px;
            }

            .logo-img {
                height: 38px;
            }

            .about-header h2 {
                font-size: 36px;
            }

            .about-info h3 {
                font-size: 28px;
            }

            .about-visual {
                height: 400px;
            }

            .showcase-display {
                max-width: 350px;
                height: 400px;
            }

            .showcase-main {
                width: 100%;
                height: 350px;
                padding: 30px;
            }

            .showcase-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }

            .showcase-title {
                font-size: 28px;
            }

            .showcase-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .corner-decoration {
                display: none;
            }

            .stat-number {
                font-size: 36px;
            }

            .contact-content h2 {
                font-size: 36px;
            }

            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 70px;
                padding: 0 15px;
            }

            .header.scrolled {
                height: 60px;
            }

            .logo-img {
                height: 34px;
            }

            .coverflow-item {
                width: 180px;
                height: 180px;
            }

            .about-content,
            .contact-content {
                padding: 20px;
            }

            /* Additional contact section mobile optimization for small screens */
            .contact-container {
                gap: 30px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-header p {
                font-size: 16px;
                padding: 0 10px;
            }

            .contact-info-section {
                margin-bottom: 20px;
            }

            .contact-info-section h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .contact-info-section > p {
                font-size: 14px;
                padding: 0 10px;
                margin-bottom: 30px;
            }

            .contact-details {
                gap: 15px;
            }

            .contact-item {
                padding: 15px;
                gap: 12px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-text h4 {
                font-size: 14px;
            }

            .contact-text p {
                font-size: 12px;
                word-break: break-word;
            }

            .process-cta {
                font-size: 13px;
                padding: 13px 20px;
                align-self: center;
            }

            .footer {
                padding: 40px 20px 0;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .footer-brand {
                grid-column: auto;
                align-items: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-col ul {
                align-items: center;
            }

            .footer-col ul li {
                justify-content: center;
            }

            .footer-col:last-child ul li a:hover {
                padding-left: 0;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .footer-bottom-links {
                gap: 16px;
                justify-content: center;
            }

            .modal-hero {
                height: 160px;
            }
        }