/* ========================================
   BASE STYLES
   ======================================== */

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

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #60a5fa;
    --color-accent: #dbeafe;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-inverse: #ffffff;
    --color-border: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

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

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

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

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

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

p {
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

.btn-small {
    padding: 10px 18px;
    font-size: 0.875rem;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

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

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

main {
    padding-top: var(--header-height);
}

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

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-accent) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-accent) 100%);
    text-align: center;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

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

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

.stats-section {
    padding: 60px 0;
    background-color: var(--color-primary);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

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

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

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

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

.philosophy-section {
    padding: 100px 0;
}

.philosophy-section .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.philosophy-content {
    flex: 1;
}

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

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

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

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

/* ========================================
   SERVICES PREVIEW
   ======================================== */

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

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
}

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

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

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

.process-section {
    padding: 100px 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 8px;
}

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

/* ========================================
   PROCESS GRID (Services page)
   ======================================== */

.process-grid {
    display: flex;
    gap: 30px;
}

.process-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-card h3 {
    margin-bottom: 12px;
}

.process-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

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

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

.industries-section {
    padding: 100px 0;
}

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: calc(33.333% - 20px);
    padding: 30px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    text-align: center;
    transition: transform var(--transition);
}

.industry-item:hover {
    transform: translateY(-4px);
}

.industry-icon {
    width: 50px;
    height: 50px;
}

.industry-item span {
    font-weight: 600;
    color: var(--color-text);
}

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

.insights-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.insights-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.insights-grid {
    display: flex;
    gap: 30px;
}

.insight-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.insight-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-accent);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.insight-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

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

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

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

.faq-answer {
    display: none;
    padding-bottom: 24px;
}

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

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

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

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

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

.cta-content h2 {
    color: var(--color-text-inverse);
    margin-bottom: 16px;
}

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

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

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

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

.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: var(--color-text-inverse);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    color: var(--color-text-inverse);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

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

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

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
}

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

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

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

.cookie-modal-body {
    padding: 24px;
}

.cookie-option {
    padding: 20px 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: 8px;
}

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

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

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    padding: 4px 10px;
    border-radius: 12px;
}

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

.cookie-modal-footer {
    display: flex;
    gap: 12px;
    padding: 0 24px 24px;
    justify-content: flex-end;
}

/* ========================================
   ABOUT PAGE - STORY
   ======================================== */

.story-section {
    padding: 100px 0;
}

.story-section .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

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

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

/* ========================================
   MILESTONES
   ======================================== */

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

.milestones-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.milestone {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    position: relative;
}

.milestone:last-child {
    padding-bottom: 0;
}

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

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    flex: 0 0 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.milestone-content h3 {
    margin-bottom: 8px;
}

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

/* ========================================
   VALUES
   ======================================== */

.values-section {
    padding: 100px 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

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

/* ========================================
   TEAM
   ======================================== */

.team-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

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

.team-grid {
    display: flex;
    gap: 30px;
}

.team-member {
    flex: 1;
    text-align: center;
    background-color: var(--color-bg);
    padding: 40px 30px;
    border-radius: 12px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-member h3 {
    margin-bottom: 4px;
    font-size: 1.125rem;
}

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

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

/* ========================================
   NUMBERS
   ======================================== */

.numbers-section {
    padding: 100px 0;
}

.numbers-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.number-item {
    text-align: center;
    width: calc(33.333% - 20px);
    padding: 30px;
}

.number-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.number-label {
    display: block;
    color: var(--color-text-light);
    margin-top: 8px;
}

/* ========================================
   PARTNERS
   ======================================== */

.partners-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

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

.partners-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-item {
    padding: 20px 30px;
}

.partner-logo {
    height: 60px;
    width: auto;
}

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

.services-main {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 50px;
    background-color: var(--color-bg-alt);
    border-radius: 16px;
}

.service-detail.alternate {
    flex-direction: row-reverse;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
}

.service-detail-icon {
    flex: 0 0 100px;
}

.service-detail-icon svg {
    width: 80px;
    height: 80px;
}

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

.service-detail-content h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--color-text);
}

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

