/* EdOneSolutions - Professional Design System */

:root {
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --emerald-500: #10b981;
    --red-500: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--navy-900);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-900);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 52px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--navy-900);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 58px;
    margin-bottom: 28px;
    color: var(--navy-900);
    animation: fadeInUp 0.6s ease-out 0.1s both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 21px;
    color: var(--slate-600);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Content Sections */
.content {
    padding: 80px 0;
    background: var(--white);
}

.content-section {
    padding: 120px 0;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--navy-900);
}

.section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--navy-900);
}

.section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--navy-900);
}

.section p {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.feature-card {
    padding: 40px;
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-left-width: 6px;
}

.feature-icon {
    width: auto;
    min-width: 100px;
    max-width: 160px;
    height: 64px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    border-radius: 14px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.feature-card p {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Info Boxes */
.info-box {
    background: var(--slate-50);
    padding: 48px;
    border-radius: 16px;
    margin: 48px 0;
    border: 1px solid var(--slate-200);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.platform-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.platform-card h4 {
    font-size: 20px;
    color: var(--orange-500);
    margin-bottom: 16px;
}

.platform-card:nth-child(1) {
    border-left-color: #0078D4;
}

.platform-card:nth-child(1) h4 {
    color: #0078D4;
}

.platform-card:nth-child(2) {
    border-left-color: #FF9900;
}

.platform-card:nth-child(2) h4 {
    color: #FF9900;
}

.platform-card:nth-child(3) {
    border-left-color: #4285F4;
}

.platform-card:nth-child(3) h4 {
    color: #4285F4;
}

.platform-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-500);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--navy-900);
}

.section-description {
    font-size: 20px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Buttons */
.btn-primary {
    padding: 16px 32px;
    background: var(--orange-500);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    background: var(--white);
    color: var(--navy-900);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid var(--slate-300);
    display: inline-block;
}

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

/* Cards */
.card {
    padding: 40px;
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy-900);
}

.card p {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
}

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

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

/* Footer */
footer {
    background: #0a1628;
    color: var(--slate-300);
    padding: 80px 0 40px;
}

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

.footer-brand {
    max-width: 380px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: #8b9bb4;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #8b9bb4;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6b7b94;
}

.footer-bottom p {
    margin: 0;
}

/* Capability Sections */
.capability-section {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
}

.capability-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 60px;
    letter-spacing: -0.03em;
}

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

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

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

.capability-item {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    overflow: hidden;
}

.capability-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--orange-500);
}

.capability-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    text-align: left;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    padding: 24px 32px;
}

.capability-item ul {
    list-style: none;
    padding: 32px;
    display: grid;
    gap: 12px;
}

.capability-item li {
    font-size: 16px;
    color: var(--slate-600);
    padding-left: 0;
    line-height: 1.7;
}

.capability-item li::before {
    content: "•";
    color: var(--orange-500);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

/* Stats/Metrics Section */
.stats-section {
    background: var(--slate-50);
    padding: 80px 0;
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--orange-500);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--slate-600);
    font-weight: 500;
}

/* Modern List Style */
.modern-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.modern-list li {
    background: var(--white);
    padding: 24px 32px;
    margin-bottom: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-600);
    transition: all 0.3s ease;
}

.modern-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.modern-list li strong {
    color: var(--navy-900);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* Content Wrapper for Centered Layout */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
}

/* Enhanced Section Styling */
.section {
    margin-bottom: 100px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--slate-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, #1a2a4a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 20px;
    color: #b8c5d9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--orange-500);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    background: var(--orange-600);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

/* Job Cards (Careers Page) */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

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

.job-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--slate-200);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transition: height 0.3s ease;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
    border-left-width: 6px;
}

.job-card:hover::before {
    height: 100%;
}

