/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #dbeafe;
    --color-secondary: #6366f1;
    --color-accent: #10b981;
    --color-warning: #f59e0b;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #111827;
    --color-border: #e5e7eb;
    --font-sans: -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 -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --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;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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-primary-dark);
}

ul, ol {
    list-style: none;
}

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

address {
    font-style: normal;
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

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

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

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 2rem;
}

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

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

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

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

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

.btn-text {
    background: transparent;
    color: var(--color-text-light);
    padding: 0.75rem 1rem;
}

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

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

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: 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 1rem;
}

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

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

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

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

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

.nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    transition: background var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-illustration {
    max-width: 350px;
}

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

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

.page-subtitle {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

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

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy {
    padding: 4rem 0;
}

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

.philosophy-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========================================
   Services Preview
   ======================================== */
.services-preview {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.services-preview h2 {
    text-align: center;
}

.services-preview .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.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-section {
    padding: 4rem 0;
}

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

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
}

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

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

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

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.testimonial-card.featured {
    border-left-color: var(--color-accent);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* ========================================
   Industries Section
   ======================================== */
.industries-section {
    padding: 4rem 0;
}

.industries-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.industry-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.industry-item svg {
    margin: 0 auto 1rem;
}

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

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

/* ========================================
   Tips Section
   ======================================== */
.tips-section {
    padding: 4rem 0;
    background: var(--color-primary-light);
}

.tips-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.tip-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.tip-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

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

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

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--color-text);
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
}

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

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

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 4rem 0;
    background: var(--color-bg-dark);
    color: #fff;
}

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

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

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 3rem 0 1.5rem;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

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

.footer-brand {
    max-width: 300px;
}

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

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

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

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

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

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

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

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
}

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

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

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

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

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

/* ========================================
   Cookie Modal
   ======================================== */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.active {
    display: flex;
}

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

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

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.option-header {
    margin-bottom: 0.5rem;
}

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

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

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

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

.modal-actions .btn {
    flex: 1;
}

/* ========================================
   Services Page - Detailed
   ======================================== */
.services-main {
    padding: 3rem 0;
}

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

.service-detail {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-detail.alternate {
    background: var(--color-bg-alt);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

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

.service-price {
    text-align: center;
    padding: 1rem;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.price-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.service-body p {
    margin-bottom: 1rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

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

/* ========================================
   Comparison Table
   ======================================== */
.comparison-section {
    padding: 3rem 0;
    background: var(--color-bg-alt);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--color-primary-light);
}

/* ========================================
   Benefits Grid
   ======================================== */
.benefits-section {
    padding: 3rem 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

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

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

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

/* ========================================
   About Page
   ======================================== */
.story-section {
    padding: 3rem 0;
}

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

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

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

.story-illustration {
    max-width: 300px;
}

.mission-section {
    padding: 3rem 0;
    background: var(--color-primary-light);
}

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

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

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

.values-detailed {
    padding: 3rem 0;
}

.values-detailed h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    min-width: 56px;
}

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

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

/* ========================================
   Team Section
   ======================================== */
.team-section {
    padding: 3rem 0;
    background: var(--color-bg-alt);
}

.team-section h2 {
    text-align: center;
}

.team-section .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

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

.team-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.team-role {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

/* ========================================
   Timeline / Milestones
   ======================================== */
.milestones-section {
    padding: 3rem 0;
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-bg);
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

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

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

/* ========================================
   Trust Section
   ======================================== */
.trust-section {
    padding: 3rem 0;
    background: var(--color-bg-alt);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item svg {
    min-width: 48px;
}

.trust-item h3 {
    margin-bottom: 0.25rem;
}

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

/* ========================================
   Contact Page
   ======================================== */
.contact-main {
    padding: 3rem 0;
}

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

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

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

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

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.contact-link {
    display: inline-block;
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact-address {
    color: var(--color-text);
    line-height: 1.6;
}

.hours-list {
    margin-top: 0.75rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
}

.hours-list span {
    font-weight: 500;
}

.company-info-block {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.company-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

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

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

.company-details li {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.directions-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.direction-item svg {
    min-width: 32px;
    margin-top: 0.25rem;
}

.direction-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

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

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

.response-expectation {
    padding: 3rem 0;
}

.expectation-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.expectation-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 50%;
}

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

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

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

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

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

.thank-you-message {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.step-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.step-item .step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.875rem;
}

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

.meanwhile-section {
    max-width: 600px;
    margin: 0 auto;
}

.meanwhile-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.thank-you-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

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

.tips-teaser h2 {
    text-align: center;
}

.tips-teaser .section-intro {
    text-align: center;
}

.quick-tips {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.quick-tip svg {
    min-width: 40px;
}

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

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

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

.legal-intro {
    font-size: 1.0625rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-section h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.0625rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    list-style: disc;
    color: var(--color-text-light);
}

.legal-section ol li {
    list-style: decimal;
}

.gdpr-rights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gdpr-right {
    background: var(--color-bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.gdpr-right h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

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

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

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

.legal-basis-item h4 {
    margin-bottom: 0.25rem;
}

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

.authority-address {
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: var(--radius-md);
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-category h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

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

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

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

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

    .hero h1 { font-size: 2.75rem; }

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

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

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

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

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

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

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

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

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

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

    .testimonial-card.featured {
        flex: 1 1 100%;
    }

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

    .mission-card {
        flex: 1;
    }

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

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

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

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

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

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

    .footer-links,
    .footer-contact {
        flex: 1 1 calc(33% - 1rem);
    }

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

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

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

    .hero h1 { font-size: 3.25rem; }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: none;
    }

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

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

    .hero-subtitle {
        margin-left: 0;
    }

    .hero-visual {
        flex: 1;
    }

    .hero-illustration {
        max-width: 450px;
    }

    .philosophy {
        padding: 5rem 0;
    }

    .philosophy .container {
        display: flex;
        gap: 3rem;
        align-items: flex-start;
    }

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

    .philosophy-values {
        flex: 1.2;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .services-preview,
    .process-section,
    .testimonials,
    .industries-section,
    .tips-section,
    .faq-section,
    .cta-section {
        padding: 5rem 0;
    }

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

    .process-steps {
        flex-direction: row;
        gap: 2rem;
    }

    .process-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

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

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

    .testimonial-card {
        flex: 1;
    }

    .testimonial-card.featured {
        flex: 1;
    }

    .industry-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

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

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

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

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

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1.2;
    }

    .footer-brand {
        flex: 1.5;
    }

    .footer-links,
    .footer-contact {
        flex: 1;
    }

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

    .service-icon-large {
        min-width: 80px;
    }

    .service-intro {
        text-align: left;
        flex: 1;
    }

    .service-price {
        min-width: 150px;
    }

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

    .expectation-steps {
        flex-direction: row;
    }

    .expectation-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 0.75rem;
    }
}

/* ========================================
   Focus States for Accessibility
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   Reduced Motion
   ======================================== */
@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;
    }
}
