/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2340;
    --color-accent: #e2a83e;
    --color-accent-dark: #c9922e;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a365d;
    --color-border: #e2e8f0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    padding: 1rem 0;
}

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

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

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

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    gap: 0.5rem;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition), color var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

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

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

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

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

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
}

.hero-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

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

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

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

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

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.page-hero-compact p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========================================
   Section Styles
======================================== */
section {
    padding: 4rem 0;
}

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

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
}

.section-header-left p {
    margin: 0;
}

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

/* ========================================
   Philosophy Section
======================================== */
.philosophy {
    background-color: var(--color-bg-alt);
}

.philosophy-content {
    margin-bottom: 3rem;
}

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

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

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

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    margin-bottom: 0;
}

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

/* ========================================
   Stats Section
======================================== */
.stats-section {
    background-color: var(--color-primary);
    padding: 3rem 0;
}

.stats-section-dark {
    background-color: var(--color-primary-dark);
}

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

.stat-item {
    text-align: center;
    flex: 1 1 140px;
    max-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* ========================================
   Services Preview
======================================== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

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

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

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

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

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   Process Section
======================================== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

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

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

/* ========================================
   Case Examples
======================================== */
.case-examples {
    background-color: var(--color-bg-alt);
}

.cases-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.case-visual {
    background-color: var(--color-bg-alt);
    padding: 1rem;
}

.case-visual svg {
    max-width: 100%;
    height: auto;
}

.case-content {
    padding: 1.5rem;
}

.case-location {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
}

.case-content h3 {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.case-content > p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

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

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

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

.result-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ========================================
   Testimonials
======================================== */
.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 0.75rem;
}

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

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
}

.author-info {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========================================
   Industries Section
======================================== */
.industries-section {
    background-color: var(--color-bg-alt);
}

.industries-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.industries-text h2 {
    margin-bottom: 1rem;
}

.industries-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.industries-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.industries-list li svg {
    flex-shrink: 0;
}

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

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

/* ========================================
   FAQ Section
======================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--color-bg-alt);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

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

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

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    background-color: var(--color-bg);
}

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

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

/* ========================================
   Knowledge Section
======================================== */
.knowledge-section {
    background-color: var(--color-primary);
}

.knowledge-content {
    color: var(--color-bg);
}

.knowledge-content .section-label {
    color: var(--color-accent);
}

.knowledge-content h2 {
    color: var(--color-bg);
    margin-bottom: 2rem;
}

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

.tip-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.tip-card h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background-color: var(--color-bg-alt);
    text-align: center;
}

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

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

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand .logo {
    color: var(--color-bg);
    margin-bottom: 1rem;
}

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

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