.job-card h3 {
    font-size: 22px;
    color: var(--navy-900);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.job-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.job-location,
.job-type {
    font-size: 14px;
    color: var(--slate-600);
    padding: 6px 12px;
    background: var(--slate-100);
    border-radius: 6px;
    font-weight: 500;
}

.job-location::before {
    content: '📍 ';
    margin-right: 4px;
}

.job-type::before {
    content: '⏰ ';
    margin-right: 4px;
}

.job-description {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.job-requirements {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--slate-50);
    border-radius: 10px;
    border-left: 3px solid var(--orange-500);
}

.job-requirements strong {
    color: var(--navy-900);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.job-apply-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.job-apply-btn:hover {
    background: linear-gradient(135deg, var(--orange-600) 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--slate-50);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left-width: 6px;
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--navy-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* Team & Company Pages */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.team-card {
    background: var(--slate-50);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-left-width: 6px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--navy-900);
}

.team-card p strong {
    color: var(--orange-500);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy-900);
}

/* Support Pages (Help Desk) */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--emerald-500);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.emergency-section {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    color: var(--white);
}

.emergency-section h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
}

.emergency-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 28px;
}

.emergency-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--white);
    color: #dc2626;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.response-times {
    margin: 80px 0;
}

.response-times h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--navy-900);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.response-item {
    background: var(--slate-50);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.response-item:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.response-time {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-500);
    margin-bottom: 12px;
}

.response-item p {
    font-size: 16px;
    color: var(--slate-600);
    margin-bottom: 16px;
}

.priority-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.priority-badge.critical {
    background: #fee2e2;
    color: #dc2626;
}

.priority-badge.high {
    background: #fed7aa;
    color: #ea580c;
}

.priority-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.priority-badge.low {
    background: #dbeafe;
    color: #2563eb;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.support-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

.support-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    border-radius: 20px;
    margin: 0 auto 24px;
    position: relative;
    box-shadow:
        0 4px 14px rgba(249, 115, 22, 0.25),
        0 2px 6px rgba(249, 115, 22, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.support-icon::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 24px rgba(249, 115, 22, 0.35),
        0 4px 12px rgba(249, 115, 22, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.support-card:hover .support-icon::before {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 22px;
    color: var(--navy-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.support-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.support-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--slate-100);
    color: var(--navy-900);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.support-btn:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: translateY(-2px);
}

/* Community Forum */
.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.forum-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.forum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

.forum-card h3 {
    font-size: 22px;
    color: var(--navy-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.forum-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-count {
    font-size: 14px;
    color: var(--orange-500);
    font-weight: 600;
}

/* Training & Resources */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.course-card {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.course-header {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    padding: 32px;
    color: var(--white);
}

.course-level {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.course-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.course-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.course-body {
    padding: 32px;
}

.course-body p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-topics {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-topics li {
    font-size: 14px;
    color: var(--slate-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-200);
}

.course-topics li:last-child {
    border-bottom: none;
}

.course-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--orange-500);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    margin-top: 24px;
}

.course-btn:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
}

/* Documentation Layout */
.doc-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-top: 40px;
}

.doc-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.doc-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy-900);
}

.doc-sidebar ul {
    list-style: none;
    padding: 0;
}

.doc-sidebar li {
    margin-bottom: 8px;
}

.doc-sidebar a {
    display: block;
    padding: 10px 16px;
    color: var(--slate-600);
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.doc-sidebar a:hover,
.doc-sidebar a.active {
    background: var(--slate-50);
    color: var(--navy-900);
}

.doc-main {
    max-width: 800px;
}

.doc-section {
    margin-bottom: 80px;
}

.doc-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--navy-900);
}

.doc-section h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--navy-900);
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
    margin: 24px 0;
}

.api-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.api-table th {
    background: var(--slate-100);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--navy-900);
    border-bottom: 2px solid var(--slate-300);
}

.api-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--slate-200);
    color: var(--slate-600);
}

.api-table tr:hover {
    background: var(--slate-50);
}

/* Legal Pages (Terms, Privacy) */
.legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.legal-sidebar h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--navy-900);
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 8px;
}

