/* ===== CSS Variables - Vibrant Light Mode ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #4f46e5;
    --accent: #0ea5e9;
    --accent-2: #0d9488;
    --accent-3: #1e40af;
    --orange: #1e3a8a;
    --pink: #6366f1;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #0ea5e9 100%);
    --gradient-warm: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-cool: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    --gradient-text: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-color: 0 10px 40px -10px rgba(37, 99, 235, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.footer .logo-image {
    height: 90px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-color);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.4);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    top: -200px;
    right: -150px;
    animation: float 25s ease-in-out infinite;
}

.hero-shape-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(37, 99, 235, 0.06) 100%);
    bottom: -150px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.06);
    top: 40%;
    left: 25%;
    animation: float 22s ease-in-out infinite;
}

.hero-shape-4,
.hero-shape-5 {
    display: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-particles {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -30px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-20px, 20px) rotate(-5deg) scale(0.95); }
    75% { transform: translate(20px, 10px) rotate(3deg) scale(1.02); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(37, 99, 235, 0.5); }
    50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 20px rgba(37, 99, 235, 0.8); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.gradient-text-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4), 0 10px 40px rgba(37, 99, 235, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 15px 50px rgba(37, 99, 235, 0.4);
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-clients > span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-client-logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-client-logos img {
    height: 32px;
    max-height: 32px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.hero-client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.hero-agency-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agency-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: default;
}

.agency-seal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.seal-abbr {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.seal-name {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
    max-width: 60px;
}

.client-badge {
    padding: 10px 18px;
    background: white;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.client-badge:hover {
    transform: translateY(-3px);
}

.client-badge-blue {
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.client-badge-blue:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border-color: transparent;
}

.client-badge-purple {
    color: #4f46e5;
    border: 2px solid rgba(79, 70, 229, 0.2);
}

.client-badge-purple:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    border-color: transparent;
}

.client-badge-cyan {
    color: #0284c7;
    border: 2px solid rgba(2, 132, 199, 0.2);
}

.client-badge-cyan:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    border-color: transparent;
}

.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 350px;
    height: 350px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    animation: rotate 30s linear infinite;
}

.hero-circle-1 {
    inset: 0;
    border-color: rgba(37, 99, 235, 0.3);
}

.hero-circle-2 {
    inset: 40px;
    border-color: rgba(124, 58, 237, 0.3);
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-circle-3 {
    inset: 80px;
    border-color: rgba(6, 182, 212, 0.3);
    animation-duration: 20s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-center-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 25px 80px rgba(124, 58, 237, 0.5); }
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
    animation: float-card 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.hero-card-1 {
    top: 5%;
    right: 0;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 35%;
    left: -30px;
    animation-delay: 1.5s;
}

.hero-card-3 {
    bottom: 25%;
    right: -20px;
    animation-delay: 3s;
}

.hero-card-4 {
    bottom: 5%;
    left: 20px;
    animation-delay: 4.5s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-card-icon-purple {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.hero-card-icon-cyan {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.hero-card-icon-green {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.hero-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.hero-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-card span {
    font-weight: 600;
    color: var(--text);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
    background: white;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gradient);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(12px); }
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-visual {
    display: grid;
    gap: 24px;
}

.visual-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.visual-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-color);
}

.visual-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.visual-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.visual-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.visual-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Different colors for each service card */
.service-card:nth-child(1):hover { box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2); }
.service-card:nth-child(2):hover { box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2); }
.service-card:nth-child(3):hover { box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2); }
.service-card:nth-child(4):hover { box-shadow: 0 20px 50px rgba(2, 132, 199, 0.2); }

