:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Buttons */
.btn-primary, .btn-secondary,
a.btn-primary, a.btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}

a.btn-primary, a.btn-secondary {
    border: none;
}

.btn-primary, a.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover, a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

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

.btn-secondary:hover, a.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Remove underline effect from button links in nav */
.nav-links a.btn-primary::after,
.nav-links a.btn-secondary::after {
    display: none;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    background: var(--bg-secondary);
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Solutions Section */
.solutions-section {
    background: white;
}

.solution-card {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    padding: 48px;
    background: var(--bg-secondary);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: white;
}

.solution-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-audience {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 16px;
}

.solution-features {
    list-style: none;
    margin-bottom: 24px;
}

.solution-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

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

.solution-outcome {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-secondary);
}

.solution-card-custom {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.solution-custom-intro {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.industry-tag {
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.solution-custom-footer {
    color: var(--text-secondary);
    font-style: italic;
}

/* Process Section */
.process-section {
    background: var(--bg-secondary);
}

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

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Designed For Section */
.designed-for-section {
    background: white;
}

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

.level-card {
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.level-card:hover {
    background: var(--gradient-hero);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.level-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.level-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Why Now Section */
.why-now-section {
    background: var(--bg-dark);
    color: white;
}

.why-now-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-now-section .section-title {
    color: white;
    margin-bottom: 32px;
}

.why-now-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.features-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.check-icon {
    font-size: 20px;
}

/* AI Audit Section */
.audit-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 100px 0;
    text-align: center;
}

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

.audit-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.audit-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Audit Modal Styles */
.audit-modal {
    width: calc(100vw - 40px);
    max-width: 1080px;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    border-radius: 16px;
    position: relative;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.audit-progress {
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-hero);
    transition: width 0.5s ease;
    width: 0%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.progress-text {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.audit-step {
    padding: 48px 20px;
    background: white;
    min-height: 500px;
    flex: 1;
    overflow-y: auto;
}

.audit-step-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 16px;
    border-bottom: 3px solid;
    border-image: var(--gradient-hero) 1;
}

.audit-step-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.audit-step-form .form-group {
    animation: fadeInUp 0.4s ease;
}

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

.audit-step-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.audit-step-actions .btn-primary,
.audit-step-actions .btn-secondary {
    min-width: 140px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}

.audit-loading {
    text-align: center;
    padding: 60px 40px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.audit-loading h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.audit-loading p {
    color: var(--text-secondary);
    font-size: 16px;
}

.audit-report {
    padding: 0;
    height: 100%;
    overflow-y: auto;
    background: white;
    display: flex;
    flex-direction: column;
}

.audit-report-header {
    text-align: center;
    margin-bottom: 0;
    padding: 48px 20px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.audit-report-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 500;
}

.audit-report-content {
    margin-bottom: 0;
    padding: 56px 20px;
    background: #fafbfc;
    flex: 1;
    overflow-y: auto;
}

.report-text {
    line-height: 1.9;
    color: var(--text-primary);
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 48px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.report-text h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 48px 0 24px;
    color: var(--primary-color);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.report-text h1:first-child {
    margin-top: 0;
}

.report-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 36px 0 16px;
    color: var(--text-primary);
    padding-left: 16px;
    border-left: 4px solid var(--primary-color);
}

.report-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.report-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: justify;
    font-size: 16px;
}

.report-text ul,
.report-text ol {
    margin: 20px 0;
    padding-left: 32px;
}

.report-text li {
    margin: 12px 0;
    padding-left: 8px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.report-text li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.report-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.report-text em {
    color: var(--text-secondary);
    font-style: italic;
}

.report-text blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-secondary);
}

.report-text table,
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.report-text table thead,
.report-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.report-text table th,
.report-table th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.report-text table td,
.report-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 15px;
}

.report-text table tbody tr:hover,
.report-table tbody tr:hover {
    background: var(--bg-secondary);
    transition: background 0.2s ease;
}

.report-text table tbody tr:last-child td,
.report-table tbody tr:last-child td {
    border-bottom: none;
}

.report-text table tbody tr:nth-child(even),
.report-table tbody tr:nth-child(even) {
    background: rgba(102, 126, 234, 0.02);
}

.audit-report-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 32px 20px;
    background: white;
    border-top: 2px solid var(--border-color);
    position: sticky;
    bottom: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.audit-error {
    text-align: center;
    padding: 60px 40px;
}

.audit-error h2 {
    font-size: 24px;
    color: #ef4444;
    margin-bottom: 16px;
}

.audit-error p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Multiselect Styles */
.multiselect-container {
    margin-top: 8px;
}

.multiselect-selected-count {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
    display: block;
    text-align: left;
}

.multiselect-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: white;
}

.multiselect-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    background: white;
    flex: 0 0 auto;
}

.multiselect-option:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.multiselect-option input[type="checkbox"]:checked ~ span {
    font-weight: 600;
    color: var(--primary-color);
}

.multiselect-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
}

.multiselect-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.multiselect-option span {
    flex: 1;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.multiselect-option:has(input[type="checkbox"]:checked) {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.multiselect-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--primary-color);
}

/* AI Generated Step Styles */
.ai-generated-step {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ai-step-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-primary);
}

.ai-step-content h1,
.ai-step-content h2,
.ai-step-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.ai-step-content h1:first-child,
.ai-step-content h2:first-child,
.ai-step-content h3:first-child {
    margin-top: 0;
}

.ai-step-content p {
    margin-bottom: 12px;
}

.ai-step-content ul,
.ai-step-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.ai-step-content li {
    margin: 8px 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 0;
}

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

.footer-logo .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Modal Form Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0;
}

.modal-overlay:has(.audit-modal) {
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-container.audit-modal {
    max-width: 1080px;
    border-radius: 16px;
}


.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-overlay.active .audit-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    padding: 48px 40px;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.meeting-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.audit-step-form .form-group input,
.audit-step-form .form-group select,
.audit-step-form .form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.audit-step-form .form-group input:focus,
.audit-step-form .form-group select:focus,
.audit-step-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.audit-step-form .form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: block;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .solution-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .solution-number {
        width: auto;
        font-size: 48px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta button,
    .hero-cta a {
        width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .features-checklist {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .audit-step {
        padding: 24px 20px;
    }
    
    .audit-step-title {
        font-size: 24px;
    }
    
    .audit-report {
        padding: 24px 20px;
    }
    
    .audit-report-actions {
        flex-direction: column;
    }
    
    .audit-report-actions button,
    .audit-report-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links a:not(:last-child) {
        display: none;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .benefits-grid,
    .levels-grid {
        grid-template-columns: 1fr;
    }
}