.legal-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--slate-600);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: var(--slate-50);
    color: var(--navy-900);
    border-left-color: var(--orange-500);
}

.legal-content {
    max-width: 900px;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-200);
}

.legal-content .last-updated {
    background: var(--slate-50);
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 48px;
    font-size: 15px;
    color: var(--slate-600);
    border-left: 4px solid var(--orange-500);
}

.legal-content .last-updated strong {
    color: var(--navy-900);
    font-weight: 600;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--navy-900);
    margin-top: 64px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--slate-200);
    scroll-margin-top: 120px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--navy-900);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.legal-content ul li::marker {
    color: var(--orange-500);
}

.legal-content strong {
    color: var(--navy-900);
    font-weight: 600;
}

/* Terms content - fallback for old class */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-200);
}

.terms-content p:first-child {
    background: var(--slate-50);
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 48px;
    font-size: 15px;
    color: var(--slate-600);
    border-left: 4px solid var(--orange-500);
}

.terms-content h2 {
    font-size: 28px;
    color: var(--navy-900);
    margin-top: 64px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--slate-200);
}

.terms-content h2:first-of-type {
    margin-top: 0;
}

.terms-content h3 {
    font-size: 20px;
    color: var(--navy-900);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.terms-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.terms-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 12px;
}

.terms-content ul li::marker {
    color: var(--orange-500);
}

.terms-content strong {
    color: var(--navy-900);
    font-weight: 600;
}

/* Cookie Consent */
#cookieConsent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-content p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-content a {
    color: var(--orange-500);
    text-decoration: none;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
}

.cookie-accept {
    background: var(--navy-900);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--navy-800);
}

.cookie-decline {
    background: var(--slate-100);
    color: var(--slate-700);
}

.cookie-decline:hover {
    background: var(--slate-200);
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Legal & Documentation pages on mobile */
    .legal-container,
    .doc-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .legal-sidebar,
    .doc-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 32px;
    }

    .legal-content,
    .terms-content {
        padding: 32px 24px;
    }
}

/* Visual Showcase Sections */
.showcase-section {
    padding: 100px 0;
    background: var(--white);
}

.showcase-section.alt {
    background: var(--slate-50);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.showcase-image.gradient-orange {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.showcase-image.gradient-purple {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.showcase-image.gradient-emerald {
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.showcase-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 18px;
    text-align: center;
}

.showcase-content h2 {
    font-size: 42px;
    color: var(--navy-900);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.showcase-content .subtitle {
    font-size: 20px;
    color: var(--slate-600);
    margin-bottom: 48px;
    line-height: 1.6;
}

.showcase-cards {
    display: grid;
    gap: 20px;
}

.showcase-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.showcase-section.alt .showcase-card {
    background: var(--white);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--orange-500);
}

.showcase-card h4 {
    font-size: 20px;
    color: var(--navy-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-card h4::before {
    content: "→";
    color: var(--orange-500);
    font-weight: 700;
    font-size: 24px;
}

.showcase-card p {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.6;
}

/* Reverse layout for alternating sections */
.showcase-container.reverse {
    grid-template-columns: 1fr 1fr;
}

.showcase-container.reverse .showcase-image {
    order: 2;
}

.showcase-container.reverse .showcase-content {
    order: 1;
}

/* Integration Logos Grid */
.integration-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin: 48px 0;
}

.integration-logo {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    padding: 12px;
}

.integration-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--orange-500);
}

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

/* Responsive */
@media (max-width: 968px) {
    .showcase-container,
    .showcase-container.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-container.reverse .showcase-image,
    .showcase-container.reverse .showcase-content {
        order: initial;
    }

    .showcase-image {
        min-height: 400px;
        padding: 40px;
    }

    .showcase-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .showcase-section {
        padding: 60px 0;
    }

    .showcase-content h2 {
        font-size: 28px;
    }

    .showcase-content .subtitle {
        font-size: 18px;
    }

    .showcase-image {
        min-height: 300px;
        padding: 30px;
    }
}