.service-pricing {
    background-color: var(--color-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

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

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

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

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

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

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

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

.comparison-table .price-row td {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

/* ========================================
   BENEFITS
   ======================================== */

.benefits-section {
    padding: 100px 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

.benefit-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

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

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

.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1.5;
}

.contact-block {
    margin-bottom: 50px;
}

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

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text);
}

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

.contact-sidebar {
    flex: 1;
}

.company-info-card {
    background-color: var(--color-bg-alt);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.company-info-card h3 {
    margin-bottom: 20px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.company-details dd {
    font-weight: 600;
    margin-bottom: 8px;
}

.directions-card {
    background-color: var(--color-accent);
    padding: 30px;
    border-radius: 12px;
}

.directions-card h3 {
    margin-bottom: 16px;
}

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

.directions-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.directions-card li {
    color: var(--color-text);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

/* ========================================
   ABOUT CONTACT SECTION
   ======================================== */

.about-contact-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

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

.about-contact-content h2 {
    margin-bottom: 24px;
}

.about-contact-content p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

/* ========================================
   RESPONSE INFO
   ======================================== */

.response-info-section {
    padding: 80px 0;
}

.response-grid {
    display: flex;
    gap: 30px;
}

.response-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

.response-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.response-card h3 {
    margin-bottom: 12px;
}

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

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

.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

.thank-you-details {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.next-steps-grid {
    display: flex;
    gap: 30px;
}

.next-step {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.next-step .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.next-step h3 {
    margin-bottom: 12px;
}

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

.resources-section {
    padding: 80px 0;
}

.resources-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    gap: 30px;
}

.resource-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    color: var(--color-text);
    transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}

.resource-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.resource-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.resource-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

.legal-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-accent) 100%);
}

.legal-hero h1 {
    margin-bottom: 8px;
}

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

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

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

.legal-text ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-text li {
    color: var(--color-text-light);
    margin-bottom: 8px;
}

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

.legal-intro {
    font-size: 1.0625rem;
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 32px;
}

.company-info-block {
    background-color: var(--color-bg-alt);
    padding: 20px;
    border-radius: 8px;
    color: var(--color-text);
}

/* ========================================
   GDPR TABLE
   ======================================== */

.gdpr-table {
    margin: 24px 0;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-row {
    display: flex;
}

.gdpr-header {
    background-color: var(--color-primary);
}

.gdpr-header .gdpr-cell {
    color: var(--color-text-inverse);
    font-weight: 600;
}

.gdpr-cell {
    flex: 1;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.gdpr-row:last-child .gdpr-cell {
    border-bottom: none;
}

.gdpr-cell:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.rights-list {
    margin: 24px 0;
}

.right-item {
    padding: 20px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    margin-bottom: 16px;
}

.right-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.right-item p {
    margin-bottom: 0;
}

/* ========================================
   COOKIE TABLE
   ======================================== */

.cookie-table {
    margin: 16px 0 24px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-row {
    display: flex;
}

.cookie-header {
    background-color: var(--color-accent);
}

.cookie-header span {
    font-weight: 600;
    color: var(--color-text);
}

.cookie-row span {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

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

.cookie-row span:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .services-grid,
    .testimonials-grid,
    .insights-grid {
        flex-direction: column;
    }

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

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

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

    .service-detail {
        flex-direction: column;
    }

    .service-detail.alternate {
        flex-direction: column;
    }

    .process-grid,
    .response-grid,
    .next-steps-grid,
    .resources-grid {
        flex-direction: column;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .stat-item {
        flex: 1 1 50%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-modal-footer {
        flex-direction: column;
    }

    .values-grid,
    .benefits-grid {
        flex-direction: column;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .industry-item {
        width: calc(50% - 15px);
    }

    .number-item {
        width: calc(50% - 15px);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 0.875rem;
    }

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

    .gdpr-row {
        flex-direction: column;
    }

    .gdpr-cell {
        border-right: none !important;
    }

    .gdpr-header .gdpr-cell:first-child {
        display: none;
    }

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

    .cookie-row span {
        border-right: none !important;
    }

    .cookie-header span:first-child {
        display: none;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .service-detail {
        padding: 30px 20px;
    }

    .industry-item,
    .number-item {
        width: 100%;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}