.service-card:nth-child(1)::before { background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 100%); }

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.service-card:nth-child(1) .service-number {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(2) .service-number {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(3) .service-number {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:nth-child(4) .service-number {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: white;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Clients Section ===== */
.clients {
    padding: 120px 0;
    background: var(--bg);
}

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

.client-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.client-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-color);
}

.client-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.client-logo-img {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.client-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.client-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== Partners Section ===== */
.partners {
    padding: 100px 0;
    background: var(--bg-alt);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.partner-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.partner-card.partner-featured {
    border: 2px solid var(--primary);
    position: relative;
}

.partner-card.partner-featured::before {
    content: 'Primary Partner';
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-logo-wrapper {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.partner-logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.partner-info p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
}

.partner-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.partners-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.partners-cta p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ===== Products Section ===== */
.products-section {
    padding: 100px 0;
    background: var(--bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.product-category {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.product-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.product-category > p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
}

.product-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.products-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.products-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.products-cta-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta .btn-primary {
    background: white;
    color: #1e3a8a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    font-weight: 700;
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 1rem;
    color: var(--text);
}

.contact-form-wrapper {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    filter: blur(80px);
}

.footer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    filter: blur(80px);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: white;
    margin-top: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    font-style: italic;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #60a5fa 50%, transparent 100%);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer .logo:hover .logo-image {
    transform: scale(1.02);
    opacity: 0.9;
}

/* ===== Page Header ===== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, #f0f7ff 0%, #faf5ff 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(60px);
}

.page-header-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    filter: blur(60px);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ===== Mission Section ===== */
.mission {
    padding: 120px 0;
    background: var(--bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-color);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.mission-card p {
    color: var(--text-muted);
}

/* ===== Values Section ===== */
.values {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
}

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

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-color);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Timeline Section ===== */
.timeline {
    padding: 120px 0;
    background: var(--bg);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-marker {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px white, var(--shadow-color);
}

.timeline-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
    padding: 120px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #faf5ff 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-choose-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-choose-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.why-choose-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.why-choose-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Services Page ===== */
.services-overview {
    padding: 120px 0;
    background: var(--bg);
}

.cycle-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.cycle-center {
    width: 180px;
    height: 180px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-color);
}

.cycle-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 24px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cycle-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-color);
}

.cycle-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.cycle-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== Services Detail ===== */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.service-lead {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

.service-detail-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-list li strong {
    color: var(--text);
    font-weight: 600;
}

.service-list li span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.service-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-color);
}

.service-icon-large svg {
    width: 80px;
    height: 80px;
    color: white;
}

/* ===== Additional Services ===== */
.additional-services {
    padding: 120px 0;
    background: var(--bg);
}

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

.additional-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.additional-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-color);
}

.additional-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.additional-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.additional-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.additional-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Careers Page ===== */
.why-join {
    padding: 120px 0;
    background: var(--bg);
}

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

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-color);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Positions ===== */
.positions {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.no-positions-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-alt);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border);
}

.no-positions-placeholder .placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-positions-placeholder .placeholder-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.no-positions-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.no-positions-placeholder p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.resume-submission-form {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 40px 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.resume-submission-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}

.resume-submission-form > p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.resume-submission-form .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.resume-submission-form .form-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.resume-submission-form .form-group:has(textarea) {
    grid-column: 1 / -1;
}

.resume-submission-form .btn-full {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .resume-submission-form .contact-form {
        grid-template-columns: 1fr;
    }

    .resume-submission-form .form-row {
        grid-template-columns: 1fr;
    }
}

.position-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.position-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 16px;
}

.position-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.position-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.position-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.position-location svg {
    width: 16px;
    height: 16px;
}

.position-type,
.position-clearance {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary);
}

.position-clearance {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: var(--accent);
}

.position-card > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.position-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.position-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ===== Process ===== */
.process {
    padding: 120px 0;
    background: var(--bg);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 180px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-color);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin-top: 32px;
    border-radius: 3px;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 120px 0;
    background: var(--bg);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-detailed h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.contact-info-detailed > p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-method-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-method-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.contact-method-content a,
.contact-method-content span {
    color: var(--text);
    font-size: 0.9375rem;
}

.contact-method-content a:hover {
    color: var(--primary);
}

.response-time {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.response-time svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.response-time span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-form-container .contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--gradient);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== Map Section ===== */
.map-section {
    height: 400px;
    background: var(--bg-alt);
}

