/* Base Reset and Variables */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #60a5fa;
    --color-primary-lighter: #93c5fd;
    --color-primary-bg: #dbeafe;
    --color-primary-bg-light: #eff6ff;
    --color-secondary: #1e293b;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-text-lighter: #94a3b8;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-success: #22c55e;
    --color-success-bg: #dcfce7;
    --font-family: -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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --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-white);
}

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

h1 {
    font-size: 2.25rem;
}

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

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

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.btn-secondary:hover {
    background-color: #0f172a;
    color: var(--color-white);
}

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

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

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

.btn-light:hover {
    background-color: var(--color-gray-100);
    color: var(--color-primary-dark);
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.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;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

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

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

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

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

.hero-content {
    flex: 1;
}

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

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

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

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

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

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

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

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

.stat-item {
    text-align: center;
    color: var(--color-white);
}

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

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

/* Overview Section */
.overview-section {
    padding: 4rem 0;
}

.overview-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.overview-text {
    flex: 1.2;
}

.overview-icons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overview-icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.overview-icon-item span {
    font-weight: 500;
}

/* Section Intro */
.section-intro {
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Services Highlight */
.services-highlight {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

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

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

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

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

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

.philosophy-text {
    flex: 1.2;
}

.philosophy-values {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.philosophy-values li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

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

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

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

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

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

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
}

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

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

.author-avatar svg {
    display: block;
}

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

.author-name {
    font-weight: 600;
    color: var(--color-secondary);
}

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

/* Industries Section */
.industries-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.industry-item span {
    font-weight: 500;
    color: var(--color-secondary);
}

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

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

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

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

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

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

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

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

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

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

/* Insights Section */
.insights-section {
    padding: 4rem 0;
    background-color: var(--color-primary-bg-light);
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

/* CTA Section */
.cta-section {
    padding: 4rem 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-white);
    margin-bottom: 1rem;
}

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

/* Story Section */
.story-section {
    padding: 4rem 0;
}

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

.story-text {
    flex: 1.2;
}

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

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

/* Milestones Section */
.milestones-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.milestones-timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.milestone {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.milestone:last-child {
    border-bottom: none;
}

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

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

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

/* Values Section */
.values-section {
    padding: 4rem 0;
}

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

.value-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-gray-50);
    border-radius: var(--radius-lg);
}

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

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

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

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

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

.team-member {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background-color: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.member-avatar svg {
    display: inline-block;
}

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

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

.member-bio {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
}

.achievements-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.achievements-text {
    flex: 1;
}

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

.achievement-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-primary-bg);
    border-radius: var(--radius-lg);
}

.achievement-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

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

/* Approach Section */
.approach-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.approach-blocks {
    margin-top: 2rem;
}

.approach-block {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.approach-block:last-child {
    border-bottom: none;
}

.approach-number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

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

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

/* Partners Section */
.partners-section {
    padding: 4rem 0;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.partner-item span {
    font-weight: 500;
    color: var(--color-secondary);
}

/* Services List Section */
.services-intro {
    padding: 2rem 0;
}

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

.services-list-section {
    padding: 3rem 0;
}

.services-list-section.alt-bg {
    background-color: var(--color-gray-50);
}

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

.service-detailed-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.services-list-section.alt-bg .service-detailed-card {
    border-color: transparent;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-info {
    flex: 1;
}

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

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

.service-price {
    flex-shrink: 0;
    text-align: right;
}

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

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

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
}

.comparison-table {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-column {
    flex: 1;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    padding: 1.5rem;
    text-align: center;
}

.comparison-header h3 {
    margin: 0;
    color: var(--color-white);
}

.comparison-header.negative {
    background-color: var(--color-text-light);
}

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

.comparison-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    color: var(--color-text);
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
}

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

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

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

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

.contact-detail {
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

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

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.company-info-content {
    display: flex;
    gap: 4rem;
}

.company-description {
    flex: 1.5;
}

.company-details {
    flex: 1;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.company-details h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-size: 0.9375rem;
}

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

/* Directions Section */
.directions-section {
    padding: 4rem 0;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-block {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1rem;
}

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

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

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

/* Additional Info Section */
.additional-info-section {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
}

.additional-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

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

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

/* Thank You Section */
.thank-you-section {
    padding: 4rem 0;
}

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

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

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

.next-steps {
    text-align: left;
    background-color: var(--color-gray-50);
    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;
    align-items: flex-start;
}

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

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

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

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

.meanwhile-section h2 {
    margin-bottom: 0.75rem;
}

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

.meanwhile-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-reminder {
    padding: 1rem;
    background-color: var(--color-primary-bg-light);
    border-radius: var(--radius-md);
}

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

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

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

.right-card {
    background-color: var(--color-gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.right-card h3 {
    margin-top: 0;
    color: var(--color-primary);
}

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

.legal-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

.legal-table th,
.cookies-table th {
    background-color: var(--color-gray-50);
    font-weight: 600;
    color: var(--color-secondary);
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 3rem 0 0;
}

.footer-content {
    display: flex;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

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

.footer-links {
    flex: 1;
    display: flex;
    gap: 3rem;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 1.25rem;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text);
    min-width: 280px;
}

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

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

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

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

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

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

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

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

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

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

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.cookie-option-info h4 {
    margin-bottom: 0.25rem;
}

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

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--color-primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle.disabled .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-gray-200);
    text-align: right;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-visual {
        order: -1;
    }

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

    .overview-content,
    .philosophy-content,
    .story-content,
    .achievements-content,
    .company-info-content {
        flex-direction: column;
    }

    .philosophy-visual {
        order: -1;
    }

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

    .comparison-table {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        display: none;
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--color-gray-200);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

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

    .hero {
        padding: 2rem 0;
    }

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

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 120px;
    }

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

    .services-cards,
    .testimonials-grid,
    .industries-list,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .industry-item,
    .value-card,
    .team-member {
        min-width: 100%;
    }

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

    .service-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-price {
        text-align: left;
    }

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

    .milestone {
        flex-direction: column;
        gap: 0.5rem;
    }

    .approach-block {
        flex-direction: column;
        gap: 0.5rem;
    }

    .direction-block {
        flex-direction: column;
    }

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

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

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

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

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

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

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

    .stat-label {
        font-size: 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .meanwhile-links {
        flex-direction: column;
    }

    .meanwhile-links .btn {
        width: 100%;
    }
}
