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

:root {
    /* Color Palette inspired by modern SaaS designs */
    --primary-color: #4f46e5; /* Indigo */
    --primary-dark: #3730a3;
    --secondary-color: #f8fafc;
    --accent-color: #06b6d4; /* Cyan */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    direction: rtl;
    text-align: right;
    background-color: #0f172a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: #e2e8f0;
    border: 1px solid #334155;
}

.btn-secondary:hover {
    background-color: #334155;
    border-color: var(--accent-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 10px;
}

/* Header */
.header {
    background-color: #0f172a;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
    transition: all 0.3s ease;
}

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

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Header scroll state styles */
.header.scrolled .nav-menu a {
    color: #1e293b !important;
}

.header.scrolled .nav-menu a:hover {
    color: var(--primary-color) !important;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234f46e5' fill-opacity='0.05'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: -50px;
    z-index: 3;
}

.floating-card {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.dashboard-preview {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

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

.section-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #1e293b;
    padding: 100px 0;
}

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

.service-card {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border-color: var(--accent-color);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about {
    background: #0f172a;
    padding: 100px 0;
}

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

.about-text .section-header {
    text-align: right;
    margin-bottom: 2rem;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.founder-quote {
    background: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    border: 1px solid #334155;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.quote-author {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.quote-author strong {
    color: var(--accent-color);
}

.about-illustration {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2306b6d4' fill-opacity='0.03'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.workflow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 100px;
    bottom: 100px;
    right: 50%;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.workflow-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

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

.workflow-step:nth-child(even) .step-visual {
    margin-left: 3rem;
    margin-right: 0;
}

.workflow-step:nth-child(odd) .step-visual {
    margin-right: 3rem;
    margin-left: 0;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #1e293b;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    border: 4px solid var(--accent-color);
}

.step-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
    background: #334155;
}

.icon-graphic {
    width: 60px;
    height: 60px;
    position: relative;
}

/* Step 1 - Data Collection Graphics */
.data-form {
    width: 40px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 4px;
    position: relative;
}

.data-form::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #0f172a;
    box-shadow: 0 6px 0 #0f172a, 0 12px 0 #0f172a;
}

.data-lines {
    position: absolute;
    top: 35px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.data-lines::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 70%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Step 2 - Review Graphics */
.review-chart {
    width: 50px;
    height: 35px;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 6px;
    position: relative;
}

.check-marks {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.check-marks::before {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Step 3 - Budget Graphics */
.budget-pie {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0deg 120deg, var(--primary-color) 120deg 240deg, var(--success-color) 240deg 360deg);
    position: relative;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.allocation-bars {
    position: absolute;
    top: 45px;
    left: 5px;
    right: 5px;
    height: 15px;
    background: #334155;
    border-radius: 8px;
    overflow: hidden;
}

.allocation-bars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 8px;
}

/* Step 4 - Planning Graphics */
.planning-grid {
    width: 50px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 6px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 6px;
}

.planning-grid::before,
.planning-grid::after {
    content: '';
    background: #0f172a;
    border-radius: 2px;
}

.smart-indicators {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--warning-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Step 5 - Execution Graphics */
.execution-flow {
    width: 50px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.execution-flow::before {
    content: '→';
    color: #0f172a;
    font-size: 20px;
    font-weight: bold;
}

.success-indicators {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--success-color);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.success-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 3s infinite;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: var(--accent-color);
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.step-details {
    flex: 1;
    max-width: 400px;
}

.step-details h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.step-details h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.step-details p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.step-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
    transition: transform 0.2s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.5);
}

.workflow-summary {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.summary-card h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.summary-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Benefits Section */
.benefits {
    background: #1e293b;
    padding: 100px 0;
}

.benefits-subtitle {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.benefits-text {
    order: 1;
}

.benefits-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.benefits-cta {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    font-weight: 500;
}

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

.stat-item {
    text-align: center;
    background: #0f172a;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 2px solid #334155;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.learn-more {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.learn-more:hover {
    color: var(--primary-dark);
}

/* Why Choose Us / Specialties Section */
.why-choose-us {
    background: #0f172a;
    padding: 100px 0;
}

.specialties-subtitle {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.specialties-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.specialties-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.specialty-card {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-color);
    border: 1px solid #334155;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.specialty-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-color);
}

.specialty-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-card p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
}

.specialties-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: #1e293b;
    padding: 100px 0;
}

.testimonials-subtitle {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.testimonials-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.testimonial-card {
    background: #0f172a;
    padding: 2.5rem;
    border-radius: 16px;
    border-right: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author .author-info strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author .author-info span {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.testimonials-image {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cta-illustration:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid #334155;
}

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

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

.footer-brand p {
    color: #94a3b8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .hero-main-image {
        max-width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .workflow-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .workflow-step:nth-child(even),
    .workflow-step:nth-child(odd) {
        flex-direction: column !important;
    }
    
    .workflow-step:nth-child(even) .step-visual,
    .workflow-step:nth-child(odd) .step-visual {
        margin: 0 0 2rem 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
        background: #334155;
    }
    
    .step-details {
        max-width: 100%;
    }
    
    .step-details h3::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-features {
        justify-content: center;
    }
    
    .workflow-timeline {
        padding: 1rem;
    }
    
    .summary-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .challenge-item,
    .feature-card,
    .benefit-category {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-main-image {
        border-radius: 12px;
    }
    
    .service-img,
    .about-illustration,
    .testimonial-illustration,
    .cta-illustration {
        max-width: 300px;
        border-radius: 12px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .specialties-intro p {
        font-size: 1rem;
    }
    
    .specialty-card {
        padding: 2rem;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.specialty-card,
.testimonial-card,
.workflow-step,
.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    .section {
        padding: 20px 0;
    }
    
    body {
        color: black;
    }
} 