:root {
    --primary-blue: #0066cc;
    --primary-dark: #004499;
    --primary-light: #3399ff;
    --accent-blue: #00a8ff;
    --accent-cyan: #06b6d4;
    --accent-green: #16a34a;
    --accent-gold: #f59e0b;
    --accent-rose: #e11d48;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray-100: #f0f4f8;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --surface-warm: #fff7ed;
    --surface-green: #ecfdf5;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 50%, #002266 100%);
    --gradient-accent: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    --gradient-hero: linear-gradient(135deg, #0066cc 0%, #004499 60%, #002266 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
    --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 102, 204, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 102, 204, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 60px rgba(0, 168, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #0088ff 0%, #0066cc 50%, #004499 100%);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 
        0 4px 20px rgba(0, 102, 204, 0.35),
        0 0 40px rgba(0, 136, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 102, 204, 0.45),
        0 0 60px rgba(0, 136, 255, 0.2);
    background-position: 100% 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 102, 204, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 102, 204, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--primary-blue);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.05);
}

.nav-link.active {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.08);
}

.nav-link::after {
    display: none;
}

.nav .btn {
    margin-left: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(0, 102, 204, 0.05);
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 168, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--gradient-glow);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 60%;
    animation-delay: -10s;
}

.hero-shape-4 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation-delay: -15s;
    background: rgba(0, 168, 255, 0.1);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(0, -40px) rotate(0deg); }
    75% { transform: translate(-20px, -20px) rotate(-5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #4ade80;
    font-size: 0.85rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(135deg, #60dfff 0%, #00a8ff 50%, #60dfff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-text {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-visual {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: fadeInRight 1s ease 0.8s forwards;
    opacity: 0;
}

.dashboard-preview {
    width: 520px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.25),
        0 0 100px rgba(0, 168, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dashboard-dot.red { background: linear-gradient(135deg, #ff5f57, #ff3b30); }
.dashboard-dot.yellow { background: linear-gradient(135deg, #febc2e, #ff9500); }
.dashboard-dot.green { background: linear-gradient(135deg, #28c840, #34c759); }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.dashboard-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.dashboard-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, #60dfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 5px;
    font-weight: 500;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    height: 140px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-light), var(--accent-cyan));
    border-radius: 8px 8px 4px 4px;
    animation: growBar 1s ease forwards;
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    border-radius: 8px 8px 0 0;
}

@keyframes growBar {
    from { height: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(50%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* Glow effect for hero */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 450px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
}

.about-brand-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-image-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.about-image-badge-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900);
}

.about-image-badge-sub {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-blue);
}

.about-content > p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.about-feature-text {
    font-weight: 600;
    color: var(--gray-900);
}

/* Vision & Mission Section */
.vision-mission {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary-blue);
}

.service-card:hover .service-title,
.service-card:hover .service-text {
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-text {
    color: var(--gray-500);
    line-height: 1.7;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/* Projects Section */
.projects {
    background: var(--gray-100);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    scroll-margin-top: 110px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    aspect-ratio: 16 / 9;
    height: auto;
    background: var(--gray-200);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.22) 100%);
    z-index: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transform: scale(0);
    transition: var(--transition);
}

.project-card:hover .project-overlay a {
    transform: scale(1);
}

.project-content {
    padding: 25px;
}

.project-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.project-text {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-feature {
    padding: 5px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.project-link:hover {
    gap: 12px;
}

/* Why Choose Us */
.why-choose {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 168, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.3) 0%, transparent 50%);
}

.why-choose .section-title,
.why-choose .section-subtitle {
    color: var(--white);
}

.why-choose .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.why-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, var(--white) 0%, #eef7ff 100%);
}

.testimonial-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.client-feedback-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
}

.feedback-summary-card {
    padding: 32px;
    color: var(--white);
    background: var(--gray-900);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.feedback-summary-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #93e9ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feedback-summary-card h3 {
    margin-bottom: 24px;
    font-size: 1.7rem;
    line-height: 1.25;
}

.feedback-points {
    display: grid;
    gap: 14px;
}

.feedback-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.feedback-point i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93e9ff;
    background: rgba(147, 233, 255, 0.12);
    border-radius: var(--radius-sm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.08);
    border-radius: var(--radius-sm);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.testimonial-tags span {
    padding: 7px 10px;
    color: var(--gray-700);
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: #fbbf24;
}

/* CTA Section */
.cta {
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.cta .btn-secondary:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Demo Modal */
body.modal-open {
    overflow: hidden;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.demo-modal.open {
    display: flex;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
}

.demo-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: min(92vh, 900px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.demo-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-fast);
}

.demo-modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.demo-modal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.demo-info {
    padding: 42px;
    background: linear-gradient(160deg, #eef7ff 0%, #ffffff 100%);
}

.demo-modal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.demo-modal-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary-blue);
}

.demo-info h2 {
    color: var(--gray-900);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.demo-info > p {
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.demo-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.demo-item {
    display: flex;
    gap: 14px;
}

.demo-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0f2fe;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.demo-text h4 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 4px;
}

.demo-text p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.demo-form {
    padding: 42px;
    background: var(--white);
}

.demo-form .btn,
.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.demo-form .btn:disabled,
.contact-form .btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
}

/* Contact Section */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.contact-text h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.contact-text p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.contact-text a {
    color: inherit;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    line-height: 1.5;
}

.form-status:not(:empty) {
    display: block;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.form-status.success {
    color: #166534;
    background: #dcfce7;
    border-color: #86efac;
}

.form-status.error {
    color: #991b1b;
    background: #fee2e2;
    border-color: #fca5a5;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 10px;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }

    .nav .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-grid,
    .vm-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .demo-modal {
        padding: 14px;
        align-items: flex-start;
    }

    .demo-dialog {
        max-height: calc(100vh - 28px);
        border-radius: 18px;
    }

    .demo-modal-grid {
        grid-template-columns: 1fr;
    }

    .demo-info,
    .demo-form {
        padding: 30px 22px;
    }

    .demo-info h2 {
        font-size: 1.55rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .client-feedback-layout,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .feedback-summary-card,
    .testimonial-card {
        padding: 26px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced homepage structure */
main {
    overflow: hidden;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.mobile-toggle {
    background: transparent;
    border: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.hero-title,
.section-title,
.logo-text {
    letter-spacing: 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 999px;
}

.hero {
    min-height: 92vh;
    padding: 128px 0 86px;
    background:
        linear-gradient(135deg, rgba(6, 21, 49, 0.96) 0%, rgba(0, 76, 144, 0.96) 58%, rgba(15, 118, 110, 0.95) 100%);
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
}

.hero::after,
.hero-shapes {
    display: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: none;
}

.hero-title {
    max-width: 780px;
    font-size: 3.9rem;
    line-height: 1.08;
}

.hero-title span {
    background: linear-gradient(135deg, #9af6ff 0%, #7dd3fc 45%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    max-width: 640px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust-list strong {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.hero-stats {
    gap: 34px;
    margin-top: 38px;
    padding-top: 30px;
}

.hero-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.55s forwards;
}

.dashboard-preview-enhanced {
    width: min(100%, 520px);
    margin-left: auto;
    border-radius: 18px;
}

.dashboard-preview-enhanced .dashboard-header {
    gap: 8px;
}

.dashboard-brand {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.dashboard-brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
}

.dashboard-toolbar i {
    color: var(--accent-green);
    font-size: 0.55rem;
}

.dashboard-workflow {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.workflow-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
}

.workflow-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(125, 211, 252, 0.16);
    border-radius: var(--radius-sm);
}

.workflow-row strong,
.workflow-row small {
    display: block;
}

.workflow-row strong {
    color: var(--white);
    font-size: 0.92rem;
}

.workflow-row small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
}

.workflow-state {
    padding: 6px 9px;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.14);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 800;
}

.workflow-state.done {
    color: #bbf7d0;
    background: rgba(22, 163, 74, 0.18);
}

.home-pillars {
    padding: 42px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.pillars-header {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 42px;
    align-items: end;
    margin-bottom: 28px;
}

.pillars-header h2 {
    font-size: 2rem;
    line-height: 1.22;
    color: var(--gray-900);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pillar-card {
    padding: 26px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--radius-sm);
    font-size: 1.35rem;
}

.pillar-icon.school {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.1);
}

.pillar-icon.government {
    color: var(--accent-green);
    background: var(--surface-green);
}

.pillar-icon.business {
    color: var(--accent-gold);
    background: var(--surface-warm);
}

.pillar-card h3 {
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 1.15rem;
}

.pillar-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.about-metrics div {
    padding: 18px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}

.about-metrics strong,
.about-metrics span {
    display: block;
}

.about-metrics strong {
    margin-bottom: 6px;
    color: var(--gray-900);
}

.about-metrics span {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.55;
}

.workflow-section {
    background: linear-gradient(180deg, var(--white) 0%, #eef7ff 100%);
}

.vision-mission::before {
    display: none;
}

.why-choose::before,
.cta::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 68px 68px;
}

.workflow-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: start;
}

.workflow-intro h2 {
    margin-bottom: 18px;
    color: var(--gray-900);
    font-size: 2.6rem;
    line-height: 1.18;
}

.workflow-intro p {
    margin-bottom: 28px;
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.8;
}

.workflow-steps {
    display: grid;
    gap: 16px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 26px;
    background: var(--white);
    border: 1px solid rgba(0, 102, 204, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.workflow-step > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.08);
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.workflow-step h3 {
    margin-bottom: 8px;
    color: var(--gray-900);
    font-size: 1.15rem;
}

.workflow-step p {
    color: var(--gray-500);
    line-height: 1.65;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(245, 158, 11, 0.42);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text,
    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: block;
    }

    .dashboard-preview-enhanced {
        margin: 0 auto;
    }

    .pillars-header,
    .workflow-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 104px 0 64px;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-stats,
    .pillars-grid,
    .about-metrics {
        grid-template-columns: 1fr;
    }

    .dashboard-preview-enhanced {
        padding: 18px;
    }

    .workflow-row {
        grid-template-columns: 38px 1fr;
    }

    .workflow-row .workflow-state {
        grid-column: 2;
        justify-self: start;
    }

    .pillars-header h2,
    .workflow-intro h2 {
        font-size: 2rem;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn,
    .hero-buttons {
        width: 100%;
    }

    .hero-stats {
        align-items: stretch;
    }

    .hero-stat {
        padding: 16px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-sm);
    }
}

/* Product detail pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 142px 0 88px;
    background: linear-gradient(135deg, rgba(6, 21, 49, 0.98) 0%, rgba(0, 76, 144, 0.96) 56%, rgba(15, 118, 110, 0.94) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.8;
}

.page-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: 56px;
    align-items: center;
}

.page-hero-copy h1 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 3.65rem;
    line-height: 1.1;
}

.page-hero-copy p {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.18rem;
    line-height: 1.75;
}

.page-hero .section-kicker {
    color: #93e9ff;
}

.product-hero-image {
    position: relative;
}

.product-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.product-detail-section {
    background: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
    gap: 46px;
    align-items: start;
}

.product-detail-main h2 {
    margin-bottom: 18px;
    color: var(--gray-900);
    font-size: 2.35rem;
    line-height: 1.18;
}

.product-detail-main > p {
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 1.08rem;
    line-height: 1.8;
}

.product-detail-main > p:last-of-type {
    margin-bottom: 32px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.capability-item,
.outcome-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
}

.capability-item i {
    color: var(--accent-green);
}

.capability-item span,
.outcome-item span {
    color: var(--gray-700);
    font-weight: 600;
}

.product-detail-side {
    padding: 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.product-detail-side h3 {
    margin-bottom: 18px;
    color: var(--gray-900);
    font-size: 1.35rem;
}

.outcome-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.outcome-item {
    background: var(--surface-green);
}

.outcome-item i {
    color: var(--accent-green);
}

.product-detail-side .btn {
    width: 100%;
}

.product-modules-section {
    background: var(--gray-100);
}

.product-module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-module-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.module-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.08);
    border-radius: var(--radius-sm);
}

.product-module-card h3 {
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.product-module-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.product-fit-section {
    background: var(--white);
}

.product-fit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
    gap: 52px;
    align-items: start;
}

.product-fit-copy h2 {
    margin-bottom: 18px;
    color: var(--gray-900);
    font-size: 2.25rem;
    line-height: 1.2;
}

.product-fit-copy p {
    margin-bottom: 26px;
    color: var(--gray-500);
    font-size: 1.06rem;
    line-height: 1.8;
}

.fit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fit-list span {
    padding: 10px 14px;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.product-flow {
    padding: 28px;
    background: var(--gray-900);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.product-flow h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.35rem;
}

.product-flow-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-flow-step span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93e9ff;
    background: rgba(147, 233, 255, 0.12);
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.product-flow-step p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.product-client-section {
    background: linear-gradient(180deg, #eef7ff 0%, var(--white) 100%);
}

.product-client-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.product-client-heading h2 {
    margin-bottom: 14px;
    color: var(--gray-900);
    font-size: 2.35rem;
    line-height: 1.18;
}

.product-client-heading p {
    color: var(--gray-500);
    font-size: 1.08rem;
    line-height: 1.75;
}

.product-client-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.product-client-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    gap: 36px;
    padding: 42px;
    background: var(--white);
    border: 1px solid rgba(0, 102, 204, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.product-client-quote h2 {
    margin-bottom: 18px;
    color: var(--gray-900);
    font-size: 2.2rem;
    line-height: 1.18;
}

.product-client-quote p {
    margin-bottom: 24px;
    color: var(--gray-700);
    font-size: 1.18rem;
    line-height: 1.75;
}

.product-client-name strong,
.product-client-name span {
    display: block;
}

.product-client-name strong {
    color: var(--gray-900);
    font-size: 1.05rem;
}

.product-client-name span {
    color: var(--gray-500);
}

.product-client-highlights {
    display: grid;
    gap: 12px;
    align-content: center;
}

.client-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    color: var(--gray-900);
    background: var(--surface-green);
    border: 1px solid rgba(22, 163, 74, 0.14);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.client-highlight i {
    color: var(--accent-green);
}

.related-products {
    background: var(--gray-100);
}

.related-product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.related-product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 70px;
    padding: 18px;
    color: var(--gray-900);
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-product-link:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-product-link i {
    color: var(--primary-blue);
}

@media (max-width: 1100px) {
    .page-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-fit-grid {
        grid-template-columns: 1fr;
    }

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

    .page-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero .hero-buttons {
        justify-content: center;
    }

    .related-product-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 112px 0 66px;
    }

    .page-hero-copy h1 {
        font-size: 2.45rem;
    }

    .page-hero-copy p {
        font-size: 1.05rem;
    }

    .capability-grid,
    .product-module-grid,
    .related-product-list {
        grid-template-columns: 1fr;
    }

    .product-detail-main h2 {
        font-size: 2rem;
    }

    .product-client-card {
        padding: 26px;
    }

    .product-client-heading h2 {
        font-size: 1.9rem;
    }

    .product-client-quote h2 {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .page-hero .hero-buttons,
    .page-hero .hero-buttons .btn {
        width: 100%;
    }
}
