 * {
            -webkit-tap-highlight-color: transparent;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: default;
        }
        
        .allow-select,
        .section-content p,
        .hero-description,
        .review-text,
        .problem-card p,
        .popup-content p,
        .sector-card p,
        .solution-step p,
        .reassurance-note p {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
            cursor: text;
        }
        
        :root {
            --deep-blue: #060F1E;
            --mid-blue: #0B2A55;
            --light-blue: #0E4DA4;
            --accent-blue: #1E90FF;
            --accent-teal: #1E90FF;
            --text-white: #EAF1FF;
            --text-gray: #CFE2FF;
            --text-light: #EAF1FF;
            --glass-bg: rgba(11, 42, 85, 0.85);
            --glass-border: rgba(255, 255, 255, 0.22);
            --gradient-primary: linear-gradient(180deg, #060F1E, #0B2A55, #0E4DA4);
            --gradient-secondary: linear-gradient(135deg, #0B2A55 0%, #0E4DA4 100%);
            --gradient-accent: linear-gradient(135deg, #1E90FF 0%, #1E90FF 100%);
            --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            --section-padding: 6rem 2rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 15px;
        }

        body {
            font-family: 'Manrope', 'IBM Plex Sans', 'Source Sans Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, #060F1E, #0B2A55, #0E4DA4);
            color: var(--text-white);
            line-height: 1.6;
            font-weight: 400;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, h2, h3, h4 {
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 500;
            letter-spacing: -0.3px;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            font-weight: 500;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            width: 3.5rem;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.6;
            font-weight: 400;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .lead-text {
            font-size: 1.15rem;
            line-height: 1.7;
            font-weight: 300;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        a:hover {
            opacity: 0.85;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .main-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(6, 15, 30, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 0.8rem 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.22);
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .main-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .main-logo .logo-icon {
            font-size: 1.8rem;
            padding: 0.5rem;
            background: rgba(30, 144, 255, 0.12);
            border-radius: 10px;
            border: 1px solid rgba(30, 144, 255, 0.25);
            transition: all 0.3s ease;
        }

        .logo-tagline {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-top: 0.1rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .main-nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .main-nav a {
            color: var(--text-gray);
            font-weight: 400;
            padding: 0.4rem 0;
            position: relative;
            font-size: 0.95rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-teal);
        }

        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent-teal);
            transition: width 0.3s ease;
        }

        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }

        .main-nav i {
            margin-right: 0.4rem;
            font-size: 1rem;
        }

        .login-btn {
            background: #1E90FF;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-weight: 400;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            width: 90px;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .login-btn:hover {
            background: #0B2A55;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        .login-btn:active {
            background: #0E4DA4;
            transform: translateY(0);
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: rgba(6, 15, 30, 0.97);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.22);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 4rem 1.5rem 1.5rem;
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .sidebar-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .sidebar-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            padding: 0.7rem;
            background: rgba(30, 144, 255, 0.15);
            border-radius: 10px;
            border: 1px solid rgba(30, 144, 255, 0.3);
        }

        .sidebar-tagline {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.25rem;
            font-weight: 400;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .sidebar-nav {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .sidebar-nav li {
            margin-bottom: 0.4rem;
        }

        .sidebar-nav a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: var(--text-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 400;
            border: 1px solid transparent;
            font-size: 0.9rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background: rgba(30, 144, 255, 0.1);
            color: var(--accent-teal);
            border-color: rgba(30, 144, 255, 0.2);
            transform: translateX(5px);
        }

        .sidebar-nav i {
            width: 20px;
            text-align: center;
            margin-right: 8px;
        }

        .sidebar-close {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: rotate(90deg);
        }

        .mobile-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(6, 15, 30, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.22);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .mobile-logo .logo-icon {
            font-size: 1.7rem;
            padding: 0.4rem;
            background: rgba(30, 144, 255, 0.12);
            border-radius: 8px;
            border: 1px solid rgba(30, 144, 255, 0.25);
            transition: all 0.3s ease;
        }

        .mobile-nav-toggle {
            background: rgba(30, 144, 255, 0.12);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            font-size: 1.1rem;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 1001;
        }

        .mobile-nav-toggle:hover {
            background: rgba(30, 144, 255, 0.18);
            transform: rotate(90deg);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 1.2rem 4rem;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at top, rgba(30, 144, 255, 0.15) 0%, transparent 70%),
                        radial-gradient(ellipse at bottom, rgba(6, 15, 30, 0.8) 0%, transparent 70%);
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('public/image/bg.png');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: -2;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #060F1E, #0B2A55, #0E4DA4);
            opacity: 0.8;
            z-index: -1;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--text-light);
            line-height: 1.1;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: -0.1px;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 3.5rem;
            color: var(--text-gray);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .cta-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.2rem;
            border-radius: 12px;
            font-weight: 400;
            font-size: 1rem;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            position: relative;
            overflow: hidden;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 8px 25px rgba(30, 144, 255, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(30, 144, 255, 0.35);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(30, 144, 255, 0.08);
            transform: translateY(-4px);
            border-color: var(--accent-teal);
        }

        .section {
            padding: 5rem 1.2rem;
            position: relative;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            opacity: 0.1;
            z-index: -1;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .sector-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .sector-card {
            background: var(--gradient-card);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 18px;
            padding: 2.2rem 1.8rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(0);
        }

        .sector-card:nth-child(odd) {
            transform: translateX(-50px);
        }

        .sector-card:nth-child(even) {
            transform: translateX(50px);
        }

        .sector-card.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease-out;
        }

        .sector-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.03) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .sector-card:hover:before {
            opacity: 1;
        }

        .sector-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(30, 144, 255, 0.1);
        }

        .sector-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .sector-card p {
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
            font-size: 1rem;
        }

        .sector-image-container {
            width: 100%;
            height: 180px;
            border-radius: 14px;
            margin-bottom: 1.8rem;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(30, 144, 255, 0.1);
        }

        .sector-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .sector-card:hover .sector-image {
            transform: scale(1.05);
        }

        .sector-icon-container {
            position: absolute;
            bottom: -20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(6, 15, 30, 0.9);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(30, 144, 255, 0.2);
            transition: all 0.3s ease;
            z-index: 2;
        }

        .sector-card:hover .sector-icon-container {
            background: rgba(30, 144, 255, 0.15);
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
        }

        .sector-icon {
            font-size: 1.7rem;
            color: var(--accent-teal);
        }

        .sector-list {
            list-style: none;
            margin-top: 1.2rem;
        }

        .sector-list li {
            margin-bottom: 0.7rem;
            padding-left: 1.8rem;
            position: relative;
            color: var(--text-gray);
            font-size: 0.95rem;
            transition: transform 0.3s ease;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .sector-list li:hover {
            transform: translateX(5px);
            color: var(--text-light);
        }

        .sector-list li:before {
            content: '▸';
            color: var(--accent-teal);
            position: absolute;
            left: 0;
            font-weight: 500;
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .sector-list li:hover:before {
            transform: translateX(3px);
        }

        .solution-detail {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 22px;
            padding: 2.8rem;
            margin-top: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .solution-detail.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .solution-detail:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .solution-step {
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            opacity: 0;
            transform: translateX(0);
            transition: all 0.6s ease-out;
        }

        .solution-step:nth-child(odd) {
            transform: translateX(-30px);
        }

        .solution-step:nth-child(even) {
            transform: translateX(30px);
        }

        .solution-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .solution-step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .solution-step h4 {
            color: var(--accent-teal);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .solution-step h4 i {
            font-size: 1.2rem;
        }

        .solution-step p {
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
            font-size: 1.05rem;
        }

        .step-list {
            list-style: none;
        }

        .step-list li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            color: var(--text-gray);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .step-list li:hover {
            color: var(--text-light);
            transform: translateX(5px);
        }

        .step-list li:before {
            content: '✓';
            color: var(--accent-teal);
            position: absolute;
            left: 0;
            font-weight: 500;
            font-size: 1rem;
            width: 18px;
            height: 18px;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reassurance-note {
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.05) 0%, rgba(30, 144, 255, 0.02) 100%);
            border: 1px solid rgba(30, 144, 255, 0.15);
            border-radius: 18px;
            padding: 2.8rem;
            margin-top: 3.5rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .reassurance-note.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reassurance-note:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 70%, rgba(30, 144, 255, 0.03) 100%);
        }

        .reassurance-note h4 {
            color: var(--accent-teal);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .reassurance-note h4 i {
            font-size: 1.3rem;
        }

        .reassurance-note p {
            font-size: 1.05rem;
            line-height: 1.7;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .why-dil-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .why-dil-card {
            background: var(--gradient-card);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 18px;
            padding: 2.2rem 1.8rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .why-dil-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .why-dil-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.03) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .why-dil-card:hover:before {
            opacity: 1;
        }

        .why-dil-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(30, 144, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(30, 144, 255, 0.1);
        }

        .why-dil-card h3 {
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
            font-size: 1.4rem;
        }

        .why-dil-card p {
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
            font-size: 1rem;
        }

        .why-dil-icon-container {
            width: 60px;
            height: 60px;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(30, 144, 255, 0.2);
            transition: all 0.3s ease;
        }

        .why-dil-card:hover .why-dil-icon-container {
            background: rgba(30, 144, 255, 0.15);
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
        }

        .why-dil-icon {
            font-size: 2rem;
            color: var(--accent-teal);
        }

        .why-dil-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
            margin: 3.5rem 0;
        }

        .why-dil-image-container {
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            height: 250px;
            border: 1px solid rgba(30, 144, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .why-dil-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .why-dil-image-container:hover .why-dil-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(6, 15, 30, 0.9), transparent);
            padding: 1.8rem;
            color: var(--text-light);
        }

        .image-overlay h4 {
            color: var(--accent-teal);
            margin-bottom: 0.4rem;
            font-size: 1.3rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .image-overlay p {
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
            font-size: 0.95rem;
        }

        .highlight-text {
            background: linear-gradient(135deg, var(--accent-teal) 0%, #1E90FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 400;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .fade-in-text {
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
            animation-delay: 0.3s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .cta-section {
            text-align: center;
            padding: 6rem 1.2rem;
            background: linear-gradient(135deg, rgba(6, 15, 30, 0.9) 0%, rgba(11, 42, 85, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.8rem;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 3rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 1.2rem 2.5rem;
            background: rgba(6, 15, 30, 0.7);
            backdrop-filter: blur(10px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h4 {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.4rem;
            font-weight: 500;
            font-family: 'IBM Plex Sans', 'Inter', sans-serif;
        }

        .footer-section h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 2.2rem;
            height: 2px;
            background: var(--accent-teal);
        }

        .footer-section p {
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
            font-size: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: var(--text-gray);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .footer-links a:hover {
            color: var(--accent-teal);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .footer-contact i {
            color: var(--accent-teal);
            width: 18px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.8rem;
            text-align: center;
            color: var(--text-gray);
        }

        .footer-bottom p {
            margin-bottom: 0.4rem;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--text-gray);
            opacity: 0.7;
            font-family: 'Source Sans Pro', 'Inter', sans-serif;
        }

        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        @media (min-width: 1025px) {
            .main-header {
                display: flex;
            }
            
            .mobile-header {
                display: none;
            }
            
            .hero {
                padding-top: 8rem;
            }
        }

        @media (max-width: 1200px) {
            .sector-grid,
            .why-dil-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .why-dil-images {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            
            .why-dil-image-container {
                height: 220px;
            }
        }

        @media (max-width: 1024px) {
            html {
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-description {
                font-size: 1.05rem;
            }
            
            .section {
                padding: 4.5rem 1.2rem;
            }
            
            .main-header {
                display: none;
            }
            
            .mobile-header {
                display: flex;
            }
            
            .sector-image-container {
                height: 160px;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 13px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section {
                padding: 4rem 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 320px;
            }
            
            .sector-grid,
            .why-dil-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            
            .sidebar {
                width: 100%;
                right: -100%;
            }
            
            .solution-detail {
                padding: 2.2rem;
            }
            
            .reassurance-note {
                padding: 2.2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.2rem;
            }
            
            .sector-card,
            .why-dil-card {
                padding: 2rem 1.5rem;
            }
            
            .sector-image-container {
                height: 150px;
            }
            
            .why-dil-images {
                margin: 2.8rem 0;
            }
            
            .why-dil-image-container {
                height: 180px;
            }
            
            .cta-section {
                padding: 5rem 1.2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 12px;
            }
            
            .mobile-header {
                padding: 0.7rem 1rem;
            }
            
            .hero {
                padding: 5rem 1rem 3.5rem;
            }
            
            .section {
                padding: 3.5rem 0.8rem;
            }
            
            .btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .sector-card,
            .why-dil-card {
                padding: 1.8rem 1.2rem;
            }
            
            .solution-detail {
                padding: 1.8rem;
            }
            
            .cta-section {
                padding: 4.5rem 1rem;
            }
            
            .sector-icon-container {
                width: 45px;
                height: 45px;
                bottom: -15px;
                right: 15px;
            }
            
            .sector-icon {
                font-size: 1.4rem;
            }
            
            .sector-image-container {
                height: 130px;
            }
            
            .why-dil-icon-container {
                width: 55px;
                height: 55px;
            }
            
            .why-dil-icon {
                font-size: 1.8rem;
            }
            
            .why-dil-image-container {
                height: 150px;
            }
            
            .footer {
                padding: 2.5rem 1rem 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .lead-text {
                font-size: 1.05rem;
            }
            
            p {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            html {
                font-size: 11px;
            }
            
            .hero-title {
                font-size: 1.7rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .sector-image-container {
                height: 120px;
            }
            
            .why-dil-image-container {
                height: 130px;
            }
        }