/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

/* ===================================
   LAYOUT
   =================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    height: 72px;
}

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

@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
}

.logo:hover {
    color: #0f172a;
}

.logo svg {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #f1f5f9;
    color: #2563eb;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        transform: none;
        padding: 0;
        gap: 0.25rem;
        background: transparent;
        overflow: visible;
    }

    .nav-menu li a {
        padding: 0.5rem 1rem;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-outline {
    background: transparent;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    background: #f8fafc;
    color: #1e293b;
}

.btn-light {
    background: #ffffff;
    color: #2563eb;
}

.btn-light:hover {
    background: #f8fafc;
    color: #1d4ed8;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .hero {
        padding: 5rem 0 6rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 0 0 400px;
    }
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-compact {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

section > .container > h2 {
    margin-bottom: 2rem;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */

.philosophy {
    background: #f8fafc;
}

.philosophy .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .philosophy .container {
        flex-direction: row;
        align-items: flex-start;
    }

    .philosophy-content {
        flex: 1;
    }

    .philosophy-values {
        flex: 0 0 380px;
    }
}

.philosophy-content h2 {
    margin-bottom: 1.25rem;
}

.philosophy-content p {
    color: #475569;
    margin-bottom: 1rem;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.value-card svg {
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* ===================================
   FEATURED SERVICES
   =================================== */

.featured-services {
    background: #ffffff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .services-grid .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .services-grid .service-card.featured {
        flex: 1 1 100%;
    }
}

@media (min-width: 992px) {
    .services-grid .service-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .services-grid .service-card.featured {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

.service-card {
    background: #f8fafc;
    padding: 1.75rem;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    color: #ffffff;
}

.service-card.featured h3,
.service-card.featured p {
    color: #ffffff;
}

.service-card.featured .service-link {
    color: #c7d2fe;
}

.service-card.featured .service-link:hover {
    color: #ffffff;
}

.service-icon {
    margin-bottom: 1.25rem;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #475569;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #2563eb;
}

.service-link:hover {
    text-decoration: underline;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
    background: #f8fafc;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-steps .step {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

.step {
    display: flex;
    gap: 1.25rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.step-content p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
    background: #ffffff;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial {
        flex: 1;
    }
}

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #0f172a;
}

.testimonial footer span {
    font-size: 0.875rem;
    color: #64748b;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #ffffff;
}

.stats-section .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .stats-section .container {
        flex-direction: row;
        align-items: center;
    }

    .stats-content {
        flex: 1;
    }

    .stats-grid {
        flex: 1;
    }
}

.stats-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.stats-content p {
    color: #c7d2fe;
    font-size: 1.0625rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-card {
    flex: 1 1 calc(50% - 0.5rem);
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #c7d2fe;
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */

.industries {
    background: #f8fafc;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(50% - 0.5rem);
}

@media (min-width: 768px) {
    .industry-item {
        flex: 1 1 calc(33.333% - 0.67rem);
    }
}

.industry-item span {
    font-weight: 500;
    color: #1e293b;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #475569;
}

/* ===================================
   INSIGHTS SECTION
   =================================== */

.insights {
    background: #f8fafc;
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .insights-grid {
        flex-direction: row;
    }

    .insight-card {
        flex: 1;
    }
}

.insight-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
}

.insight-icon {
    margin-bottom: 1.25rem;
}

.insight-card h3 {
    margin-bottom: 0.75rem;
}

.insight-card p {
    color: #475569;
    font-size: 0.9375rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    text-align: center;
}

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

.cta-content p {
    color: #c7d2fe;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-nav,
    .footer-legal,
    .footer-contact {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .footer-brand {
        flex: 2;
    }

    .footer-nav,
    .footer-legal,
    .footer-contact {
        flex: 1;
    }
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer ul a {
    color: #94a3b8;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer ul a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #e2e8f0;
    padding: 1.25rem;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-content p {
    font-size: 0.9375rem;
    flex: 1;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===================================
   COOKIE MODAL
   =================================== */

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    padding: 0.5rem;
    color: #64748b;
    transition: color 0.2s ease;
}

.cookie-modal-close:hover {
    color: #0f172a;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.cookie-always-on {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 600;
}

.cookie-option p {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 2rem;
}

.cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-modal-footer .btn {
    flex: 1;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.story .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .story .container {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 0 0 300px;
    }
}

.story-text h2 {
    margin-bottom: 1.25rem;
}

.story-text p {
    color: #475569;
    margin-bottom: 1rem;
}

.values-section {
    background: #f8fafc;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

.value-block {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.value-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.value-block h3 {
    margin-bottom: 0.75rem;
}

.value-block p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Team Section */
.team {
    background: #ffffff;
}

.team-intro {
    max-width: 700px;
    color: #475569;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media (min-width: 992px) {
    .team-member {
        flex: 1 1 calc(25% - 1.125rem);
    }
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
}

.member-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.team-member p:last-child {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Timeline */
.milestones {
    background: #f8fafc;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 72px;
    height: 40px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}

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

.timeline-content p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Achievements */
.achievements {
    background: #ffffff;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.achievement-card {
    flex: 1 1 calc(50% - 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .achievement-card {
        flex: 1 1 calc(25% - 0.75rem);
    }
}

.achievement-icon {
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.achievement-card p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Partners */
.partners {
    background: #f8fafc;
}

.partners-intro {
    color: #475569;
    max-width: 700px;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.partner-logo {
    flex: 0 0 auto;
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

.services-overview {
    background: #ffffff;
    padding: 2rem 0;
}

.services-intro h2 {
    margin-bottom: 1.5rem;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Service Detail Cards */
.services-list {
    background: #f8fafc;
}

.services-list .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    background: #f8fafc;
}

@media (min-width: 768px) {
    .service-detail-header {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-title {
        flex: 1;
    }

    .service-detail-price {
        text-align: right;
    }
}

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-title .service-badge {
    background: #fef3c7;
    color: #92400e;
}

.service-detail-title h2 {
    margin-bottom: 0.25rem;
}

.service-tagline {
    color: #64748b;
    font-size: 1rem;
}

.service-detail-price {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

.service-detail-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-detail-body {
        flex-direction: row;
    }

    .service-description {
        flex: 2;
    }

    .service-includes,
    .service-skills {
        flex: 1;
    }
}

.service-detail-body h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description p {
    color: #475569;
    margin-bottom: 1rem;
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    font-size: 0.9375rem;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
}

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

.skill-tags span {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Comparison Table */
.comparison {
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
}

.comparison-table td {
    font-size: 0.9375rem;
    color: #475569;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

/* Process Grid */
.process-section {
    background: #f8fafc;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.process-step {
    flex: 1 1 calc(50% - 0.75rem);
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
}

@media (min-width: 992px) {
    .process-step {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e0e7ff;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Benefits Grid */
.benefits-section {
    background: #ffffff;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 0.75rem);
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

@media (min-width: 992px) {
    .benefit-card {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-main {
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-description {
        flex: 1;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    font-weight: 600;
    font-size: 1rem;
}

.contact-note {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.contact-description h2 {
    margin-bottom: 1rem;
}

.contact-description > p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.contact-topics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.topic-item span {
    font-size: 0.9375rem;
    color: #1e293b;
}

/* Directions */
.directions {
    background: #f8fafc;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .directions-content {
        flex-direction: row;
    }

    .direction-block {
        flex: 1;
    }
}

.direction-block {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
}

.direction-block h3 {
    margin-bottom: 0.75rem;
}

.direction-block p {
    color: #64748b;
    font-size: 0.9375rem;
}

/* Company Info */
.company-info {
    background: #ffffff;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-detail-item {
    flex: 1 1 calc(50% - 0.5rem);
    background: #f8fafc;
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 500;
    color: #0f172a;
}

/* Contact CTA */
.contact-cta {
    background: #f8fafc;
}

.cta-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cta-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.cta-box h2 {
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* ===================================
   THANK YOU PAGE STYLES
   =================================== */

.thank-you-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #dcfce7 100%);
}

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .next-steps-grid {
        flex-direction: row;
    }

    .next-step-card {
        flex: 1;
    }
}

.next-step-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.next-step-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.next-step-card h3 {
    margin-bottom: 0.5rem;
}

.next-step-card p {
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.link-arrow {
    font-weight: 600;
    color: #2563eb;
}

.link-arrow:hover {
    text-decoration: underline;
}

.back-home {
    text-align: center;
}

/* ===================================
   LEGAL PAGES STYLES
   =================================== */

.legal-content {
    padding: 3rem 0;
}

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

.legal-intro {
    font-size: 1.0625rem;
    color: #475569;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e7ff;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #475569;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    position: relative;
    color: #475569;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #2563eb;
}

.legal-section address {
    font-style: normal;
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.info-box {
    background: #f8fafc;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.info-box p {
    margin-bottom: 0.25rem;
}

.legal-table {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.legal-table-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
}

.legal-table-row:last-child {
    border-bottom: none;
}

.legal-table-cell {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.legal-table-cell strong {
    color: #0f172a;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.right-card {
    flex: 1 1 calc(50% - 0.5rem);
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 8px;
}

.right-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.right-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Cookie Policy Specific */
.cookie-type-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cookie-type-card h3 {
    margin-top: 0;
}

.cookie-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: #dbeafe;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
}

.cookie-examples {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-examples h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cookie-examples ul {
    padding-left: 1.25rem;
}

.cookie-examples li {
    font-size: 0.875rem;
}

.cookies-table {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.cookies-table-header,
.cookies-table-row {
    display: flex;
}

.cookies-table-header {
    background: #e2e8f0;
    font-weight: 600;
    font-size: 0.875rem;
}

.cookies-table-header span,
.cookies-table-row span {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.875rem;
}

.cookies-table-row {
    border-top: 1px solid #e2e8f0;
}

.cookies-table-row span {
    color: #475569;
}

#openCookieSettings {
    margin: 1rem 0;
}

/* ===================================
   ACCESSIBILITY & UTILITIES
   =================================== */

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

:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

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

    html {
        scroll-behavior: auto;
    }
}
