:root {
    --primary-blue: #1d4ed8;
    --primary-green: #16a34a;
    --accent-orange: #f97316;
    --dark-bg: #0b0b0b;
    --dark-card: #1a1a1a;
    --text-dark: #111111;
    --text-light: #6f6f6f;
    --white: #ffffff;
    --gray-50: #f5f5f5;
    --gray-100: #e5e5e5;
    --gray-200: #d4d4d4;
    --cta-gradient: linear-gradient(135deg, #1d4ed8 0%, #f97316 100%);
    --cta-hover-gradient: linear-gradient(135deg, #1e40af 0%, #fb923c 100%);
    --cta-shadow: 0 18px 32px rgba(29, 78, 216, 0.25);
    --cta-hover-shadow: 0 22px 40px rgba(249, 115, 22, 0.35);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-blue: #60a5fa;
    --primary-green: #34d399;
    --accent-orange: #fb923c;
    --text-dark: #f5f5f5;
    --text-light: #b0b0b0;
    --white: #0f0f0f;
    --gray-50: #1a1a1a;
    --gray-100: #2a2a2a;
    --gray-200: #3a3a3a;
    --cta-gradient: linear-gradient(135deg, #60a5fa 0%, #fb7185 100%);
    --cta-hover-gradient: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    --cta-shadow: 0 20px 40px rgba(96, 165, 250, 0.35);
    --cta-hover-shadow: 0 24px 50px rgba(251, 113, 133, 0.4);
}

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

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

[data-theme="dark"] body {
    background-color: var(--dark-bg);
    color: #f5f5f5;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

[data-theme="dark"] header {
    background: rgba(58, 58, 58, 0.95);
}

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

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

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

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

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

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

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

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

/* CTA Button in Header */
.header-cta {
    background: var(--cta-gradient);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--cta-shadow);
    letter-spacing: 0.02em;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--cta-hover-gradient);
    box-shadow: var(--cta-hover-shadow);
    transform: translateY(-2px);
}

.header-cta:focus-visible {
    outline: none;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--gray-200);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.3s ease;
}

[data-theme="dark"] .modal {
    background: var(--dark-card);
}

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

[data-theme="dark"] .modal-title {
    color: #f5f5f5;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

/* Progress Bar */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.progress-line-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    z-index: 1;
    transition: width 0.5s ease;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .progress-step-circle {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .progress-step-circle {
    background: var(--primary-green);
    color: white;
}

.progress-step-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    max-width: 80px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

[data-theme="dark"] .step-title {
    color: #f5f5f5;
}

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

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

[data-theme="dark"] .form-group label {
    color: #f5f5f5;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

[data-theme="dark"] .form-control {
    background: var(--dark-bg);
    border-color: var(--gray-200);
    color: #f5f5f5;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-control.error {
    border-color: #7a7a7a;
}

.error-message {
    color: #7a7a7a;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

[data-theme="dark"] .option-card {
    background: var(--dark-bg);
}

.option-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05), rgba(122, 122, 122, 0.05));
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-title {
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .option-title {
    color: #f5f5f5;
}

.option-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
}

[data-theme="dark"] .file-upload-area {
    background: var(--dark-bg);
}

.file-upload-area:hover {
    border-color: var(--primary-blue);
    background: var(--gray-100);
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.uploaded-files {
    margin-top: 1rem;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .uploaded-file {
    background: var(--dark-bg);
}

.file-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

[data-theme="dark"] .file-name {
    color: #f5f5f5;
}

.file-remove {
    background: none;
    border: none;
    color: #7a7a7a;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Summary Section */
.summary-section {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .summary-section {
    background: var(--dark-bg);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.summary-label {
    color: var(--text-light);
}

.summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .summary-value {
    color: #f5f5f5;
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Dashboard Preview */
.dashboard-preview-modal {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 12px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.status-timeline {
    margin-top: 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.status-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.status-item:last-child::before {
    display: none;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.status-icon.completed {
    background: white;
    color: var(--primary-green);
}

.status-icon.active {
    background: var(--accent-orange);
    animation: pulse 2s infinite;
}

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

.status-content {
    flex: 1;
    text-align: left;
}

.status-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.status-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Modal Footer */
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}

[data-theme="dark"] .modal-footer {
    background: var(--dark-bg);
}

.step-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--text-dark);
}

[data-theme="dark"] .btn-outline {
    color: #f5f5f5;
}

.btn-outline:hover {
    background: var(--gray-100);
}

.btn-primary {
    background: var(--cta-gradient);
    color: #ffffff;
    box-shadow: var(--cta-shadow);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--cta-hover-gradient);
    box-shadow: var(--cta-hover-shadow);
    transform: translateY(-2px);
}

.btn-primary:focus-visible {
    outline: none;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-orange);
    border: 2px solid transparent;
    box-shadow: none;
}

[data-theme="dark"] .btn-secondary {
    background: rgba(251, 146, 60, 0.18);
    color: #fff7ed;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(249, 115, 22, 0.24);
    color: #ffffff;
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.25);
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: none;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

[data-theme="dark"] .hero-content h1 {
    color: #f5f5f5;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.dashboard-preview {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}

[data-theme="dark"] .dashboard-preview {
    background: var(--dark-card);
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot:nth-child(1) { background: #3a3a3a; }
.dot:nth-child(2) { background: #7a7a7a; }
.dot:nth-child(3) { background: #bfbfbf; }

.dashboard-content {
    display: grid;
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .stat-card {
    background: var(--dark-bg);
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Comparison Section */
.comparison {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

[data-theme="dark"] .comparison {
    background: var(--dark-card);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

[data-theme="dark"] .section-title {
    color: #f5f5f5;
}

.comparison-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

[data-theme="dark"] .comparison-card {
    background: var(--dark-bg);
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

[data-theme="dark"] .comparison-card h3 {
    color: #f5f5f5;
}

.old-way {
    border: 2px solid var(--gray-200);
}

.old-way h3 {
    color: var(--text-light);
}

.new-way {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.new-way h3 {
    color: var(--primary-green);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

[data-theme="dark"] .comparison-list li {
    color: #f5f5f5;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-x {
    color: #7a7a7a;
}

.icon-check {
    color: var(--primary-green);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

[data-theme="dark"] .service-card {
    background: var(--dark-card);
}

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

.service-card h3 {
    color: var(--text-dark);
    margin: 1rem 0;
}

[data-theme="dark"] .service-card h3 {
    color: #f5f5f5;
}

.service-card p {
    color: var(--text-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* How it Works */
.how-it-works {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

[data-theme="dark"] .how-it-works {
    background: var(--dark-card);
}

.steps-container {
    max-width: 1280px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .step {
    background: var(--dark-bg);
}

.step h3 {
    color: var(--text-dark);
    margin: 1rem 0;
}

[data-theme="dark"] .step h3 {
    color: #f5f5f5;
}

.step p {
    color: var(--text-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

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

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.pricing-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

[data-theme="dark"] .pricing-card {
    background: var(--dark-card);
}

.pricing-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .pricing-card h3 {
    color: #f5f5f5;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-blue);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

[data-theme="dark"] .features-list li {
    color: #f5f5f5;
}

/* Calculator */
.calculator {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="dark"] .calculator {
    background: var(--dark-card);
}

.calculator h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

[data-theme="dark"] .calculator h3 {
    color: #f5f5f5;
}

.range-slider {
    width: 100%;
    margin: 1rem 0;
}

.range-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.5rem;
}

.recommended-plan {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

[data-theme="dark"] .testimonials {
    background: var(--dark-card);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

[data-theme="dark"] .testimonial-card {
    background: var(--dark-bg);
}

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

.quote-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}

[data-theme="dark"] .testimonial-text {
    color: #f5f5f5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

[data-theme="dark"] .author-info h4 {
    color: #f5f5f5;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

[data-theme="dark"] .values-list li {
    color: #f5f5f5;
}

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

.team-member {
    text-align: center;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

[data-theme="dark"] .team-member {
    background: var(--dark-card);
}

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

.team-member h4 {
    color: var(--text-dark);
    margin: 0.5rem 0;
}

[data-theme="dark"] .team-member h4 {
    color: #f5f5f5;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

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

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    color: #a0a0a0;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

[data-theme="dark"] .faq-item {
    background: var(--dark-card);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

[data-theme="dark"] .faq-question {
    color: #f5f5f5;
}

.faq-question:hover {
    background: var(--gray-100);
}

[data-theme="dark"] .faq-question:hover {
    background: var(--dark-bg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    padding-bottom: 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    [data-theme="dark"] .nav-links.mobile-active {
        background: var(--dark-bg);
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }

    .hero-visual {
        order: -1;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .new-way {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .progress-container {
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .option-cards {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-delay {
    animation-delay: 0.2s;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}