.map-placeholder {
    height: 100%;
    background:
        linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%232563eb' fill-opacity='0.08'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.map-overlay p {
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f7ff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-clients {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .hero-graphic {
        width: 280px;
        height: 280px;
    }

    .hero-center-icon {
        width: 90px;
        height: 90px;
        border-radius: 22px;
    }

    .hero-center-icon svg {
        width: 40px;
        height: 40px;
    }

    .hero-card {
        padding: 12px 16px;
    }

    .hero-card-1 { top: 0; right: 10%; }
    .hero-card-2 { top: 30%; left: 0; }
    .hero-card-3 { bottom: 30%; right: 0; }
    .hero-card-4 { bottom: 0; left: 10%; }

    .about-grid,
    .contact-grid,
    .contact-page-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .values-grid,
    .team-grid,
    .benefits-grid,
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-detail-visual {
        order: -1;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
    }

    .service-icon-large svg {
        width: 60px;
        height: 60px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        color: var(--text);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero-scroll {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-client-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-client-logos img {
        height: 28px !important;
        max-height: 28px !important;
        max-width: 60px !important;
    }

    .hero-agency-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .agency-seal {
        width: 60px;
        height: 60px;
    }

    .seal-abbr {
        font-size: 0.8rem;
    }

    .seal-name {
        font-size: 0.5rem;
    }

    .hero-particles span {
        display: none;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat {
        flex: 1;
        min-width: 100px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-features {
        grid-template-columns: 1fr;
    }

    .partners-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .values-grid,
    .team-grid,
    .benefits-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
    }

    .position-header .btn {
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-client-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-agency-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .agency-seal {
        width: 55px;
        height: 55px;
    }

    .seal-abbr {
        font-size: 0.75rem;
    }

    .seal-name {
        font-size: 0.45rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .cycle-diagram {
        gap: 20px;
    }

    .cycle-center {
        width: 140px;
        height: 140px;
        font-size: 1rem;
    }

    .cycle-item {
        padding: 16px 24px;
    }

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

/* ===== Government Focus Section ===== */
.gov-focus {
    padding: 100px 0;
    background: var(--bg-alt);
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.gov-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gov-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary);
}

.gov-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gov-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.gov-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.gov-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mission Stats */
.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Clickable Position Cards ===== */
a.position-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.position-card-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary);
}

a.position-card-link .btn {
    pointer-events: none;
}

/* ===== Job Detail Page Styles ===== */
.job-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.job-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.back-link:hover {
    gap: 12px;
}

.job-header-content {
    position: relative;
    z-index: 1;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.job-badge svg {
    width: 16px;
    height: 16px;
}

.job-badge.clearance {
    background: var(--gradient);
    color: white;
}

.job-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.job-summary {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Job Content */
.job-content {
    padding: 80px 0;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.job-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.job-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.job-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Job Sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.apply-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.apply-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.apply-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.apply-form .form-group {
    margin-bottom: 20px;
}

.apply-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.apply-form input,
.apply-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg);
}

.apply-form input:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed var(--border);
    border-radius: var(--border-radius);
    background: var(--bg-alt);
    transition: var(--transition);
    text-align: center;
}

.file-upload:hover .file-upload-content {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.file-upload-content svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    margin-bottom: 12px;
}

.file-text {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.file-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.file-upload.has-file .file-upload-content {
    border-color: var(--accent-2);
    background: rgba(16, 185, 129, 0.05);
}

.file-name {
    font-weight: 500;
    color: var(--accent-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Job Info Card */
.job-info-card,
.benefits-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
}

.job-info-card h3,
.benefits-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.job-info-list {
    list-style: none;
}

.job-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.job-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.info-value {
    font-weight: 600;
    color: var(--text);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
}

.benefits-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-2);
    flex-shrink: 0;
}

/* Responsive Job Page */
@media (max-width: 1024px) {
    .job-grid {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: static;
    }

    .gov-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .job-header {
        padding: 140px 0 60px;
    }

    .job-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission-stats {
        flex-direction: column;
        gap: 24px;
        text-align: left;
    }

    .stat-item {
        text-align: left;
    }
}

/* ===== Business Credentials Section ===== */
.credentials {
    padding: 100px 0;
    background: var(--bg);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.credential-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-color);
    border-color: var(--primary);
}

.credential-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.credential-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.credential-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.credential-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Monaco', 'Consolas', monospace;
    margin-bottom: 8px;
}

.credential-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* NAICS Section */
.naics-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--border-radius-lg);
}

.naics-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

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

.naics-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.naics-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.naics-code {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Monaco', 'Consolas', monospace;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
}

.naics-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.naics-item.naics-featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-color: var(--primary);
}

.naics-item.naics-featured .naics-code {
    background: var(--gradient);
    color: white;
}

.naics-item.naics-featured .naics-desc {
    color: var(--text);
    font-weight: 500;
}

/* Certifications Section */
.certifications-section {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
}

.certifications-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.certification-badge:hover {
    border-color: var(--accent-2);
    background: rgba(16, 185, 129, 0.05);
}

.certification-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-2);
}

.certification-badge.certification-featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border-color: var(--primary);
}

.certification-badge.certification-featured svg {
    stroke: var(--primary);
}

.certification-badge.certification-featured span {
    font-weight: 600;
    color: var(--primary);
}

/* Responsive Credentials */
@media (max-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .naics-grid {
        grid-template-columns: 1fr;
    }

    .naics-section,
    .certifications-section {
        padding: 24px;
    }

    .certifications-grid {
        flex-direction: column;
    }

    .certification-badge {
        justify-content: center;
    }
}

