/**
 * Hybrid Lynx - Global Stylesheet
 * Version: 1.0.0
 * Description: Centralized CSS for consistent styling across all pages
 */

/* ========================================
   1. CSS RESET & BASE
   ======================================== */

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

html, body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Prevent media elements from causing horizontal overflow on small screens */
img, svg, video, canvas, iframe {
    max-width: 100%;
    height: auto;
}

/* ========================================
   2. CSS VARIABLES
   ======================================== */

:root {
    /* Color Palette */
    --primary-orange: #ff6b35;
    --orange-hover: #e55a2b;
    --secondary-blue: #2563eb;
    --blue-hover: #1d4ed8;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-medium: #4a4a4a;
    
    /* Background Colors */
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    
    /* Borders & Shadows */
    --border-light: rgba(0, 0, 0, 0.05);
    --shadow-light: 0 8px 25px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Legacy Support */
    --dark-bg: #2c3e50;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;

    /* Layout */
    --nav-height: 80px;

    /* Breakpoints */
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--orange-hover);
}

/* ========================================
   4. LAYOUT UTILITIES
   ======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Common section container used across pages */
.section-container, .service-hero-container, .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Types Sections */
.transcription-types {
    padding: 5rem 0;
    background: var(--bg-white);
}

/* ========================================
   5. NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.2px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Dropdown menus */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 260px;
    box-shadow: var(--shadow-medium);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Multi-column dropdown */
.language-dropdown .dropdown-content,
.accessibility-dropdown .dropdown-content,
.ai-dropdown .dropdown-content {
    min-width: 700px;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
}

.dropdown-column {
    flex: 1;
    min-width: 200px;
}

.dropdown-column h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-orange);
}

.dropdown-column a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-column a:hover {
    color: var(--primary-orange);
    padding-left: 0.5rem;
    background: transparent;
}

.dropdown-content > a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-content > a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

.dropdown-content a::after {
    display: none;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ========================================
   6. BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
    color: white;
}

/* Accessible focus styles */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.cta-button:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 32px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cta-button {
    background: var(--primary-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    display: inline-block;
}

.cta-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

/* ========================================
   7. CARDS
   ======================================== */

 .card, .service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card:hover, .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

/* Card hover effect overlay */
.card::before, .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before, .service-card:hover::before {
    opacity: 1;
}

/* Card variants */
.card--service:hover, .service-card:hover { border-color: var(--primary-orange); }

.card__title, .service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.card__body, .service-card p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.card__icon, .service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-hover) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    position: relative;
    z-index: 2;
}

.card:hover .card__icon, .service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
}

.card__icon svg, .service-card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card__features, .service-card-features {
    list-style: none;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.card__features li, .service-card-features li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.card__features li::before, .service-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-orange);
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
}

.card:hover .card__features li, .service-card:hover .service-card-features li {
    color: var(--text-dark);
}

.card__cta, .service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: white;
}

.card__cta::before, .service-card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.card__cta:hover::before, .service-card-cta:hover::before {
    left: 0;
}

.card__cta:hover, .service-card-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.card__cta svg, .service-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card__cta:hover svg, .service-card-cta:hover svg {
    transform: translateX(4px);
}

/* Industry Cards */
.card--industry, .industry-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.card--industry:hover, .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.card--industry h3, .industry-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   8. HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   9. GRIDS
   ======================================== */

.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   10. FORMS
   ======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ========================================
   11. FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.8;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999999;
}

/* ========================================
   12. ANIMATIONS
   ======================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Animation classes */
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* ========================================
   13. UTILITIES
   ======================================== */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flexbox */
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

/* Width */
.w-100 { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }

/* Max width */
.max-w-sm { max-width: 640px; }
.max-w-md { max-width: 768px; }
.max-w-lg { max-width: 1024px; }
.max-w-xl { max-width: 1280px; }

/* Background */
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: var(--text-dark); }
.bg-primary { background-color: var(--primary-orange); }

