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

:root {
    --primary-color: #5B21B6;
    --secondary-color: #2563EB;
    --accent-color: #7C3AED;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #5B21B6 0%, #2563EB 100%);
    --gradient-hover: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 5px;
}

.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;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

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

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

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    gap: 0.75rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
}

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

.hero-title {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

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

/* Cases Section */
.cases {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.case-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

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

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

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

.case-content {
    padding: 2rem;
}

.case-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

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

/* FAQ Preview Section */
.faq-preview {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-items {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin: 0;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.cta-content .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-list {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation placeholders */
/* Fade in on scroll animation would be implemented here */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

/* Form styles for contact page */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

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

.form-message {
    padding: 1rem;
    background: #10B981;
    color: white;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.show {
    display: block;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Full Page */
.services-full {
    padding: 5rem 0;
}

.services-grid-full {
    display: grid;
    gap: 3rem;
}

.service-card-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-benefits {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    text-align: center;
}

.benefit-item strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.benefit-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Testimonials Full Page */
.testimonials-featured {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-featured {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.testimonial-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 2rem;
    filter: grayscale(100%);
    opacity: 0.7;
}

.testimonial-featured blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-size: 1.25rem;
    line-height: 1.8;
}

.testimonial-results {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-grid-section {
    padding: 5rem 0;
}

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

.testimonial-card-full {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-header span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Success Metrics */
.success-metrics {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.success-metrics .section-title {
    color: white;
}

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

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

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* FAQ Full Page */
.faq-section {
    padding: 5rem 0;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-item-full {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-item-full:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item-full h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item-full p {
    line-height: 1.8;
    margin: 0;
}

.faq-contact-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border: none;
}

.contact-info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-info-item address {
    font-style: normal;
    line-height: 1.8;
}

.contact-info-item .text-light {
    color: var(--text-light);
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Quick Contact Cards */
.quick-contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.quick-contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-contact-card p {
    margin-bottom: 0.5rem;
}

.quick-contact-card strong {
    color: var(--text-dark);
}

/* About Page */
.about-intro {
    padding: 5rem 0;
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

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

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

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

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

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

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

.team-member p {
    color: var(--text-light);
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
}

.partner-logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 404 Page styles */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.error-suggestions {
    margin-top: 3rem;
}

.error-suggestions h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-suggestions ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.error-suggestions a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive updates for new pages */
@media (max-width: 1024px) {
    .services-grid-full .service-card-full {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .values-grid,
    .team-stats,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .error-content h1 {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .error-suggestions ul {
        flex-direction: column;
        gap: 1rem;
    }
}

    {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-top: 3rem;
}

.faq-contact-cta h3 {
    margin-bottom: 1rem;
}

.faq-contact-cta

/* Utility classes */
.text-center {
    text-align: center;
}

.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;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

    /* Legal Pages */
    .legal-content {
        padding: 2rem 0;
    }

    .legal-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .legal-wrapper h2 {
        margin-top: 3rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-size: 1.5rem;
    }

    .legal-wrapper h2:first-child {
        margin-top: 0;
    }

    .legal-wrapper p {
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .legal-wrapper ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
    }

    .legal-wrapper ul li {
        margin-bottom: 0.5rem;
        line-height: 1.8;
    }

    .legal-wrapper a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .legal-wrapper a:hover {
        color: var(--accent-color);
    }

    :root {
        --primary-color: #5B21B6;
        --secondary-color: #2563EB;
        --accent-color: #7C3AED;
        --text-dark: #1F2937;
        --text-light: #6B7280;
        --bg-light: #F9FAFB;
        --bg-white: #FFFFFF;
        --border-color: #E5E7EB;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --gradient-primary: linear-gradient(135deg, #5B21B6 0%, #2563EB 100%);
        --gradient-hover: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
    }

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

    .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;
    }

    h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

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

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

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

    /* Header */
    .header {
        background: var(--bg-white);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
    }

    .logo {
        font-size: 1.75rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    .nav-link {
        color: var(--text-dark);
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
    }


    /* Buttons */
    .btn {
        display: inline-block;
        padding: 0.875rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }

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

    .btn-primary:hover {
        background: var(--gradient-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: #ffffff;
    }

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

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

    .btn-large {
        padding: 1.25rem 3rem;
        font-size: 1.125rem;
    }

    .btn-link {
        color: var(--primary-color);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-link:hover {
        gap: 0.75rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 0;
        background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
    }

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

    .hero-title {
        margin-bottom: 1.5rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: var(--text-dark);
    }

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

    /* Benefits Section */
    .benefits {
        padding: 5rem 0;
        background: var(--bg-white);
    }

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

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

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

    .benefit-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        overflow: hidden;
    }

    .benefit-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .benefit-card p {
        margin: 0;
        font-size: 0.95rem;
    }

    /* Services Section */
    .services {
        padding: 5rem 0;
        background: var(--bg-light);
    }

    .section-title {
        text-align: center;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

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

    .service-card {
        background: var(--bg-white);
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
    }

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

    .service-card h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .service-card p {
        margin-bottom: 1.5rem;
    }

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

    /* Cases Section */
    .cases {
        padding: 5rem 0;
        background: var(--bg-white);
    }

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

    .case-card {
        background: var(--bg-light);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

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

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

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

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

    .case-content {
        padding: 2rem;
    }

    .case-content h3 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .case-stats {
        display: flex;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--gradient-primary);
        color: white;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.875rem;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 5rem 0;
        background: var(--bg-light);
    }

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

    .testimonial-card {
        background: var(--bg-white);
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1rem;
        left: 1.5rem;
        font-size: 4rem;
        color: var(--accent-color);
        opacity: 0.2;
        font-family: Georgia, serif;
    }

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

    .testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .testimonial-author strong {
        color: var(--text-dark);
    }

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

    /* FAQ Preview Section */
    .faq-preview {
        padding: 5rem 0;
        background: var(--bg-white);
    }

    .faq-items {
        display: grid;
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .faq-item {
        padding: 2rem;
        background: var(--bg-light);
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
    }

    .faq-item h3 {
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        margin: 0;
    }

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

    /* CTA Section */
    .cta-section {
        padding: 5rem 0;
        background: var(--gradient-primary);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .cta-content {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        color: white;
        margin-bottom: 1rem;
    }

    .cta-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

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

    .cta-content .btn-primary:hover {
        background: var(--bg-light);
        transform: translateY(-2px);
    }

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

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-column h4 {
        margin-bottom: 1.5rem;
        color: white;
    }

    .footer-column p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
    }

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

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

    .footer-column a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
    }

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

    address {
        font-style: normal;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.7);
    }

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

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
    }

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

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content {
            order: 2;
        }

        .hero-image {
            order: 1;
            max-width: 600px;
            margin: 0 auto;
        }

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

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

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

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

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

    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        .nav-list {
            display: none;
        }

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

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }

    /* Animation placeholders */
    /* Fade in on scroll animation would be implemented here */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

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

    /* Loading states */
    .loading {
        position: relative;
        overflow: hidden;
    }

    .loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        to {
            left: 100%;
        }
    }

    /* Form styles for contact page */
    .form-group {
        margin-bottom: 1.5rem;
    }

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

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
    }

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

    .form-message {
        padding: 1rem;
        background: #10B981;
        color: white;
        border-radius: 8px;
        text-align: center;
        margin-top: 1rem;
        display: none;
    }

    .form-message.show {
        display: block;
    }

    /* Page Hero */
    .page-hero {
        background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
        padding: 4rem 0;
        text-align: center;
    }

    .page-hero h1 {
        margin-bottom: 1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-hero .lead {
        font-size: 1.25rem;
        color: var(--text-dark);
        max-width: 800px;
        margin: 0 auto;
    }

    /* Services Full Page */
    .services-full {
        padding: 5rem 0;
    }

    .services-grid-full {
        display: grid;
        gap: 3rem;
    }

    .service-card-full {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        padding: 3rem;
        background: var(--bg-light);
        border-radius: 16px;
        box-shadow: var(--shadow-md);
    }

    .service-icon img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }

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

    .service-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

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

    .service-benefits {
        display: flex;
        gap: 2rem;
        margin: 2rem 0;
    }

    .benefit-item {
        text-align: center;
    }

    .benefit-item strong {
        display: block;
        font-size: 1.75rem;
        color: var(--primary-color);
        margin-bottom: 0.25rem;
    }

    .benefit-item span {
        font-size: 0.875rem;
        color: var(--text-light);
    }

    /* Testimonials Full Page */
    .testimonials-featured {
        padding: 5rem 0;
        background: var(--bg-light);
    }

    .testimonial-featured {
        background: white;
        padding: 3rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .testimonial-logo img {
        height: 60px;
        width: auto;
        margin-bottom: 2rem;
        filter: grayscale(100%);
        opacity: 0.7;
    }

    .testimonial-featured blockquote {
        border-left: 4px solid var(--primary-color);
        padding-left: 2rem;
        margin: 2rem 0;
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .testimonial-results {
        display: flex;
        gap: 3rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }

    .result-item {
        text-align: center;
        flex: 1;
    }

    .result-item strong {
        display: block;
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .testimonials-grid-section {
        padding: 5rem 0;
    }

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

    .testimonial-card-full {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

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

    .testimonial-header img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-header strong {
        display: block;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }

    .testimonial-header span {
        font-size: 0.875rem;
        color: var(--text-light);
    }

    .testimonial-tags {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .tag {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: var(--bg-light);
        color: var(--primary-color);
        border-radius: 20px;
        font-size: 0.875rem;
    }

    /* Success Metrics */
    .success-metrics {
        padding: 5rem 0;
        background: var(--gradient-primary);
        color: white;
    }

    .success-metrics .section-title {
        color: white;
    }

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

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

    .metric-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .metric-label {
        font-size: 1.125rem;
        opacity: 0.9;
    }

    /* FAQ Full Page */
    .faq-section {
        padding: 5rem 0;
    }

    .faq-categories {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-category {
        margin-bottom: 4rem;
    }

    .faq-category h2 {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--border-color);
    }

    .faq-item-full {
        margin-bottom: 2rem;
        padding: 2rem;
        background: var(--bg-light);
        border-radius: 12px;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }

    .faq-item-full:hover {
        border-left-color: var(--primary-color);
        box-shadow: var(--shadow-md);
    }

    .faq-item-full h3 {
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .faq-item-full p {
        line-height: 1.8;
        margin: 0;
    }

    .faq-contact-cta p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    /* Contact Page */
    .contact-section {
        padding: 5rem 0;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }

    .contact-form-wrapper h2 {
        margin-bottom: 0.5rem;
    }

    .contact-form-wrapper p {
        margin-bottom: 2rem;
        color: var(--text-light);
    }

    .contact-info h2 {
        margin-bottom: 2rem;
    }

    .contact-info-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .contact-info-item:last-child {
        border: none;
    }

    .contact-info-item h3 {
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .contact-info-item address {
        font-style: normal;
        line-height: 1.8;
    }

    .contact-info-item .text-light {
        color: var(--text-light);
    }

    .map-placeholder {
        margin-top: 2rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .map-placeholder img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* Quick Contact Cards */
    .quick-contact {
        padding: 5rem 0;
        background: var(--bg-light);
    }

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

    .quick-contact-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        text-align: center;
    }

    .quick-contact-card h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .quick-contact-card p {
        margin-bottom: 0.5rem;
    }

    .quick-contact-card strong {
        color: var(--text-dark);
    }

    /* About Page */
    .about-intro {
        padding: 5rem 0;
    }

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

    .about-content h2 {
        margin-bottom: 1.5rem;
    }

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

    /* Values Section */
    .values-section {
        padding: 5rem 0;
        background: var(--bg-light);
    }

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

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

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

    .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        overflow: hidden;
    }

    .value-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Team Section */
    .team-section {
        padding: 5rem 0;
    }

    .team-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }

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

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

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

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

    .team-member {
        text-align: center;
    }

    .team-member img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

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

    .team-member p {
        color: var(--text-light);
        margin: 0;
    }

    /* Timeline Section */
    .timeline-section {
        padding: 5rem 0;
        background: var(--bg-light);
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--gradient-primary);
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 2;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
        text-align: right;
    }

    .timeline-year {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color);
        text-align: right;
    }

    .timeline-content {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .timeline-content h3 {
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        margin: 0;
    }

    /* Partners Section */
    .partners-section {
        padding: 5rem 0;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        align-items: center;
    }

    .partner-logo {
        text-align: center;
    }

    .partner-logo img {
        width: 100%;
        max-width: 150px;
        height: auto;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .partner-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* 404 Page styles */
    .error-page {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 0;
    }

    .error-content h1 {
        font-size: 8rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        line-height: 1;
    }

    .error-content h2 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .error-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: var(--text-light);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .error-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .error-suggestions {
        margin-top: 3rem;
    }

    .error-suggestions h3 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .error-suggestions ul {
        list-style: none;
        display: flex;
        gap: 2rem;
        justify-content: center;
    }

    .error-suggestions a {
        color: var(--primary-color);
        font-weight: 500;
    }

    /* Responsive updates for new pages */
    @media (max-width: 1024px) {
        .services-grid-full .service-card-full {
            grid-template-columns: 1fr;
        }

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

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

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

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

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

        .timeline::before {
            left: 30px;
        }

        .timeline-item {
            grid-template-columns: 60px 1fr;
            gap: 2rem;
        }

        .timeline-item:nth-child(even) .timeline-year,
        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
        }

        .timeline-year {
            font-size: 1.5rem;
        }

        .quick-contact-grid {
            grid-template-columns: 1fr;
        }

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

        .nav-list {
            gap: 1rem;
        }

        .logo-text {
            font-size: 20px;
        }
    }

    @media (max-width: 768px) {

        .values-grid,
        .team-stats,
        .partners-grid {
            grid-template-columns: 1fr;
        }

        .error-content h1 {
            font-size: 5rem;
        }

        .error-actions {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .error-suggestions ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

        {
        text-align: center;
        padding: 3rem;
        background: var(--bg-light);
        border-radius: 16px;
        margin-top: 3rem;
    }

    .faq-contact-cta h3 {
        margin-bottom: 1rem;
    }

    .faq-contact-cta

    /* Utility classes */
    .text-center {
        text-align: center;
    }

    .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;
    }

    .py-1 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .py-2 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-3 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-4 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Cookie Popup */
    .cookie-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
    }

    .cookie-popup.show {
        display: flex;
    }

    .cookie-popup-content {
        background: white;
        border-radius: 12px;
        max-width: 500px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 2.5rem;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .cookie-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .cookie-close-btn:hover {
        background: #f0f0f0;
    }

    .cookie-popup h2 {
        margin-bottom: 1rem;
        color: #1a1a1a;
        font-size: 1.5rem;
    }

    .cookie-popup p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    /* Cookie Categories */
    .cookie-categories {
        margin-bottom: 2rem;
    }

    .cookie-category {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .cookie-category-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-category-info {
        flex: 1;
    }

    .cookie-category-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        color: #1a1a1a;
    }

    .cookie-category-info p {
        font-size: 0.875rem;
        color: #666;
        margin: 0;
    }

    /* Toggle Switch */
    .cookie-toggle {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 26px;
    }

    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .cookie-toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.3s;
        border-radius: 26px;
    }

    .cookie-toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

    .cookie-toggle input:checked+.cookie-toggle-slider {
        background-color: #5B21B6;
    }

    .cookie-toggle input:checked+.cookie-toggle-slider:before {
        transform: translateX(24px);
    }

    .cookie-toggle input:disabled+.cookie-toggle-slider {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Cookie Buttons */
    .cookie-buttons {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
    }

    .cookie-btn {
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cookie-btn-accept-all {
        background: #5B21B6;
        color: white;
    }

    .cookie-btn-accept-all:hover {
        background: #7C3AED;
    }

    .cookie-btn-save {
        background: #e5e7eb;
        color: #374151;
    }

    .cookie-btn-save:hover {
        background: #d1d5db;
    }

    /* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        display: none;
        z-index: 9999;
    }

    .cookie-banner.show {
        display: block;
    }

    .cookie-banner-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .cookie-banner p {
        margin: 0;
        flex: 1;
        color: #374151;
    }

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

    .cookie-btn-small {
        padding: 0.5rem 1.25rem;
        border: none;
        border-radius: 6px;
        font-size: 0.875rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .cookie-btn-small:first-child {
        background: #5B21B6;
        color: white;
    }

    .cookie-btn-small:first-child:hover {
        background: #7C3AED;
    }

    .cookie-btn-settings {
        background: #e5e7eb;
        color: #374151;
    }

    .cookie-btn-settings:hover {
        background: #d1d5db;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .cookie-popup-content {
            padding: 2rem;
            margin: 1rem;
        }

        .cookie-buttons {
            flex-direction: column;
        }

        .cookie-btn {
            width: 100%;
        }

        .cookie-banner-content {
            flex-direction: column;
            text-align: center;
        }

        .cookie-banner-buttons {
            width: 100%;
            flex-direction: column;
        }

        .cookie-btn-small {
            width: 100%;
        }
    }

    .newsletter-signup {
        background: linear-gradient(120deg, #512da8 0%, #2979ff 100%);
        padding: 60px 0;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .newsletter-signup::before {
        content: "";
        position: absolute;
        right: -120px;
        bottom: -60px;
        width: 340px;
        height: 340px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 560px;
        margin: 0 auto;
    }

    .newsletter-signup h2 {
        font-size: 2.2rem;
        margin-bottom: 14px;
        font-weight: 700;
    }

    .newsletter-signup p {
        font-size: 1.15rem;
        margin-bottom: 28px;
        opacity: 0.95;
        color: #fff;
    }

    .newsletter-form {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .newsletter-form input[type="email"] {
        padding: 14px 18px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        width: 260px;
        max-width: 100%;
        outline: none;
    }

    .newsletter-form button {
        padding: 14px 36px;
        border: none;
        border-radius: 8px;
        background: #fff;
        color: #2979ff;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .newsletter-form button:hover {
        background: #2979ff;
        color: #fff;
    }

    .newsletter-success {
        margin-top: 24px;
        font-size: 1.12rem;
        background: rgba(255, 255, 255, 0.09);
        padding: 16px 0;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.01em;
        animation: fadeIn 0.5s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .testimonial-author img {
        margin: 0 auto;
        width: 500px;
    }

    .Mika {
        text-align: center;
        font-size: 24px;
    }
























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

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

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

    .btn-primary_z:hover {
        background: var(--gradient-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: white;
    }

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

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

    /* Header */
    .header_z {
        background: var(--bg-white);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content_z {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .logo_z {
        font-size: 1.75rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .logo_z img {
        height: 40px;
        width: auto;
    }

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

    .nav-link_z {
        color: var(--text-dark);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link_z:hover,
    .nav-link_z.active {
        color: var(--primary-color);
    }

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

    .nav-link_z:hover::after,
    .nav-link_z.active::after {
        width: 100%;
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle_z {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .mobile-menu-toggle_z span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle_z span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle_z span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-toggle_z span:nth-child(3) {
        bottom: 0;
    }

    .mobile-menu_z {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu_z.active {
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu-overlay_z {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .mobile-menu-content_z {
        position: absolute;
        right: -100%;
        top: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: var(--bg-white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 2;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu_z.active .mobile-menu-content_z {
        right: 0;
    }

    .mobile-menu-close_z {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text-dark);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-menu-close_z:hover {
        background: var(--bg-light);
    }

    .mobile-nav-list_z {
        list-style: none;
        padding: 80px 0 40px;
        flex: 1;
    }

    .mobile-nav-link_z {
        display: block;
        padding: 1rem 2rem;
        color: var(--text-dark);
        font-size: 1.125rem;
        font-weight: 500;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .mobile-nav-link_z:hover,
    .mobile-nav-link_z.active {
        background: var(--bg-light);
        color: var(--primary-color);
        padding-left: 2.5rem;
    }

    .mobile-menu-footer_z {
        padding: 2rem;
        border-top: 1px solid var(--border-color);
        background: var(--bg-light);
    }

    .mobile-contact-link_z {
        display: block;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .mobile-contact-link_z:last-child {
        margin-bottom: 0;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .mobile-menu-toggle_z.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .mobile-menu-toggle_z.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle_z.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Service Header */
    .service-header_z {
        padding: 2rem 0;
        background: var(--bg-light);
        border-bottom: 1px solid var(--border-color);
    }

    .breadcrumb_z {
        margin-bottom: 1.5rem;
        font-size: 0.875rem;
    }

    .breadcrumb_z a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .breadcrumb_z span {
        color: var(--text-light);
        margin: 0 0.5rem;
    }

    .breadcrumb_z span:last-child {
        color: var(--text-dark);
        font-weight: 500;
    }

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

    .service-title_z {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-subtitle_z {
        font-size: 1.25rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Service Content */
    .service-content_z {
        padding: 4rem 0;
        background: var(--bg-white);
    }

    .service-description_z {
        text-align: center;
    }

    .description-text_z p {
        font-size: 1.125rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 0;
    }

    .service-image_z {
        display: flex;
        justify-content: center;
    }

    /* Dashboard Preview */
    .dashboard-preview_z {
        background: var(--bg-white);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        overflow: hidden;
        max-width: 400px;
        transition: transform 0.3s ease;
    }

    .dashboard-preview_z:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .dashboard-header_z {
        background: var(--bg-light);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .dashboard-controls_z {
        display: flex;
        gap: 0.5rem;
    }

    .control_z {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--border-color);
    }

    .control_z:first-child {
        background: #ef4444;
    }

    .control_z:nth-child(2) {
        background: #f59e0b;
    }

    .control_z:nth-child(3) {
        background: #10b981;
    }

    .dashboard-content_z {
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .chart-placeholder_z {
        height: 80px;
        border-radius: 8px;
        background: var(--gradient-primary);
        opacity: 0.1;
        position: relative;
        overflow: hidden;
    }

    .chart-placeholder_z::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s infinite;
    }

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

        100% {
            left: 100%;
        }
    }

    .chart-1_z {
        grid-column: 1 / -1;
        height: 120px;
    }

    /* Features Section */
    .features_z {
        padding: 4rem 0;
        background: var(--bg-light);
    }

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

    .section-title_z {
        font-size: 2rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

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

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

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

    .feature-card_z:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .feature-icon_z {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: var(--gradient-primary);
        color: white;
    }

    .feature-title_z {
        font-size: 1.25rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .feature-description_z {
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Benefits Section */
    .benefits_z {
        padding: 80px 0;
        background: var(--bg-light);
    }

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

    .benefits-title_z {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
    }

    .benefits-list_z {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefit-item_z {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .benefit-icon_z {
        width: 24px;
        height: 24px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.875rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .benefit-text_z h4 {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .benefit-text_z p {
        color: var(--text-light);
        margin-bottom: 0;
    }

    .benefits-stats_z {
        display: grid;
        gap: 1.5rem;
    }

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

    .stat-number_z {
        font-size: 3rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

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

    /* CTA Section */
    .cta_z {
        padding: 80px 0;
        background: var(--gradient-primary);
        color: white;
        text-align: center;
    }

    .cta-title_z {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1rem;
    }

    .cta-description_z {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .cta_z .btn-primary_z:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .cta_z .btn-outline_z {
        border-color: white;
        color: white;
    }

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

    /* Footer */
    .footer_z {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 1rem;
    }

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

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

    .footer-column_z p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

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

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

    .footer-column_z ul li a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
    }

    .footer-column_z ul li a:hover {
        color: white;
    }

    .footer-column_z address {
        color: rgba(255, 255, 255, 0.7);
        font-style: normal;
        line-height: 1.6;
    }

    .footer-column_z address a {
        color: var(--accent-color);
    }

    .footer-bottom_z {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-links_z {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-links_z a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

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

    .footer-bottom_z p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        margin: 0;
    }

    /* Cookie Styles */
    .cookie-popup_z {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .cookie-popup-content_z {
        background: var(--bg-white);
        border-radius: 12px;
        padding: 2rem;
        max-width: 500px;
        width: 100%;
        position: relative;
        box-shadow: var(--shadow-lg);
    }

    .cookie-close-btn_z {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .cookie-close-btn_z:hover {
        background: var(--bg-light);
        color: var(--text-dark);
    }

    .cookie-categories_z {
        margin: 1.5rem 0;
    }

    .cookie-category_z {
        margin-bottom: 1rem;
    }

    .cookie-category-header_z {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .cookie-toggle_z {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .cookie-toggle_z input {
        display: none;
    }

    .cookie-toggle-slider_z {
        width: 40px;
        height: 20px;
        background: var(--border-color);
        border-radius: 20px;
        position: relative;
        transition: all 0.3s ease;
    }

    .cookie-toggle-slider_z::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .cookie-toggle_z input:checked+.cookie-toggle-slider_z {
        background: var(--primary-color);
    }

    .cookie-toggle_z input:checked+.cookie-toggle-slider_z::after {
        left: 22px;
    }

    .cookie-category-info_z h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cookie-category-info_z p {
        font-size: 0.875rem;
        color: var(--text-light);
        margin: 0;
    }

    .cookie-buttons_z {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
        margin-top: 2rem;
    }

    .cookie-btn_z {
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        font-size: 0.875rem;
    }

    .cookie-btn-accept-all_z {
        background: var(--gradient-primary);
        color: white;
    }

    .cookie-btn-save_z {
        background: var(--bg-light);
        color: var(--text-dark);
        border: 1px solid var(--border-color);
    }

    .cookie-banner_z {
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        background: var(--bg-white);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 9999;
        display: none;
        padding: 1.5rem;
        border: 1px solid var(--border-color);
    }

    .cookie-banner-content_z {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .cookie-banner-buttons_z {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-btn-small_z {
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        font-size: 0.875rem;
        background: var(--gradient-primary);
        color: white;
    }

    .cookie-btn-settings_z {
        background: var(--bg-light);
        color: var(--text-dark);
        border: 1px solid var(--border-color);
    }

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

        .mobile-menu-toggle_z {
            display: block;
        }

        .service-description_z {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .service-title_z {
            font-size: 2rem;
        }

        .benefits-content_z {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .cta-buttons_z {
            flex-direction: column;
            align-items: center;
        }

        .footer-bottom_z {
            flex-direction: column;
            text-align: center;
        }

        .cookie-banner-content_z {
            flex-direction: column;
            text-align: center;
        }

        .cookie-banner-buttons_z {
            width: 100%;
            justify-content: center;
        }
    }

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

        .service-header_z {
            padding: 1.5rem 0;
        }

        .service-content_z,
        .features_z,
        .benefits_z,
        .cta_z {
            padding: 3rem 0;
        }

        .features-grid_z {
            grid-template-columns: 1fr;
        }

        .service-title_z {
            font-size: 1.75rem;
        }

        .section-title_z,
        .benefits-title_z,
        .cta-title_z {
            font-size: 1.5rem;
        }

        .dashboard-content_z {
            grid-template-columns: 1fr;
            padding: 1rem;
        }

        .cta-buttons_z {
            flex-direction: column;
        }

        .btn_z {
            width: 100%;
            max-width: 300px;
        }

        .breadcrumb_z {
            font-size: 0.8rem;
        }

        .service-subtitle_z {
            font-size: 1.125rem;
        }
    }


















    .metrics-grid_v {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
}

.metric-card_v {
    background: var(--bg-white);
    padding: 1rem;
    text-align: center;
}

.metric-value_v {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label_v {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features_v {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.service-header_v {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb_v {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb_v a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb_v span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.breadcrumb_v span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-title_v {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle_v {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.section-title_v {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

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

.feature-card_v:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon_v {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
}

.feature-title_v {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description_v {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits_v {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.benefits-title_v {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-list_v {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item_v {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon_v {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text_v h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-text_v p {
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-stats_v {
    display: grid;
    gap: 1.5rem;
}

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

.stat-number_v {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta_v {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-title_v {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-description_v {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cta_v .btn-primary_v:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta_v .btn-outline_v {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer_v {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column_v p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column_v ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column_v ul li a:hover {
    color: white;
}

.footer-column_v address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.6;
}

.footer-column_v address a {
    color: var(--accent-color);
}

.footer-bottom_v {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links_v {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links_v a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom_v p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Styles */
.cookie-popup_v {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-popup-content_v {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.cookie-close-btn_v {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn_v:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-categories_v {
    margin: 1.5rem 0;
}

.cookie-category_v {
    margin-bottom: 1rem;
}

.cookie-category-header_v {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-toggle_v {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-toggle_v input {
    display: none;
}

.cookie-toggle-slider_v {
    width: 40px;
    height: 20px;
    background: var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-toggle-slider_v::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle_v input:checked + .cookie-toggle-slider_v {
    background: var(--primary-color);
}

.cookie-toggle_v input:checked + .cookie-toggle-slider_v::after {
    left: 22px;
}

.cookie-category-info_v h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-category-info_v p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-buttons_v {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-btn_v {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept-all_v {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-save_v {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-banner_v {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.cookie-banner-content_v {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-buttons_v {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn-small_v {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-settings_v {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

    .mobile-menu-toggle_v {
        display: block;
    }

    .service-description_v {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-title_v {
        font-size: 2rem;
    }

    .benefits-content_v {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons_v {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom_v {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content_v {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons_v {
        width: 100%;
        justify-content: center;
    }
}

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

    .service-header_v {
        padding: 1.5rem 0;
    }

    .service-content_v,
    .features_v, 
    .benefits_v, 
    .cta_v {
        padding: 3rem 0;
    }

    .features-grid_v {
        grid-template-columns: 1fr;
    }

    .service-title_v {
        font-size: 1.75rem;
    }

    .section-title_v, 
    .benefits-title_v, 
    .cta-title_v {
        font-size: 1.5rem;
    }

    .cta-buttons_v {
        flex-direction: column;
    }

    .btn_v {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb_v {
        font-size: 0.8rem;
    }

    .service-subtitle_v {
        font-size: 1.125rem;
    }

    .chart-container_z {
        padding: 1rem;
    }

    .bar-chart_v {
        height: 100px;
    }

    .metric-card_v {
        padding: 0.75rem;
    }

    .metric-value_v {
        font-size: 1.25rem;
    }
}















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

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

.btn-primary_b:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

/* Header */
.header_b {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content_b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo_b {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo_b img {
    height: 40px;
    width: auto;
}

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

.nav-link_b {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link_b:hover,
.nav-link_b.active {
    color: var(--primary-color);
}

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

.nav-link_b:hover::after,
.nav-link_b.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle_b {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle_b span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle_b span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle_b span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle_b span:nth-child(3) {
    bottom: 0;
}

.mobile-menu_b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu_b.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay_b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mobile-menu-content_b {
    position: absolute;
    right: -100%;
    top: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu_b.active .mobile-menu-content_b {
    right: 0;
}

.mobile-menu-close_b {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close_b:hover {
    background: var(--bg-light);
}

.mobile-nav-list_b {
    list-style: none;
    padding: 80px 0 40px;
    flex: 1;
}

.mobile-nav-link_b {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-link_b:hover,
.mobile-nav-link_b.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.mobile-menu-footer_b {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.mobile-contact-link_b {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mobile-contact-link_b:last-child {
    margin-bottom: 0;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-toggle_b.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle_b.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle_b.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Service Header */
.service-header_b {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb_b {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb_b a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb_b span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.breadcrumb_b span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-title_b {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle_b {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Content */
.service-content_b {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.description-text_b p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-image_b {
    display: flex;
    justify-content: center;
}

/* Prediction Preview */
.prediction-preview_b {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 450px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.prediction-preview_b:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.prediction-header_b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(91, 33, 182, 0.05) 100%);
}

.prediction-title_b {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.prediction-accuracy_b {
    font-size: 0.875rem;
    color: var(--primary-color);
    background: rgba(91, 33, 182, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
}

.prediction-chart_b {
    padding: 1.5rem;
}

.chart-area_b {
    height: 120px;
    position: relative;
    background: linear-gradient(to right, rgba(91, 33, 182, 0.05) 0%, rgba(37, 99, 235, 0.05) 50%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.historical-data_b,
.forecast-data_b {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 1rem;
}

.historical-data_b {
    width: 60%;
}

.forecast-data_b {
    left: 60%;
    width: 40%;
}

.data-point_b,
.forecast-point_b {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.data-point_b {
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.2);
}

.forecast-point_b {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.data-point_b:hover,
.forecast-point_b:hover {
    transform: scale(1.3);
    cursor: pointer;
}

.prediction-line_b {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(91, 33, 182, 0.3) 60%, rgba(37, 99, 235, 0.4) 100%);
    opacity: 0.6;
    border-radius: 8px;
    pointer-events: none;
}

.prediction-line_b::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 60%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: drawLine 2s ease-in-out infinite alternate;
}

@keyframes drawLine {
    from {
        width: 0;
        opacity: 0.5;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

.chart-legend_b {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.legend-item_b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.legend-color_b.historical {
    background: var(--primary-color);
}

.legend-color_b.forecast {
    background: white;
    border: 2px solid var(--secondary-color);
}

.prediction-insights_b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.insight-card_b {
    background: var(--bg-white);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.insight-card_b:hover {
    background: var(--bg-light);
}

.insight-icon_b {
    font-size: 1.5rem;
}

.insight-text_b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Features Section */
.features_b {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.section-title_b {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.feature-card_b {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card_b::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card_b:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card_b:hover::before {
    left: 100%;
}

.feature-icon_b {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
}

.feature-title_b {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description_b {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits_b {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.benefits-title_b {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-list_b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item_b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon_b {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text_b h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-text_b p {
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-stats_b {
    display: grid;
    gap: 1.5rem;
}

.stat-card_b {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-card_b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.stat-card_b:hover::before {
    transform: scaleX(1);
}

.stat-number_b {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta_b {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta_b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.9;
    z-index: 1;
}

.cta-content_b {
    position: relative;
    z-index: 2;
}

.cta-title_b {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-description_b {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cta_b .btn-primary_b:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta_b .btn-outline_b {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer_b {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column_b p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column_b ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column_b ul li a:hover {
    color: white;
}

.footer-column_b address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.6;
}

.footer-column_b address a {
    color: var(--accent-color);
}

.footer-bottom_b {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links_b {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links_b a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom_b p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Styles */
.cookie-popup_b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-popup-content_b {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.cookie-close-btn_b {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn_b:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-categories_b {
    margin: 1.5rem 0;
}

.cookie-category_b {
    margin-bottom: 1rem;
}

.cookie-category-header_b {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-toggle_b {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-toggle_b input {
    display: none;
}

.cookie-toggle-slider_b {
    width: 40px;
    height: 20px;
    background: var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-toggle-slider_b::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle_b input:checked + .cookie-toggle-slider_b {
    background: var(--primary-color);
}

.cookie-toggle_b input:checked + .cookie-toggle-slider_b::after {
    left: 22px;
}

.cookie-category-info_b h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-category-info_b p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-buttons_b {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-btn_b {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept-all_b {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-save_b {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-banner_b {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.cookie-banner-content_b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-buttons_b {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn-small_b {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-settings_b {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

    .mobile-menu-toggle_b {
        display: block;
    }

    .service-description_b {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-title_b {
        font-size: 2rem;
    }

    .benefits-content_b {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons_b {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom_b {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content_b {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons_b {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-header_b {
        padding: 1.5rem 0;
    }

    .service-content_b,
    .features_b, 
    .benefits_b, 
    .cta_b {
        padding: 3rem 0;
    }

    .features-grid_b {
        grid-template-columns: 1fr;
    }

    .service-title_b {
        font-size: 1.75rem;
    }

    .section-title_b, 
    .benefits-title_b, 
    .cta-title_b {
        font-size: 1.5rem;
    }

    .cta-buttons_b {
        flex-direction: column;
    }

    .btn_b {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb_b {
        font-size: 0.8rem;
    }

    .service-subtitle_b {
        font-size: 1.125rem;
    }

    .prediction-preview_b {
        max-width: 100%;
    }

    .prediction-header_b {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .chart-area_b {
        height: 100px;
    }

    .prediction-insights_b {
        grid-template-columns: 1fr;
    }

    .chart-legend_b {
        flex-direction: column;
        gap: 0.75rem;
    }
}









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

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

.btn-primary_d:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

/* Header */
.header_d {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo_d {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo_d img {
    height: 40px;
    width: auto;
}

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

.nav-link_d {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link_d:hover,
.nav-link_d.active {
    color: var(--primary-color);
}

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

.nav-link_d:hover::after,
.nav-link_d.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle_d {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle_d span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle_d span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle_d span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle_d span:nth-child(3) {
    bottom: 0;
}

.mobile-menu_d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu_d.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay_d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mobile-menu-content_d {
    position: absolute;
    right: -100%;
    top: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu_d.active .mobile-menu-content_d {
    right: 0;
}

.mobile-menu-close_d {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close_d:hover {
    background: var(--bg-light);
}

.mobile-nav-list_d {
    list-style: none;
    padding: 80px 0 40px;
    flex: 1;
}

.mobile-nav-link_d {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-link_d:hover,
.mobile-nav-link_d.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.mobile-menu-footer_d {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.mobile-contact-link_d {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mobile-contact-link_d:last-child {
    margin-bottom: 0;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-toggle_d.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle_d.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle_d.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Service Header */
.service-header_d {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb_d {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb_d a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb_d span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.breadcrumb_d span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-title_d {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle_d {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Content */
.service-content_d {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.description-text_d p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-image_d {
    display: flex;
    justify-content: center;
}

/* Strategy Preview */
.strategy-preview_d {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 450px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.strategy-preview_d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.02) 0%, rgba(37, 99, 235, 0.02) 100%);
    pointer-events: none;
}

.strategy-preview_d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.strategy-header_d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(91, 33, 182, 0.08) 100%);
    position: relative;
    z-index: 1;
}

.strategy-title_d {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.strategy-timeline_d {
    font-size: 0.875rem;
    color: var(--primary-color);
    background: rgba(91, 33, 182, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
}

.maturity-matrix_d {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.maturity-level_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.maturity-level_d:last-child {
    margin-bottom: 0;
}

.level-label_d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 70px;
}

.level-progress_d {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.level-progress_d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: var(--width, 0%);
    transition: width 1.5s ease-in-out;
    animation: progressShine 2s ease-in-out infinite;
}

.level-1 .level-progress_d::after {
    background: linear-gradient(90deg, #10b981, #059669);
}

.level-2 .level-progress_d::after {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.level-3 .level-progress_d::after {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.level-4 .level-progress_d::after {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

@keyframes progressShine {
    0%, 100% {
        box-shadow: none;
    }
    50% {
        box-shadow: 0 0 8px rgba(91, 33, 182, 0.4);
    }
}

.strategy-phases_d {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    margin: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.phase_d {
    background: var(--bg-white);
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.phase_d:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.phase_d.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.phase_d.active .phase-number_d,
.phase_d.active .phase-title_d {
    color: white;
}

.phase-number_d {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phase_d.active .phase-number_d {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.phase-title_d {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.strategy-outcome_d {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(91, 33, 182, 0.2);
    position: relative;
    z-index: 1;
}

.outcome-icon_d {
    font-size: 1.25rem;
}

.outcome-text_d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Features Section */
.features_d {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.section-title_d {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.feature-card_d {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card_d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card_d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card_d:hover::before {
    left: 100%;
}

.feature-icon_d {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card_d:hover .feature-icon_d {
    transform: scale(1.1) rotate(5deg);
}

.feature-title_d {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description_d {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits_d {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.benefits-title_d {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-list_d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item_d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.benefit-item_d:hover {
    background: var(--bg-light);
    transform: translateX(5px);
}

.benefit-icon_d {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text_d h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-text_d p {
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-stats_d {
    display: grid;
    gap: 1.5rem;
}

.stat-card_d {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card_d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.stat-card_d:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card_d:hover::before {
    transform: scaleX(1);
}

.stat-number_d {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card_d:hover .stat-number_d {
    transform: scale(1.1);
}

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

/* CTA Section */
.cta_d {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta_d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    z-index: 1;
}

.cta-content_d {
    position: relative;
    z-index: 2;
}

.cta-title_d {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-description_d {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cta_d .btn-primary_d:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta_d .btn-outline_d {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer_d {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column_d p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column_d ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column_d ul li a:hover {
    color: white;
}

.footer-column_d address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.6;
}

.footer-column_d address a {
    color: var(--accent-color);
}

.footer-bottom_d {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links_d {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links_d a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom_d p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Styles */
.cookie-popup_d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-popup-content_d {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.cookie-close-btn_d {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn_d:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-categories_d {
    margin: 1.5rem 0;
}

.cookie-category_d {
    margin-bottom: 1rem;
}

.cookie-category-header_d {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-toggle_d {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-toggle_d input {
    display: none;
}

.cookie-toggle-slider_d {
    width: 40px;
    height: 20px;
    background: var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-toggle-slider_d::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle_d input:checked + .cookie-toggle-slider_d {
    background: var(--primary-color);
}

.cookie-toggle_d input:checked + .cookie-toggle-slider_d::after {
    left: 22px;
}

.cookie-category-info_d h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-category-info_d p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-buttons_d {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-btn_d {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept-all_d {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-save_d {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-banner_d {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.cookie-banner-content_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-buttons_d {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn-small_d {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-settings_d {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

    .mobile-menu-toggle_d {
        display: block;
    }

    .service-description_d {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-title_d {
        font-size: 2rem;
    }

    .benefits-content_d {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons_d {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom_d {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content_d {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons_d {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .service-header_d {
        padding: 1.5rem 0;
    }

    .service-content_d,
    .features_d, 
    .benefits_d, 
    .cta_d {
        padding: 3rem 0;
    }

    .features-grid_d {
        grid-template-columns: 1fr;
    }

    .service-title_d {
        font-size: 1.75rem;
    }

    .section-title_d, 
    .benefits-title_d, 
    .cta-title_d {
        font-size: 1.5rem;
    }

    .cta-buttons_d {
        flex-direction: column;
    }

    .btn_d {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb_d {
        font-size: 0.8rem;
    }

    .service-subtitle_d {
        font-size: 1.125rem;
    }

    .strategy-preview_d {
        max-width: 100%;
    }

    .strategy-header_d {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .maturity-matrix_d {
        padding: 1rem;
    }

    .strategy-phases_d {
        grid-template-columns: 1fr;
        margin: 1rem;
    }

    .phase_d {
        padding: 0.75rem 0.5rem;
    }

    .strategy-outcome_d {
        margin: 0 1rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}












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

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

.btn-primary_s:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

/* Header */
.header_s {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content_s {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo_s {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo_s img {
    height: 40px;
    width: auto;
}

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

.nav-link_s {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link_s:hover,
.nav-link_s.active {
    color: var(--primary-color);
}

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

.nav-link_s:hover::after,
.nav-link_s.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle_s {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle_s span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle_s span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle_s span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle_s span:nth-child(3) {
    bottom: 0;
}

.mobile-menu_s {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu_s.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay_s {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mobile-menu-content_s {
    position: absolute;
    right: -100%;
    top: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu_s.active .mobile-menu-content_s {
    right: 0;
}

.mobile-menu-close_s {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close_s:hover {
    background: var(--bg-light);
}

.mobile-nav-list_s {
    list-style: none;
    padding: 80px 0 40px;
    flex: 1;
}

.mobile-nav-link_s {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-link_s:hover,
.mobile-nav-link_s.active {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.mobile-menu-footer_s {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.mobile-contact-link_s {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mobile-contact-link_s:last-child {
    margin-bottom: 0;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-toggle_s.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle_s.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle_s.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Service Header */
.service-header_s {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb_s {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb_s a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb_s span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.breadcrumb_s span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-title_s {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle_s {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Content */
.service-content_s {
    padding: 4rem 0;
    background: var(--bg-white);
}

.service-description_s {
text-align: center;
}

.description-text_s p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-image_s {
    display: flex;
    justify-content: center;
}

/* Big Data Preview */
.bigdata-preview_s {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(91, 33, 182, 0.02) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    min-height: 320px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    padding: 1.5rem;
}

.bigdata-preview_s:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cloud-architecture_s {
    position: relative;
    height: 250px;
    width: 100%;
}

.cloud-layer_s {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.cloud-node_s {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cloud-node_s:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cloud-icon_s {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cloud-label_s {
    font-size: 0.875rem;
    font-weight: 600;
}

.data-streams_s {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
}

.stream_s {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
    animation: dataFlow 2s ease-in-out infinite;
}

.stream-1 {
    left: 25%;
    animation-delay: 0s;
}

.stream-2 {
    left: 50%;
    animation-delay: 0.7s;
}

.stream-3 {
    left: 75%;
    animation-delay: 1.4s;
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.stream_s::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: dataPoint 2s ease-in-out infinite;
    animation-delay: inherit;
}

@keyframes dataPoint {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 80px;
        opacity: 0;
    }
}

.server-cluster_s {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    z-index: 2;
}

.server_s {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.server_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.1), transparent);
    transition: left 0.6s ease;
}

.server_s:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.server_s:hover::before {
    left: 100%;
}

.server-status_s {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.server-status_s.active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

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

.server-label_s {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.performance-monitor_s {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.05), rgba(37, 99, 235, 0.05));
    padding: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.monitor-item_s {
    text-align: center;
    flex: 1;
}

.monitor-value_s {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.monitor-label_s {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-flow-indicator_s {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: flowIndicator 3s ease-in-out infinite;
}

@keyframes flowIndicator {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        opacity: 1;
    }
}

.flow-arrow_s {
    display: inline-block;
    margin-right: 0.5rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Features Section */
.features_s {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.section-title_s {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.feature-card_s {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card_s:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card_s:hover::before {
    left: 100%;
}

.feature-icon_s {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-card_s:hover .feature-icon_s {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(91, 33, 182, 0.3);
}

.feature-title_s {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description_s {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits_s {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.benefits-title_s {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-list_s {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item_s {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
}

.benefit-item_s:hover {
    background: var(--bg-light);
    transform: translateX(10px);
}

.benefit-icon_s {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.2);
}

.benefit-text_s h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-text_s p {
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-stats_s {
    display: grid;
    gap: 1.5rem;
}

.stat-card_s {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.stat-card_s::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.02), rgba(37, 99, 235, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card_s:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card_s:hover::before {
    transform: scaleX(1);
}

.stat-card_s:hover::after {
    opacity: 1;
}

.stat-number_s {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card_s:hover .stat-number_s {
    transform: scale(1.1);
}

.stat-label_s {
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

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

.cta_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="30" cy="30" r="2"/></g></svg>');
    z-index: 1;
}

.cta_s::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

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

.cta-content_s {
    position: relative;
    z-index: 2;
}

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

.cta-description_s {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta_s .btn-primary_s {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta_s .btn-primary_s:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.cta_s .btn-outline_s {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

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

/* Footer */
.footer_s {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column_s p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column_s ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column_s ul li a:hover {
    color: white;
}

.footer-column_s address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.6;
}

.footer-column_s address a {
    color: var(--accent-color);
}

.footer-bottom_s {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links_s {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links_s a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom_s p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Styles */
.cookie-popup_s {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-popup-content_s {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.cookie-close-btn_s {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn_s:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-categories_s {
    margin: 1.5rem 0;
}

.cookie-category_s {
    margin-bottom: 1rem;
}

.cookie-category-header_s {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-toggle_s {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-toggle_s input {
    display: none;
}

.cookie-toggle-slider_s {
    width: 40px;
    height: 20px;
    background: var(--border-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-toggle-slider_s::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle_s input:checked + .cookie-toggle-slider_s {
    background: var(--primary-color);
}

.cookie-toggle_s input:checked + .cookie-toggle-slider_s::after {
    left: 22px;
}

.cookie-category-info_s h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-category-info_s p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-buttons_s {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-btn_s {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept-all_s {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-save_s {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-banner_s {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.cookie-banner-content_s {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-buttons_s {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn-small_s {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-settings_s {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

    .mobile-menu-toggle_s {
        display: block;
    }

    .service-description_s {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-title_s {
        font-size: 2rem;
    }

    .benefits-content_s {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons_s {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom_s {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-content_s {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons_s {
        width: 100%;
        justify-content: center;
    }

    .server-cluster_s {
        flex-direction: column;
        gap: 0.5rem;
    }

    .data-flow-indicator_s {
        position: static;
        transform: none;
        margin-top: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .service-header_s {
        padding: 1.5rem 0;
    }

    .service-content_s,
    .features_s, 
    .benefits_s, 
    .cta_s {
        padding: 3rem 0;
    }

    .features-grid_s {
        grid-template-columns: 1fr;
    }

    .service-title_s {
        font-size: 1.75rem;
    }

    .section-title_s, 
    .benefits-title_s, 
    .cta-title_s {
        font-size: 1.5rem;
    }

    .cta-buttons_s {
        flex-direction: column;
    }

    .btn_s {
        width: 100%;
        max-width: 300px;
    }

    .breadcrumb_s {
        font-size: 0.8rem;
    }

    .service-subtitle_s {
        font-size: 1.125rem;
    }

    .bigdata-preview_s {
        max-width: 100%;
        padding: 1rem;
        min-height: 280px;
    }

    .cloud-architecture_s {
        height: 200px;
    }

    .server-cluster_s {
        bottom: 40px;
    }

    .performance-monitor_s {
        flex-direction: column;
        gap: 0.5rem;
    }

    .monitor-item_s {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .monitor-value_s {
        margin-bottom: 0;
    }

    .stat-card_s {
        padding: 2rem 1.5rem;
    }

    .stat-number_s {
        font-size: 2.5rem;
    }
}