/* ============================================
   PRIME INTEGRATE - Modern Tech Minimal
   Premium Dark Theme with Blue/Teal Accents
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0B0F1A;
    --bg-secondary: #0F1318;
    --bg-card: #141820;
    --bg-card-alt: #1A1F2A;
    --border-default: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #6B7280;
    
    --accent-blue: #3B82F6;
    --accent-blue-light: #60A5FA;
    --accent-teal: #14B8A6;
    --accent-teal-light: #2DD4BF;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-width: 1200px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-default);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.top-bar-left a {
    color: var(--text-secondary);
    transition: color 0.2s var(--ease);
}

.top-bar-left a:hover {
    color: var(--accent-blue);
}

.separator {
    color: var(--text-muted);
}

.top-bar-right .btn {
    padding: 8px 16px;
    font-size: 13px;
    height: auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-subtext {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-small {
    padding: 10px 18px;
    font-size: 13px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-glow {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--accent-blue);
    margin-bottom: 16px;
    max-width: 520px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 520px;
}

.hero-subdescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.hero-trust-line p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual Card */
.hero-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-default);
}

.dashboard-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent-teal);
    font-weight: 600;
}

.dashboard-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.workflow-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.workflow-arrow {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-arrow svg {
    width: 20px;
    height: 20px;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.what-we-do {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-default);
    border-bottom: 1px solid var(--border-default);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.what-we-do-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.what-we-do-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.what-we-do-card h3 {
    margin-bottom: 14px;
    color: var(--text-primary);
}

.what-we-do-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   AI AGENTS SECTION
   ============================================ */
.ai-agents {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.ai-agents-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.ai-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.ai-service-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease);
}

.ai-service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ai-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.ai-service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ai-service-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.ai-service-capabilities {
    margin-bottom: 20px;
}

.ai-service-capabilities h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-service-capabilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-service-capabilities li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.ai-service-capabilities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

.ai-service-result {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.ai-service-result strong {
    color: var(--text-primary);
}

.ai-additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.ai-additional-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}

.ai-additional-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.ai-additional-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ai-additional-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.why-choose-ai {
    margin-bottom: 64px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
}

.why-choose-item svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

.why-choose-item span {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.how-it-works-ai {
    margin-bottom: 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-it-works-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.how-it-works-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.how-it-works-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
    position: relative;
}

.service-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-alt);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.service-card-featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
}

