﻿@charset "UTF-8";
:root {
            --primary: #0A2463;
            --secondary: #3E92CC;
            --accent: #FB8500;
            --dark: #1E1E1E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --white: #FFFFFF;
            --gradient-1: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
            --gradient-2: linear-gradient(135deg, #FB8500 0%, #FFB703 100%);
        }

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

        body {
            font-family: 'Darker Grotesque', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--light);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-item.has-submenu {
            position: relative;
            padding-bottom: 10px;
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: var(--white);
            border-radius: 12px;
            padding: 0.75rem 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            display: none;
            list-style: none;
            z-index: 1100;
        }

        .submenu a {
            display: block;
            padding: 0.6rem 1.2rem;
            font-size: 1rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .submenu a::after {
            display: none;
        }

        .nav-item.has-submenu:hover .submenu {
            display: block;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a.active {
            color: var(--secondary);
        }

        .nav-menu a.active::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
        }

        /* Page Hero */
        .page-hero {
            margin-top: 80px;
            padding: 6rem 2rem 4rem;
            background: var(--gradient-1);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .page-hero p {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Welcome Section */
        .welcome-section {
            max-width: 1400px;
            margin: -3rem auto 3rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .welcome-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .welcome-card h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .welcome-card p {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.7;
        }

        /* Services Grid */
        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 3rem;
        }

        .client-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .client-link-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .client-link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .client-link-card:hover::before {
            left: 0;
        }

        .client-link-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .client-link-card:hover .client-link-icon {
            background: var(--white);
            color: var(--primary);
        }

        .client-link-card:hover h3,
        .client-link-card:hover p {
            color: var(--white);
        }

        .client-link-content {
            position: relative;
            z-index: 1;
        }

        .client-link-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: var(--white);
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
        }

        .client-link-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.8rem;
            transition: color 0.4s ease;
        }

        .client-link-card p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        .external-link-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: var(--light);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary);
            transition: all 0.4s ease;
        }

        .client-link-card:hover .external-link-badge {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        /* Support Section */
        .support-section {
            max-width: 1400px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .support-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .support-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin: 0 auto 1.5rem;
        }

        .support-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }

        .support-card p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .support-card a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .support-card a:hover {
            color: var(--accent);
        }

        /* Client Area Button */
        .client-area-btn {
            background: var(--gradient-2);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(251, 133, 0, 0.3);
        }

        .client-area-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 133, 0, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-content p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }

            .client-links-grid {
                grid-template-columns: 1fr;
            }

            .welcome-card {
                padding: 2rem;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item.has-submenu {
                width: 100%;
            }

            .submenu {
                position: static;
                display: none;
                box-shadow: none;
                padding: 0.5rem 0 0.5rem 1rem;
                min-width: 0;
            }

            .submenu a {
                padding: 0.4rem 0;
                font-size: 1rem;
            }

            .nav-item.submenu-open .submenu {
                display: block;
            }
        }
