/* ===================================
   CSS Variables & Base Styles
   =================================== */

:root {
    --primary: #6B4E9B;
    --primary-dark: #4A3570;
    --secondary: #4ECDC4;
    --accent: #FFD93D;
    --danger: #FF6B6B;
    --text: #2D2D2D;
    --text-light: #666666;
    --bg: #FFFFFF;
    --bg-alt: #F5F0FA;
    --bg-light: #FAFAFA;
    --border: #E8E0F0;
    --shadow: rgba(107, 78, 155, 0.1);
    --shadow-lg: rgba(107, 78, 155, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ===================================
   Layout
   =================================== */

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

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-tag.center {
    display: block;
    text-align: center;
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem;
    color: var(--text-light);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

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

.btn-secondary {
    background-color: var(--bg-alt);
    color: var(--primary);
    border-color: var(--bg-alt);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg);
    box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition);
}

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

.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: all var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

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

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

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 400px;
    width: 100%;
}

/* ===================================
   Page Hero
   =================================== */

.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Philosophy Section
   =================================== */

.philosophy-section {
    padding: 5rem 0;
}

.philosophy-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    margin-top: 0.5rem;
}

.philosophy-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.philosophy-svg {
    max-width: 300px;
}

/* ===================================
   Services Preview
   =================================== */

.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card.featured {
    border: 2px solid var(--primary);
}

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

.service-card h3 {
    color: var(--primary-dark);
}

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

/* ===================================
   Process Section
   =================================== */

.process-section {
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-steps.horizontal {
    align-items: flex-start;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

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

/* ===================================
   Values Section
   =================================== */

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

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

/* ===================================
   Industries Section
   =================================== */

.industries-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.industries-section .container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.industries-content {
    flex: 1;
}

.industries-list {
    margin-top: 1.5rem;
}

.industries-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.industries-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.industries-svg {
    max-width: 300px;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

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

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
}

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

.cta-section .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text);
}

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

/* ===================================
   Footer
   =================================== */

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

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2;
}

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

