/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --accent-color: #06b6d4;
    --text-color: #111827;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-dark: #0a0f1e;
    --bg-dark-2: #111827;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(79,70,229,0.15), 0 8px 16px rgba(0,0,0,0.08);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(-45deg, #0a0f1e, #1a0b2e, #0f1a35, #0d1117);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #a5b4fc 55%, #67e8f9 100%);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
    background: rgba(79,70,229,0.06);
}

.nav-link.cta-button {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.nav-link.cta-button:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
}

.navbar.scrolled .nav-link.cta-button {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.navbar.scrolled .nav-link.cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 210px;
    padding: 0.5rem;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
    background-color: rgba(79,70,229,0.06);
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-toggle span {
    background-color: var(--text-color);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradient-shift 18s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99,102,241,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Glowing orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: var(--nav-height) 0 4rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    animation: fade-in-up 1s ease 1s both;
}

.scroll-indicator svg {
    animation: bounce 2.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.4);
    opacity: 0.92;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    transition: opacity 0.65s ease;
}

.animate-fade.is-visible {
    opacity: 1;
}

/* Staggered delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   SECTIONS
   ============================================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-description {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.75;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-us {
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 500;
}

/* ============================================================
   PROVEN OUTCOMES
   ============================================================ */
.proven-outcomes {
    background-color: var(--bg-white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.outcome-card {
    padding: 1.5rem 1.75rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.outcome-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79,70,229,0.2);
}

.outcome-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.outcome-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79,70,229,0.15);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-color);
    letter-spacing: -0.015em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 0.5rem;
}

.service-pillar-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(79,70,229,0.08);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    border: 1px solid rgba(79,70,229,0.15);
}

.service-sublist {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.service-sublist li {
    padding: 0.3rem 0;
}

.service-sublist li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-sublist li a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-sublist li a:hover {
    color: var(--primary-color);
}

/* ============================================================
   INDUSTRIES PREVIEW
   ============================================================ */
/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--bg-dark-2);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.trust-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.875rem;
}

.trust-bar-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.trust-item {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    padding: 0.3rem 0.875rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: color 0.2s, border-color 0.2s;
}

.trust-item:hover {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.25);
}

/* ============================================================
   DEMO PAGE — Agenda & Trust
   ============================================================ */
.demo-agenda {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.demo-agenda-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.demo-step {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.demo-agenda-item h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.demo-agenda-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.demo-trust {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.demo-trust h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.industries-preview {
    background-color: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.industry-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ============================================================
   PARTNERS PREVIEW
   ============================================================ */
.partners-preview {
    background-color: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-light);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.partner-logo:hover {
    border-color: rgba(79,70,229,0.3);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradient-shift 18s ease infinite;
    color: white;
    padding: calc(var(--nav-height) + 4rem) 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99,102,241,0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    position: relative;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SERVICES DETAIL (inner pages)
   ============================================================ */
.services-detail {
    padding: 5rem 0;
}

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

.service-detail-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-detail-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.015em;
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

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

/* ============================================================
   PLATFORM PAGE — Pain Callout
   ============================================================ */
.pain-callout {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    margin: 2.5rem 0;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.pain-callout-bar {
    width: 4px;
    flex-shrink: 0;
    background: var(--gradient-primary);
}

.pain-callout-body {
    padding: 1.75rem 1.5rem;
}

.pain-callout-quote {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.pain-callout-sub {
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================================
   PLATFORM PAGE — Capability card outcome line
   ============================================================ */
.platform-outcome-line {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem !important;
}

/* ============================================================
   PLATFORM PAGE — Knowledge Center Section
   ============================================================ */
.knowledge-center-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.knowledge-center-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.knowledge-center-text p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.knowledge-center-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.kc-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.kc-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.kc-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.kc-stat-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.kc-stat-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .knowledge-center-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .knowledge-center-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .knowledge-center-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-stack {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.tech-item {
    padding: 1.25rem 1rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.tech-item:hover {
    border-color: rgba(79,70,229,0.3);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================================
   INDUSTRIES DETAIL
   ============================================================ */
.industries-detail {
    padding: 5rem 0;
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.industry-detail-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.industry-detail-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.industry-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.industry-features {
    list-style: none;
}

.industry-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.industry-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.3;
}

/* ============================================================
   PARTNERS DETAIL
   ============================================================ */
.partners-detail {
    padding: 5rem 0;
}

.partners-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-detail-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.partner-detail-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.partner-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 0.9375rem;
}

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

.partner-benefits li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.partner-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certifications {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.cert-item {
    padding: 1.25rem;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-color);
    border: 1.5px solid rgba(79,70,229,0.2);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cert-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   TRAINING PROGRAMS
   ============================================================ */
.training-programs {
    padding: 5rem 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.training-card {
    background-color: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.training-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.training-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.training-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.training-topics {
    list-style: none;
    margin-bottom: 1.5rem;
}

.training-topics li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.training-topics li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.3;
}

.training-duration {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   TRAINING APPROACH
   ============================================================ */
.training-approach {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.approach-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.approach-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* ============================================================
   ABOUT
   ============================================================ */
.about-content {
    padding: 5rem 0;
}

.about-text {
    max-width: 860px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.differentiator-card {
    background-color: var(--bg-light);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.differentiator-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.differentiator-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-color);
}

.differentiator-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.approach-list {
    list-style: none;
    margin: 2rem 0;
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
}

.approach-list li {
    padding: 0.875rem 0;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: -1.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

/* ============================================================
   STATS SECTION (About page)
   ============================================================ */
.stats-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
}

.stats-section .stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.stats-section .stat-label {
    color: rgba(255,255,255,0.55);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--bg-dark);
    position: relative;
    color: white;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(79,70,229,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    position: relative;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta-banner p {
    position: relative;
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.025em;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.75rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-contact h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.newsletter p {
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.07);
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-form button {
    padding: 0.7rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.35);
    font-size: 0.875rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: left;
        transition: left 0.3s;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 1.5rem;
        gap: 0.25rem;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }

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

    .nav-link {
        color: var(--text-color);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
    }

    .nav-link.cta-button {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        text-align: center;
        margin-top: 0.5rem;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0.25rem;
        margin-left: 1rem;
        padding: 0;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.125rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 3.5rem 0;
    }
}