.footer-column h4 {
    color: var(--color-bg);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

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

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

/* ========================================
   Cookie Banner
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary-dark);
    color: var(--color-bg);
    padding: 1rem;
    z-index: 1001;
    box-shadow: 0 -4px 10px 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;
}

.cookie-content p {
    font-size: 0.875rem;
    margin: 0;
}

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

/* ========================================
   Cookie Modal
======================================== */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

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

.modal-content {
    position: relative;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    padding: 0.25rem;
}

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

.modal-body {
    padding: 1.25rem;
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-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 span,
.cookie-option-header label {
    font-weight: 500;
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background-color: var(--color-bg-alt);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.modal-footer .btn {
    flex: 1;
    min-width: 120px;
}

/* ========================================
   About Page Styles
======================================== */
.story-section {
    background-color: var(--color-bg);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

.values-section {
    background-color: var(--color-bg-alt);
}

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

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

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

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

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

.team-section {
    background-color: var(--color-bg);
}

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

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

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

.team-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

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

.milestones-section {
    background-color: var(--color-bg-alt);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    transform: translateX(-50%);
}

.timeline-year {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

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

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

.approach-section {
    background-color: var(--color-bg);
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.approach-visual svg {
    max-width: 320px;
}

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

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

.approach-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item svg {
    flex-shrink: 0;
}

.certifications-section {
    background-color: var(--color-bg);
}

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

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

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

.cert-item h4 {
    margin-bottom: 0.5rem;
}

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

/* ========================================
   Services Page Styles
======================================== */
.services-overview {
    background-color: var(--color-bg);
}

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

.service-detail-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.service-title-block h3 {
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent);
}

.service-body {
    padding: 1.5rem;
}

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

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

.service-includes li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.pricing-notes {
    background-color: var(--color-bg-alt);
    padding: 2rem 0;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

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

.pricing-text h3 {
    margin-bottom: 0.5rem;
}

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

.benefits-section {
    background-color: var(--color-bg);
}

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

.benefit-card {
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.benefit-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

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

.comparison-section {
    background-color: var(--color-bg-alt);
}

.comparison-table {
    overflow-x: auto;
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
}

.comparison-header,
.comparison-row {
    display: flex;
    min-width: 600px;
}

.comparison-header {
    border-bottom: 2px solid var(--color-primary);
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

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

.comparison-header .comparison-cell {
    background-color: var(--color-bg);
}

.comparison-row {
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:nth-child(odd) {
    background-color: var(--color-bg);
}

.comparison-featured {
    background-color: rgba(226, 168, 62, 0.1) !important;
}

.package-name {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.package-price {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-accent);
}

.check-yes {
    color: #38a169;
    font-weight: 500;
}

.check-no {
    color: var(--color-text-muted);
}

.check-partial {
    color: var(--color-accent);
    font-weight: 500;
}

.process-detailed {
    background-color: var(--color-bg);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item {
    display: flex;
    gap: 1rem;
}

.process-marker {
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.process-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

/* ========================================
   Contact Page Styles
======================================== */
.contact-info-section {
    background-color: var(--color-bg);
}

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

.contact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

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

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

.contact-card p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

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

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.company-details {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.company-details h3 {
    margin-bottom: 1rem;
}

.company-data-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-data-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.company-data-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.data-value {
    font-weight: 500;
    color: var(--color-text);
    text-align: right;
}

.directions-section {
    background-color: var(--color-bg);
}

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

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

.directions-visual svg {
    max-width: 400px;
}

.directions-text h2 {
    margin-bottom: 1rem;
}

.directions-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

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

.direction-item {
    display: flex;
    gap: 1rem;
}

.direction-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.direction-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.coverage-section {
    background-color: var(--color-bg-alt);
}

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

.coverage-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.coverage-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.coverage-item h3 {
    margin-bottom: 0.5rem;
}

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

.response-section {
    background-color: var(--color-bg);
    padding: 2rem 0;
}

.response-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-accent);
}

.response-text h3 {
    margin-bottom: 0.5rem;
}

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

.additional-contact {
    background-color: var(--color-bg-alt);
}

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

.additional-item {
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.additional-item h3 {
    margin-bottom: 0.5rem;
}

.additional-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.additional-item a {
    font-weight: 500;
}

/* ========================================
   Thank You Page Styles
======================================== */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.step-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meanwhile-section {
    background-color: var(--color-bg-alt);
}

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

.meanwhile-card {
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
}

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

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

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

/* ========================================
   Legal Pages Styles
======================================== */
.legal-content {
    padding: 3rem 0;
}

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

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

.legal-section:last-child {
    margin-bottom: 0;
}

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

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

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

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

.legal-section li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-accent);
}

.legal-info-box {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

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

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

.right-card {
    padding: 1.25rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    color: var(--color-text-light);
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (min-width: 640px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stats-grid {
        gap: 3rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .philosophy-values {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .testimonials-slider {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .tips-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .certifications-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cert-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .contact-card {
        flex: 1;
    }

    .coverage-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .coverage-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .additional-grid {
        flex-direction: row;
    }

    .additional-item {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .meanwhile-grid {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    .rights-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .cookie-actions {
        flex-wrap: nowrap;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }
}

/* ========================================
   Responsive - Desktop
======================================== */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border-bottom: none;
        padding: 0;
        gap: 0.25rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .philosophy .container {
        display: flex;
        gap: 4rem;
    }

    .philosophy-content {
        flex: 1;
        margin-bottom: 0;
    }

    .philosophy-values {
        flex: 1;
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 auto;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .cases-grid {
        flex-direction: row;
    }

    .case-card {
        flex: 1;
    }

    .testimonials-slider {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .industries-content {
        flex-direction: row;
        align-items: center;
    }

    .industries-text {
        flex: 1;
    }

    .industries-visual {
        flex: 1;
    }

    .tips-grid {
        flex-wrap: nowrap;
    }

    .tip-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        gap: 4rem;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-card {
        flex: 1;
    }

    .approach-content {
        flex-direction: row;
        align-items: center;
    }

    .approach-visual {
        flex: 1;
        order: -1;
    }

    .approach-text {
        flex: 1;
    }

    .certifications-grid {
        flex-wrap: nowrap;
    }

    .cert-item {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
    }

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

    .benefit-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .company-info-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .company-description {
        flex: 2;
    }

    .company-details {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
        align-items: center;
    }

    .directions-visual {
        flex: 1;
    }

    .directions-text {
        flex: 1;
    }

    .coverage-grid {
        flex-wrap: nowrap;
    }

    .coverage-item {
        flex: 1;
    }

    .response-box {
        flex-direction: row;
        text-align: left;
    }

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

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

    .pricing-box {
        flex-direction: row;
        align-items: center;
    }
}