.footer-brand .logo:hover {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

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

/* ===================================
   Cookie Modal
   =================================== */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
    transition: color var(--transition);
}

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

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

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

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

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.cookie-badge {
    font-size: 0.75rem;
    background-color: var(--bg-alt);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

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

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

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

/* ===================================
   Services Page
   =================================== */

.services-main {
    padding: 4rem 0;
}

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

.category-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.category-icon {
    flex-shrink: 0;
}

.category-intro h2 {
    margin-top: 0;
}

.category-intro p {
    color: var(--text-light);
    margin: 0;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-detail-card {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 0.75rem);
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

.service-detail-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

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

.service-price {
    font-weight: 700;
    color: var(--primary);
}

/* ===================================
   Benefits Section
   =================================== */

.benefits-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

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

.benefit-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
}

/* ===================================
   Comparison Section
   =================================== */

.comparison-section {
    padding: 5rem 0;
}

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

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

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-cell.empty {
    background: transparent;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 500;
}

.comparison-header .comparison-cell {
    font-weight: 700;
    background-color: var(--bg-alt);
}

.comparison-cell.featured {
    background-color: var(--bg-alt);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-header .comparison-cell.featured {
    border-top: 2px solid var(--primary);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.comparison-row:last-child .comparison-cell.featured {
    border-bottom: 2px solid var(--primary);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

/* ===================================
   Contact Page
   =================================== */

.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-block:first-child {
    padding-top: 0;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details a {
    font-size: 1.125rem;
}

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

.contact-description {
    flex: 1;
}

.description-card {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.description-card h2 {
    margin-top: 0;
}

.description-card p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Company Info Section
   =================================== */

.company-info-section {
    padding: 3rem 0;
    background-color: var(--bg-alt);
}

.company-info-card {
    background-color: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.company-info-card h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

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

.info-item {
    flex: 1;
    min-width: 200px;
}

.info-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* ===================================
   Contact Tips
   =================================== */

.contact-tips {
    padding: 3rem 0;
}

.tips-grid {
    display: flex;
    gap: 2rem;
}

.tip-card {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-alt);
    border-radius: var(--radius);
}

.tip-icon {
    flex-shrink: 0;
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-section {
    padding: 4rem 0;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thank-you-info {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.thank-you-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.next-steps .step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.next-steps .step-icon {
    flex-shrink: 0;
}

.next-steps .step p {
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.additional-info {
    padding: 3rem 0;
    background-color: var(--bg-alt);
}

.info-cards {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background-color: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
}

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

.info-card p {
    margin: 0;
    color: var(--text-light);
}

/* ===================================
   About Page
   =================================== */

.story-section {
    padding: 5rem 0;
}

.story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    flex: 1;
}

.story-svg {
    max-width: 350px;
}

.story-content {
    flex: 1;
}

/* ===================================
   Milestones
   =================================== */

.milestones-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-left: 3px solid var(--primary);
    padding-left: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 1.75rem;
    width: 13px;
    height: 13px;
    background-color: var(--primary);
    border-radius: 50%;
}

.milestone-year {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
}

.milestone-content h3 {
    margin-bottom: 0.25rem;
}

.milestone-content p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Team Section
   =================================== */

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 1.5rem;
}

.member-avatar {
    margin-bottom: 1rem;
}

.member-role {
    display: block;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.team-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   Philosophy Detailed
   =================================== */

.philosophy-detailed {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.philosophy-cards {
    display: flex;
    gap: 2rem;
}

.philosophy-card {
    flex: 1;
    background-color: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

.philosophy-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    padding: 5rem 0;
}

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

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
}

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

.stat-card .stat-number {
    font-size: 2.5rem;
}

.stat-card .stat-label {
    display: block;
    margin-top: 0.5rem;
}

/* ===================================
   Certifications
   =================================== */

.certifications-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.certification-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background-color: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.certification-icon {
    flex-shrink: 0;
}

.certification-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.certification-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ===================================
   Legal Pages
   =================================== */

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

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

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

.legal-article h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.legal-article h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-article ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
}

.legal-info-box {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.legal-info-box p {
    margin: 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-footer p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   GDPR Page Specific
   =================================== */

.gdpr-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.gdpr-category {
    flex: 1;
    min-width: 200px;
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.gdpr-category h3 {
    margin-top: 0;
    font-size: 1rem;
    color: var(--primary);
}

.gdpr-category ul {
    margin-bottom: 0;
}

.legal-basis-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-basis-item {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.legal-basis-item h3 {
    margin-top: 0;
    font-size: 1rem;
    color: var(--primary-dark);
}

.legal-basis-item p {
    margin: 0;
    color: var(--text-light);
}

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

.right-item {
    flex: 1;
    min-width: 220px;
    padding: 1rem;
}

.right-icon {
    margin-bottom: 0.5rem;
}

.right-item h3 {
    font-size: 1rem;
}

.right-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Cookies Page Specific
   =================================== */

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
}

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

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

.cookie-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.cookie-status.required {
    background-color: var(--secondary);
    color: white;
}

.cookie-status.optional {
    background-color: var(--bg);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-details {
    margin-top: 1rem;
}

.cookie-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cookie-details th,
.cookie-details td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-details th {
    background-color: var(--bg);
    font-weight: 600;
}

.cookie-details tr:last-child td {
    border-bottom: none;
}

/* ===================================
   Mobile Responsive
   =================================== */

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

    h2 {
        font-size: 1.75rem;
    }

    .hero .container,
    .philosophy-grid,
    .story-grid,
    .industries-section .container {
        flex-direction: column;
    }

    .hero-visual,
    .philosophy-visual,
    .story-visual,
    .industries-visual {
        order: -1;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .testimonials-grid,
    .philosophy-cards {
        flex-direction: column;
    }

    .service-detail-card {
        max-width: 100%;
    }

    .process-steps.horizontal {
        flex-direction: column;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 4px 20px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 300px;
    }

    .tips-grid,
    .info-cards {
        flex-direction: column;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero,
    .page-hero {
        padding: 3rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-cell {
        padding: 0.75rem 0.5rem;
    }
}

/* ===================================
   Accessibility
   =================================== */

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

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

/* Hidden attribute support */
[hidden] {
    display: none !important;
}