/* ===== Blog Page Styles ===== */
.blog-featured {
    padding: 80px 0;
    background: var(--bg);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.featured-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.featured-image-placeholder,
.blog-image-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-placeholder svg,
.blog-image-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: rgba(255, 255, 255, 0.5);
}

.blog-image-placeholder svg {
    width: 50px;
    height: 50px;
}

.featured-content .post-meta {
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.post-category {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.post-date,
.post-read-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.read-more svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.featured-post:hover .read-more {
    gap: 12px;
}

.featured-post:hover .read-more svg {
    transform: translateX(4px);
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.blog-card-image {
    overflow: hidden;
}

.blog-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content .post-meta {
    margin-bottom: 16px;
}

.blog-card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-content .read-more {
    margin-top: auto;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-number:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 8px;
}

@media (max-width: 768px) {
    .blog-pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-btn {
        padding: 12px;
    }
}

/* Blog CTA */
.blog-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.blog-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn-primary {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
}

.newsletter-form .btn-primary:hover {
    background: #f1f5f9;
}

/* Blog Post Page */
.blog-post-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-post-header .container {
    max-width: 800px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 32px;
    transition: var(--transition);
}


.back-to-blog:hover {
    color: var(--primary);
}

.back-to-blog svg {
    width: 18px;
    height: 18px;
}

.blog-post-header .post-meta {
    margin-bottom: 24px;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Blog Post Featured Image */
.blog-post-hero {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-post-hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.blog-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-hero-placeholder.procurement {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
}

.blog-hero-placeholder.tech-refresh {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
}

.blog-hero-placeholder.gsa-contracts {
    background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 50%, #6366f1 100%);
}

.blog-hero-placeholder.cybersecurity {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
}

.blog-hero-placeholder.partnerships {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
}

.blog-hero-placeholder::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.blog-hero-placeholder::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: 10%;
}

.blog-hero-placeholder svg {
    width: 120px;
    height: 120px;
    stroke: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
}

.blog-post-content .container {
    max-width: 800px;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
}

.post-body .lead {
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.post-body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    margin: 48px 0 20px;
}

.post-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin: 36px 0 16px;
}

.post-body h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
}

.post-body p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.post-body li {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.post-body li strong {
    color: var(--text);
}

.post-body a.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.post-body a.text-link:hover {
    border-bottom-color: var(--primary);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    margin: 32px 0;
}

.info-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px;
}

.info-box ul {
    margin-bottom: 0;
}

.info-box li {
    color: var(--text);
}

/* Quote Box */
.quote-box {
    background: var(--bg-alt);
    border-left: 4px solid var(--primary);
    padding: 32px 40px;
    margin: 40px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quote-box blockquote {
    font-size: 1.25rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-tags span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.post-tags a {
    background: var(--bg-alt);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.post-tags a:hover {
    background: var(--primary);
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-share span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.post-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.post-share a:hover {
    background: var(--primary);
    color: white;
}

.post-share a svg {
    width: 18px;
    height: 18px;
}

/* Related Posts */
.related-posts {
    max-width: 800px;
    margin: 60px auto 0;
}

.related-posts h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

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

.related-post-card {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.related-post-card:hover {
    border-color: var(--primary);
    background: white;
}

.related-post-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-post-card .post-date {
    font-size: 0.8125rem;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-featured,
    .blog-grid-section {
        padding: 60px 0;
    }

    .blog-post-header {
        padding: 120px 0 60px;
    }

    .blog-post-header h1 {
        font-size: 1.75rem;
    }

    .post-excerpt {
        font-size: 1.0625rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-body h2 {
        font-size: 1.5rem;
    }

    .post-body h3 {
        font-size: 1.25rem;
    }

    .info-box,
    .quote-box {
        padding: 24px;
    }

    .quote-box blockquote {
        font-size: 1.0625rem;
    }
}

/* ===== Share Buttons ===== */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.share-buttons svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex-shrink: 0;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #005885;
}

.share-twitter {
    background: #000;
    color: white;
}

.share-twitter:hover {
    background: #333;
}

.share-copy {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.share-copy:hover {
    background: var(--border);
}

@media (max-width: 480px) {
    .share-buttons {
        justify-content: flex-start;
    }

    .share-btn {
        padding: 8px 12px;
        font-size: 0.8125rem;
    }

    .share-btn svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
        min-width: 14px !important;
        min-height: 14px !important;
    }

    .share-buttons svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
        min-width: 14px !important;
        min-height: 14px !important;
    }
}
