/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep: #0f1b4d;
            --blue-mid: #1a2980;
            --purple-mid: #6a1b9a;
            --purple-bright: #ab47bc;
            --magenta: #c2185b;
            --pink-accent: #e040fb;
            --text-white: #ffffff;
            --text-light: rgba(255,255,255,0.85);
            --text-muted: rgba(255,255,255,0.6);
            --bg-dark: #0c0e2b;
            --bg-section: #10133a;
            --bg-card: rgba(255,255,255,0.05);
            --border-subtle: rgba(255,255,255,0.08);
            --gradient-main: linear-gradient(135deg, #0f1b4d 0%, #1a2980 30%, #6a1b9a 70%, #c2185b 100%);
            --gradient-accent: linear-gradient(135deg, #6a1b9a, #e040fb);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; height: auto; display: block; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== NAV ===== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: background 0.4s, box-shadow 0.4s;
        }
        .nav.scrolled {
            background: rgba(12, 14, 43, 0.92);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(0,0,0,0.3);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .nav-logo img {
            height: 44px;
            width: auto;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: var(--text-light);
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gradient-accent);
            transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--text-white); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            padding: 10px 24px;
            background: var(--gradient-accent);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(106, 27, 154, 0.4);
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none; border: none;
            padding: 8px;
        }
        .burger span {
            width: 24px; height: 2px;
            background: var(--text-white);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                rgba(15, 27, 77, 0.85) 0%,
                rgba(26, 41, 128, 0.75) 30%,
                rgba(106, 27, 154, 0.75) 70%,
                rgba(194, 24, 91, 0.8) 100%
            );
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 24px;
        }
        .hero-icon {
            margin: 0 auto 24px;
            width: 80px; height: 80px;
            
        }
        .hero-icon svg {
            width: 100%; height: 100%;
            fill: none;
            stroke: var(--text-white);
            stroke-width: 1.5;
        }
        .hero-title {
            font-family: 'Oswald', 'Impact', sans-serif;
            font-size: clamp(64px, 12vw, 140px);
            font-weight: 700;
            letter-spacing: 8px;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 16px;
            text-shadow: 0 4px 60px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(14px, 2vw, 20px);
            font-weight: 500;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 48px;
        }
        .hero-tagline {
            font-size: clamp(14px, 1.8vw, 18px);
            font-weight: 400;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: float 2s ease-in-out infinite;
        }
        .hero-scroll .arrow {
            width: 24px; height: 24px;
            border-right: 2px solid var(--text-muted);
            border-bottom: 2px solid var(--text-muted);
            transform: rotate(45deg);
        }
        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 100px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }
        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--pink-accent);
            margin-bottom: 16px;
        }
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        .section-desc {
            max-width: 650px;
            margin: 20px auto 0;
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== ABOUT ===== */
        .about { background: var(--bg-section); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-text h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .about-text p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-values {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .value-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .value-icon {
            color: var(--pink-accent);
            font-size: 14px;
            flex-shrink: 0;
        }
        .about-visual {
            position: relative;
        }
        .about-visual img {
            border-radius: var(--radius);
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .about-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius);
            background: linear-gradient(135deg, rgba(106,27,154,0.3), transparent 60%);
        }

        /* ===== SERVICES ===== */
        .services { background: var(--bg-dark); }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .service-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            group: true;
        }
        .service-card img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .service-card:hover img {
            transform: scale(1.08);
        }
        .service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(12, 14, 43, 0.95) 0%,
                rgba(12, 14, 43, 0.4) 50%,
                transparent 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            transition: background 0.4s;
        }
        .service-card:hover .service-overlay {
            background: linear-gradient(
                to top,
                rgba(106, 27, 154, 0.9) 0%,
                rgba(106, 27, 154, 0.5) 50%,
                rgba(106, 27, 154, 0.2) 100%
            );
        }
        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .service-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.5s, opacity 0.4s;
        }
        .service-card:hover .service-desc {
            max-height: 200px;
            opacity: 1;
        }
        .service-bullets {
            margin-top: 8px;
            padding-left: 0;
        }
        .service-bullets li {
            font-size: 13px;
            color: var(--text-light);
            padding: 3px 0;
            padding-left: 16px;
            position: relative;
        }
        .service-bullets li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--pink-accent);
        }

        /* ===== STATS ===== */
        .stats {
            background: var(--gradient-main);
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .stat-item .stat-value {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 900;
        }
        .stat-item .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 8px;
            letter-spacing: 1px;
        }

        /* ===== QUOTE ===== */
        .quote-section {
            background: var(--bg-section);
            padding: 100px 0;
        }
        .quote-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .quote-mark {
            font-size: 80px;
            line-height: 1;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }
        .quote-text {
            font-size: 22px;
            font-weight: 300;
            font-style: italic;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 32px;
        }
        .quote-author {
            font-weight: 600;
            font-size: 16px;
        }
        .quote-role {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ===== CONTACT ===== */
        .contact { background: var(--bg-dark); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        .contact-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .contact-info > p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .contact-link {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            transition: border-color 0.3s, background 0.3s;
        }
        .contact-link:hover {
            border-color: rgba(171, 71, 188, 0.3);
            background: rgba(106, 27, 154, 0.1);
        }
        .contact-link-icon {
            width: 40px; height: 40px;
            background: var(--gradient-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-link-icon svg {
            width: 20px; height: 20px;
            fill: white;
        }
        .contact-link-text .link-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .contact-link-text .link-value {
            font-size: 16px;
            font-weight: 500;
            margin-top: 2px;
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 40px;
        }
        .contact-form h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--purple-bright);
            box-shadow: 0 0 0 3px rgba(171, 71, 188, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-group select option {
            background: var(--bg-dark);
        }
        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-accent);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(106, 27, 154, 0.4);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-section);
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0;
            text-align: center;
        }
        .footer p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== HERO ENTRANCE ANIMATIONS ===== */
        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .hero-icon {
            animation: heroFadeScale 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
        }

        .hero-title {
            animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
        }

        .hero-subtitle {
            animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
        }

        .hero-tagline {
            animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
        }
        .nav {
            animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
        }



        /* ===== MOBILE NAV ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(12, 14, 43, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--pink-accent); }
        .mobile-close {
            position: absolute;
            top: 24px; right: 24px;
            background: none; border: none;
            color: var(--text-white);
            font-size: 32px;
            cursor: pointer;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-visual { order: -1; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .burger { display: flex; }
            .container { padding: 0 20px; }
            .section { padding: 70px 0; }

            .hero { min-height: 100vh; min-height: 100dvh; }
            .hero-title { font-size: clamp(48px, 14vw, 80px); letter-spacing: 4px; }
            .hero-subtitle { letter-spacing: 5px; font-size: 14px; margin-bottom: 32px; }
            .hero-tagline { letter-spacing: 0.5px; font-size: 15px; padding: 0 8px; }
            .hero-icon { width: 64px; height: 64px; margin-bottom: 20px; }
            .hero-scroll { bottom: 24px; }

            .about-grid { grid-template-columns: 1fr; gap: 32px; }
            .about-visual { order: -1; }
            .about-visual img { aspect-ratio: 16/9; }
            .about-text h3 { font-size: 24px; }
            .about-text p { font-size: 15px; }

            .section-title { font-size: clamp(24px, 6vw, 32px); }
            .section-desc { font-size: 15px; }
            .section-header { margin-bottom: 40px; }

            .services-grid { grid-template-columns: 1fr; gap: 16px; }
            .service-card { aspect-ratio: 16/10; }
            .service-overlay { padding: 20px; }
            .service-title { font-size: 18px; }
            .service-desc { max-height: 200px; opacity: 1; }

            .stats { padding: 60px 0; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .stat-item .stat-value { font-size: 36px; }
            .stat-item .stat-label { font-size: 13px; }

            .quote-section { padding: 70px 0; }
            .quote-mark { font-size: 56px; margin-bottom: 16px; }
            .quote-text { font-size: 18px; line-height: 1.7; }

            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .contact-info h3 { font-size: 24px; }
            .contact-form { padding: 28px 20px; }
            .contact-form h3 { font-size: 20px; }
            .form-group input,
            .form-group textarea,
            .form-group select { padding: 12px 14px; font-size: 16px; }
            .form-submit { padding: 14px; font-size: 14px; }
        }

        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .section { padding: 56px 0; }

            .hero-title { font-size: clamp(40px, 16vw, 64px); letter-spacing: 2px; }
            .hero-subtitle { letter-spacing: 3px; font-size: 12px; margin-bottom: 24px; }
            .hero-tagline { font-size: 13px; line-height: 1.8; }
            .hero-icon { width: 52px; height: 52px; margin-bottom: 16px; }


            .service-card { aspect-ratio: 3/2; }

            .stats-grid { gap: 20px; }
            .stat-item .stat-value { font-size: 30px; }
            .stat-item .stat-label { font-size: 12px; }

            .quote-text { font-size: 16px; }
            .quote-author { font-size: 15px; }

            .contact-form { padding: 24px 16px; }
            .contact-link { padding: 14px 16px; }
            .contact-link-icon { width: 36px; height: 36px; border-radius: 8px; }
            .contact-link-icon svg { width: 18px; height: 18px; }
            .contact-link-text .link-value { font-size: 15px; }

            .footer { padding: 32px 0; }
            .footer p { font-size: 12px; }
        }

        @media (max-width: 360px) {
            .hero-title { font-size: 36px; letter-spacing: 1px; }
            .hero-subtitle { font-size: 10px; letter-spacing: 2px; }
        }