/* Text color */
.text-primary { color: var(--primary-orange); }
.text-secondary { color: var(--secondary-blue); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-white { color: white; }

/* Border radius */
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 20px; }
.rounded-full { border-radius: 50%; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-light); }
.shadow-md { box-shadow: var(--shadow-medium); }
.shadow-lg { box-shadow: var(--shadow-strong); }

/* ========================================
   14. RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Utilities */
    .hide-mobile {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* ========================================
   15. PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .footer,
    .cta-button,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* ========================================
   15. CODE BLOCKS AND SYNTAX HIGHLIGHTING
   ======================================== */

.code-block {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.code-block::before {
    content: attr(data-language);
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.code-block pre {
    margin: 0;
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e6e6e6;
    overflow-x: auto;
}

.code-block code {
    color: #e6e6e6;
    background: transparent;
    padding: 0;
    font-family: inherit;
}

/* Syntax highlighting */
.code-keyword { color: #ff79c6; }
.code-string { color: #f1fa8c; }
.code-number { color: #bd93f9; }
.code-comment { color: #6272a4; font-style: italic; }
.code-function { color: #50fa7b; }
.code-variable { color: #8be9fd; }
.code-operator { color: #ff6b35; }

/* Inline code */
code {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 0.9em;
}

/* API Documentation styles */
.api-endpoint {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
}

.api-endpoint h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.api-method {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 1rem;
}

.api-url {
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: #8be9fd;
    font-size: 1rem;
}

/* ========================================
   15. SERVICE PAGES STYLING
   ======================================== */

/* Service Hero Section */
.service-hero {
    padding: calc(var(--nav-height) + 40px) 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666666;
    justify-content: flex-start;
}

.breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #999999;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.08);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-hero-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.service-hero-features li svg {
    width: 20px;
    height: 20px;
    color: #ff6b35;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 0.5rem;
    font-weight: 600;
}

.certification-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: #ff6b35;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Translation/Service Types Section */
.translation-types {
    padding: 80px 0;
    background: #ffffff;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

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

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.type-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.type-card:hover .type-card-icon {
    transform: scale(1.05);
}

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

.type-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.type-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-card-features {
    list-style: none;
}

.type-card-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.type-card-features li svg {
    width: 18px;
    height: 18px;
    color: #ff6b35;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fafafa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* ISO Certification Section */
.iso-certification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
}

.iso-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.iso-badge svg {
    width: 20px;
    height: 20px;
}

.iso-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.iso-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.iso-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.iso-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.iso-feature svg {
    width: 18px;
    height: 18px;
    color: #ff6b35;
    flex-shrink: 0;
}

.certification-display {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.certification-display h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Industry Applications */
.industry-applications {
    padding: 80px 0;
    background: #ffffff;
}

.industry-applications .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-applications a.industry-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.industry-applications a.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-light); }

.industry-applications .industries-grid .industry-card { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: center; text-decoration: none; color: inherit; }
.industry-card .industry-icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 0; background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover)); display: flex; align-items: center; justify-content: center; }
.industry-card .industry-icon svg { width: 28px; height: 28px; color: #fff; }
.industry-card .industry-content h3 { margin: 0 0 .5rem 0; color: var(--text-dark); font-weight: 700; }
.industry-card .industry-content p { margin: 0; color: #666666; line-height: 1.6; }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.industry-item svg {
    width: 50px;
    height: 50px;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.industry-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for industry grids */
@media (max-width: 1024px) {
    .industry-applications .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .industry-applications .industries-grid { grid-template-columns: 1fr; }
    .industry-applications a.industry-card { grid-template-columns: 1fr; }
}

/* Client Portal Section */
.client-portal-section {
    padding: 80px 0;
    background: #fafafa;
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portal-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.portal-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.portal-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.portal-feature svg {
    width: 24px;
    height: 24px;
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 2px;
}

.portal-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.portal-feature p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portal-visual {
    display: flex;
    justify-content: center;
}

.portal-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    background: #f8f9fa;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.mockup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

.mockup-content {
    padding: 2rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0.25rem;
}

/* API Integration Section */
.api-integration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: white;
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.api-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.api-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.api-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.api-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.api-feature svg {
    width: 18px;
    height: 18px;
    color: #ff6b35;
    flex-shrink: 0;
}

.code-sample {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-lang {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff6b35;
}

.code-actions {
    display: flex;
    gap: 0.5rem;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.code-line {
    color: #e6e6e6;
    margin-bottom: 0.25rem;
}

.code-comment {
    color: #6a9955;
}

.code-keyword {
    color: #569cd6;
}

.code-function {
    color: #dcdcaa;
}

.code-string {
    color: #ce9178;
}

/* Global Operations Section */
.global-operations-section {
    padding: 80px 0;
    background: #ffffff;
}

.global-content {
    text-align: center;
}

.global-header {
    margin-bottom: 4rem;
}

.global-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.global-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.global-feature {
    text-align: center;
    padding: 2rem;
}

.global-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.global-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.global-feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.global-feature p {
    color: #666666;
    line-height: 1.6;
}

/* Rare Languages Section */
.rare-languages-section {
    padding: 80px 0;
    background: #fafafa;
}

.rare-content {
    text-align: center;
}

.rare-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.rare-content p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.languages-showcase {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.language-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-item {
    text-align: left;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.category-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.category-item p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .service-hero-grid,
    .iso-content,
    .portal-content,
    .api-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .types-grid,
    .process-grid,
    .industry-grid,
    .global-grid {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .language-categories {
        grid-template-columns: 1fr;
    }
    
    .service-hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   16. ACCESSIBILITY
   ======================================== */

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #ff5500;
        --text-dark: #000000;
        --text-light: #333333;
        --border-light: rgba(0, 0, 0, 0.2);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (optional - uncomment to enable) */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f0f0f0;
        --text-light: #cccccc;
        --text-medium: #aaaaaa;
        --bg-white: #1a1a1a;
        --bg-light: #2a2a2a;
        --bg-gradient: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        --border-light: rgba(255, 255, 255, 0.1);
    }
}
*/

/* ========================================
   17. ACCESSIBILITY PAGES SPECIFIC STYLES
   ======================================== */

/* Header/Hero Section for Service Pages */
header {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="20" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="5" r="0.5" fill="white" opacity="0.1"/><circle cx="50" cy="15" r="0.8" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-align: left;
    position: relative;
    z-index: 10;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

header .hero-title,
header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

header .hero-subtitle,
header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: white;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    color: white;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-type-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
}

.service-type-icon svg {
    width: 32px;
    height: 32px;
}

.service-type-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-type-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-type-features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-type-features li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23ff6b35' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.application-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.application-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
}

.application-icon svg {
    width: 28px;
    height: 28px;
}

.application-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.application-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.application-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.application-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Formats Grid */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.format-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.format-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.format-icon svg {
    width: 24px;
    height: 24px;
}

.format-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.format-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="cta-grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="20" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="5" r="0.5" fill="white" opacity="0.05"/><circle cx="50" cy="15" r="0.8" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="20" fill="url(%23cta-grain)"/></svg>');
    opacity: 1;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-primary {
    background: white;
    color: var(--primary-orange);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-primary:hover {
    background: #f8f9fa;
    color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: white;
    color: var(--primary-orange);
    border-color: white;
    transform: translateY(-2px);
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-number svg {
    color: white;
    fill: white;
}

/* Additional Icon Classes for Accessibility Pages */
.accuracy-feature-icon,
.audience-icon,
.compliance-icon,
.industry-icon,
.service-icon,
.tech-icon,
.technique-icon,
.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.accuracy-feature-icon svg,
.audience-icon svg,
.compliance-icon svg,
.industry-icon svg,
.service-icon svg,
.tech-icon svg,
.technique-icon svg,
.tool-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Larger icon variants */
.accuracy-feature-icon {
    width: 70px;
    height: 70px;
}

.accuracy-feature-icon svg {
    width: 28px;
    height: 28px;
}

/* Accuracy Showcase Section - Redesigned */
.accuracy-showcase {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.12));
    border-radius: 24px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.accuracy-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="accuracy-pattern" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="20" cy="10" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="5" r="0.5" fill="rgba(255,107,53,0.08)"/><circle cx="50" cy="15" r="0.8" fill="rgba(255,107,53,0.06)"/></pattern></defs><rect width="100" height="20" fill="url(%23accuracy-pattern)"/></svg>');
    opacity: 1;
}

.accuracy-showcase > * {
    position: relative;
    z-index: 1;
}

.accuracy-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.accuracy-percentage {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.2);
}

.accuracy-label {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.accuracy-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.accuracy-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: left;
}

.accuracy-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.accuracy-feature-content {
    flex: 1;
}

.accuracy-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.accuracy-feature-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Audience and Category Sections */
.audience-card,
.category {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.audience-card:hover,
.category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.audience-title,
.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.audience-description,
.category-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.audience-needs {
    list-style: none;
    margin-top: 1.5rem;
}

.audience-needs li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.audience-needs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Compliance and Certification Sections */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.compliance-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.compliance-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Technology Platform Section */
.technology-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.tech-feature {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tech-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testing Tools & Technologies Section */
.testing-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.tool-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.tool-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tool-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Our Testing Process Section */
.process-timeline {
    position: relative;
    margin-top: 4rem;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--orange-hover));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.timeline-step:nth-child(odd) .step-content::before {
    right: -24px;
    border-left-color: var(--bg-white);
    transform: translateY(-50%);
}

.timeline-step:nth-child(even) .step-content::before {
    left: -24px;
    border-right-color: var(--bg-white);
    transform: translateY(-50%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Remediation Specializations Section */
.remediation-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.remediation-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.remediation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--orange-hover);
}

.remediation-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.remediation-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.remediation-items {
    list-style: none;
    padding: 0;
}

.remediation-items li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.remediation-items li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23ff6b35' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.remediation-items li:hover {
    color: var(--text-dark);
}

/* AI-Enabled Services Page Specific Styles (duplicate hero/section/breadcrumb removed; consolidated above) */
.platform-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.platform-overview {
    padding: 5rem 0;
}

.platform-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.platform-overview > .section-container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.2rem;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

/* Services Grid (canonical) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.service-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tech-specs {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.cta {
    padding: 5rem 0;
    background: var(--bg-gradient);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    display: inline-block;
}

.cta .btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-specs {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-specs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
    font-weight: 500;
}

.detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.detail-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Responsive Design for AI-Enabled Pages */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .platform-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    /* .services-grid responsive handled centrally */
    
    .service-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Responsive Design for Accessibility Pages */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .accuracy-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .accuracy-percentage {
        font-size: 4rem;
    }
    
    .accuracy-showcase {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications {
        flex-direction: column;
        align-items: center;
    }
    
    .technology-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testing-tools {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .step-content::before,
    .timeline-step:nth-child(even) .step-content::before {
        display: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .remediation-types {
        grid-template-columns: 1fr;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* .services-grid responsive handled centrally */
    
    .feature-specs {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    header {
        padding: 4rem 0 3rem;
    }
    
    header .hero-title,
    header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
        color: white;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        color: white;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
        color: white;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .accuracy-features {
        grid-template-columns: 1fr;
    }
    
    .accuracy-percentage {
        font-size: 3rem;
    }
    
    .accuracy-showcase {
        padding: 2.5rem 1.5rem;
    }
    
    .accuracy-feature {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
    
    .timeline-steps {
        gap: 2.5rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   17. INDUSTRY PAGES
   ======================================== */

/* Industry Hero Section */
.industry-hero {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.industry-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Breadcrumb styles consolidated earlier; duplicate removed */

.industry-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.industry-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.industry-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.08);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.industry-hero-description,
.industry-hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.industry-hero-features {
    list-style: none;
    margin: 2rem 0;
}

.industry-hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.industry-hero-features svg {
    width: 20px;
    height: 20px;
    color: #ff6b35;
    flex-shrink: 0;
}

.industry-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.certification-badge {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-badge {
    background: rgba(255, 107, 53, 0.08);
    color: #ff6b35;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.industry-hero-visual {
    position: relative;
}

.industry-hero-stats,
.industry-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
    line-height: 1.3;
}

/* Healthcare/Industry Icons */
.healthcare-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Services grid responsive handled above; removed duplicate industry-specific override */

/* Industry Page Responsive Design */
@media (max-width: 1024px) {
    .industry-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .industry-hero-stats,
    .industry-stats,
    .stats-boxes {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .industry-hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .industry-hero {
        padding: 100px 0 60px;
    }
    
    .industry-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .industry-hero-description,
    .industry-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .industry-hero-stats,
    .industry-stats,
    .stats-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    /* .services-grid responsive handled centrally */
    
    .industry-hero-container {
        padding: 0 1.5rem;
    }
    
    .industry-hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   17. INDUSTRY TEMPLATE STYLES
   ======================================== */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: calc(var(--nav-height) + 40px) 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.industry-highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-hero-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-medium);
}

.service-hero-features li svg {
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
    color: #10b981;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.service-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.certification-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(34, 197, 94, 0.08);
    color: #059669;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Translation Types / Services Grid */
.translation-types {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.type-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-blue));
    transition: all 0.3s ease;
}

.type-card:hover::before {
    left: 0;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.type-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.type-card-icon svg {
    width: 28px;
    height: 28px;
}

.type-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.type-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-card-features {
    list-style: none;
}

.type-card-features li {
    display: flex;
    align-items: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.type-card-features li svg {
    width: 16px;
    height: 16px;
    margin-right: 0.75rem;
    color: #10b981;
}

/* Service Buttons */
.service-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.challenge-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.challenge-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.challenge-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.challenge-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.challenge-solution {
    background: rgba(255, 107, 53, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    font-size: 0.95rem;
    color: var(--text-medium);
}

.challenge-solution strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.process-step {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-features {
    background: rgba(255, 107, 53, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.process-features span {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.use-case-icon svg {
    width: 32px;
    height: 32px;
}

.use-case-content {
    flex: 1;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Standards Section */
.standards-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.standard-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.standard-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.standard-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.standard-badge svg {
    width: 32px;
    height: 32px;
}

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

.standard-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Industry Template */
@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .type-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .type-grid,
    .process-grid,
    .use-cases-grid,
    .challenges-grid,
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-hero-container {
        padding: 0 1.5rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .use-case-card {
        flex-direction: column;
        text-align: center;
    }
    
    .use-case-icon {
        margin: 0 auto 1rem;
    }
}

/* Enhanced CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-orange);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.btn-white {
    background: white;
    color: var(--primary-orange);
    border: 2px solid white;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-phone svg {
    flex-shrink: 0;
    color: white;
}

.cta-phone div strong {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.25rem;
}

.cta-phone div p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-phone {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Quick Links Section */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.quick-link-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.quick-link-content {
    flex: 1;
    position: relative;
}

.quick-link-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.quick-link-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.quick-link-arrow {
    position: absolute;
    top: 0;
    right: 0;
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-link-card {
        padding: 1.25rem;
    }
    
    .quick-link-icon {
        width: 44px;
        height: 44px;
    }
    
    .quick-link-icon svg {
        width: 22px;
        height: 22px;
    }
}