.service-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.featured-badge {
    position: absolute;
    top: -11px;
    right: 20px;
    background: var(--accent-blue);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.featured-link:hover {
    color: var(--accent-blue-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}

.process-step:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.process-step h3 {
    margin-bottom: 14px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.process-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-note p {
    margin: 0;
    font-size: 15px;
}

.process-note strong {
    color: var(--text-primary);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results {
    padding: var(--section-padding) 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.result-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.result-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.result-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.results-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.pricing-card-featured {
    border-color: var(--accent-blue);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, var(--bg-card) 100%);
}

.recommended-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features p {
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border-default);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
}

.about .section-title {
    font-size: clamp(24px, 3vw, 32px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 56px;
}

.why-choose-us,
.values-section {
    margin-bottom: 48px;
}

.why-choose-us:last-child,
.values-section:last-child {
    margin-bottom: 0;
}

.why-choose-us h3,
.values-section h3 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 22px;
}

.about-features,
.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-features li,
.values-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    transition: all 0.2s var(--ease);
}

.about-features li:hover,
.values-list li:hover {
    border-color: var(--border-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact .section-title {
    font-size: clamp(22px, 2.5vw, 28px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    height: fit-content;
}

.contact-info-card h3 {
    margin-bottom: 28px;
    font-size: 20px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item a {
    color: var(--accent-blue);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.contact-item a:hover {
    color: var(--accent-blue-light);
}

.contact-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-default);
    line-height: 1.6;
}

.contact-form {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: 22px;
}

.form-group:last-of-type {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--bg-card);
}

.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' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}

.contact-form .btn {
    width: 100%;
}

.jotform-wrapper {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    min-height: 539px;
}

.jotform-wrapper iframe {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.meeting-link {
    color: var(--accent-blue);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s var(--ease);
    text-decoration: none;
}

.meeting-link:hover {
    color: var(--accent-blue-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-default);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.footer-logo .brand-name {
    font-size: 16px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}

.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-default);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-right {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .jotform-wrapper {
        padding: 24px;
        min-height: 500px;
    }

    .jotform-wrapper iframe {
        height: 500px;
        min-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .top-bar {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-default);
        padding: 20px;
        gap: 4px;
        z-index: 10;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.active a {
        padding: 14px 16px;
    }

    .brand-subtext {
        display: none;
    }

    .brand-name {
        font-size: 16px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .nav {
        height: 64px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-visual-card {
        padding: 24px;
    }

    .what-we-do-grid,
    .services-grid,
    .process-timeline,
    .results-grid,
    .pricing-grid,
    .ai-service-grid,
    .ai-additional-grid,
    .why-choose-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .about-features,
    .values-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .page-subtitle {
        padding: 0 8px;
    }

    .newsletter-box {
        padding: 36px 28px;
    }

    .contact-page-content {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-subdescription {
        font-size: 15px;
    }

    .page-header {
        padding: 56px 0 36px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .subsection-title {
        font-size: 24px;
    }

    .ai-service-card {
        padding: 32px 24px;
    }

    .service-detail,
    .case-study-card,
    .team-card,
    .workforce-card {
        padding: 28px 24px;
    }

    .process-step-detailed {
        padding: 32px 0;
    }

    .jotform-wrapper {
        padding: 20px;
        min-height: 450px;
    }

    .jotform-wrapper iframe {
        height: 450px;
        min-width: 100%;
    }

    .how-it-works-step {
        padding: 24px 20px;
    }

    .btn {
        padding: 14px 24px;
    }

    .nav {
        height: 60px;
    }

    .nav-brand {
        max-width: 70%;
    }

    .btn-large {
        padding: 16px 28px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-line {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .service-card,
    .process-step,
    .result-card,
    .pricing-card {
        padding: 28px 24px;
    }

    .contact-info-card,
    .contact-form {
        padding: 28px 24px;
    }
}

/* ============================================
   MULTI-PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-default);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Active nav link */
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-overview {
    padding: var(--section-padding) 0;
}

.service-detail {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    transition: all 0.3s var(--ease);
}

.service-detail:hover {
    border-color: var(--border-light);
}

.service-detail-featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, var(--bg-card) 100%);
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-blue);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-detail h2 {
    margin-bottom: 16px;
    font-size: 28px;
}

.service-summary {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 28px;
    color: var(--text-primary);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-default);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 600;
}

.ideal-for {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

/* ============================================
   PROCESS PAGE
   ============================================ */
.process-detailed {
    padding: var(--section-padding) 0;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-default);
}

.process-step-detailed:last-child {
    border-bottom: none;
}

.process-step-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.process-step-content h2 {
    margin-bottom: 8px;
}

.process-duration {
    font-size: 14px;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.process-description {
    font-size: 17px;
    margin-bottom: 28px;
}

.process-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.process-step-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.process-step-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.process-step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.process-output {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.process-output strong {
    color: var(--text-primary);
}

/* What You Get Section */
.what-you-get {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deliverable-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
}

.deliverable-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.deliverable-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.deliverable-card p {
    font-size: 14px;
    margin: 0;
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-list {
    padding: var(--section-padding) 0;
}

.case-study-card {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

.case-study-header {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-study-industry {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.case-study-label {
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-teal);
}

.case-study-card h2 {
    font-size: 26px;
    margin-bottom: 32px;
}

.case-study-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-study-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-section p {
    font-size: 15px;
    line-height: 1.6;
}

.case-study-results {
    list-style: none;
}

.case-study-results li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.case-study-results strong {
    color: var(--accent-teal);
}

.case-study-stack {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid var(--border-default);
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tags span {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.results-summary {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-content {
    padding: var(--section-padding) 0;
}

.about-main {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Core Promises */
.core-promises {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.promise-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
}

.promise-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.promise-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.promise-card p {
    font-size: 14px;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.why-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    margin: 0;
}

/* Values Section */
.values-section-page {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    margin: 0;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-list {
    padding: var(--section-padding) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.blog-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.blog-card-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.blog-category {
    padding: 4px 12px;
    background: var(--accent-blue);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.blog-link-disabled {
    color: var(--text-muted);
    cursor: default;
    opacity: 0.7;
}

.blog-card.coming-soon {
    opacity: 0.85;
}

.blog-card.coming-soon:hover {
    transform: none;
}

.blog-link:hover {
    color: var(--accent-blue-light);
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
}

.newsletter-box h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.newsletter-box p {
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: var(--section-padding) 0;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-response {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-default);
}

.contact-response h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-response ol {
    padding-left: 20px;
}

.contact-response li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================
   AI WORKFORCE PAGE
   ============================================ */
.ai-workforce-hero {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.ai-workforce-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ai-workforce-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.workforce-benefits {
    padding: var(--section-padding) 0;
}

.workforce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.workforce-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease);
    text-align: center;
}

.workforce-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.workforce-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.workforce-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.workforce-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.agent-teams {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease);
}

.team-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.team-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.team-card > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.team-card li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.team-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

.team-result {
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.team-result strong {
    color: var(--text-primary);
}

.workforce-process {
    padding: var(--section-padding) 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.process-step-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.step-number-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.process-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.process-step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
}

.comparison-card-featured {
    border: 2px solid var(--accent-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-default);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li.positive {
    color: var(--text-primary);
}

.comparison-list li.positive::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 18px;
}

.comparison-list li.negative {
    color: var(--text-muted);
}

.comparison-list li.negative::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   RESPONSIVE - MULTI-PAGE
   ============================================ */
@media (max-width: 1024px) {
    .promises-grid,
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-content {
        grid-template-columns: 1fr;
    }

    .ai-service-grid {
        grid-template-columns: 1fr;
    }

    .ai-additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workforce-grid,
    .teams-grid,
    .process-steps-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-detail {
        padding: 32px;
    }

    .process-step-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step-number {
        font-size: 48px;
    }

    .promises-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .ai-additional-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .case-study-card {
        padding: 32px;
    }
}
