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

:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-lighter: #3182ce;
    --color-accent: #c9a227;
    --color-accent-dark: #a88620;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #e8eef4;
    --color-border: #e2e8f0;
    --color-border-dark: #cbd5e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
    --transition: 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

ul,
ol {
    list-style-position: inside;
}

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

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

address {
    font-style: normal;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

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

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

.logo svg {
    flex-shrink: 0;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Mobile Navigation Open State */
.main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

.main-nav.open .nav-list {
    flex-direction: column;
    gap: 0;
}

.main-nav.open .nav-list li {
    border-bottom: 1px solid var(--color-border);
}

.main-nav.open .nav-list a {
    display: block;
    padding: 1rem;
}

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

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

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

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

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

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

.btn-text {
    background: transparent;
    color: var(--color-text);
    text-decoration: underline;
}

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

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

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

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

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

.hero-content {
    max-width: 600px;
}

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

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

.hero-visual {
    max-width: 400px;
    margin: 0 auto;
}

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

/* Page Hero */
.page-hero {
    background: var(--color-bg-alt);
    padding: 3rem 0;
    text-align: center;
}

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

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

.legal-hero .last-updated {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* ========================================
   Section Styles
   ======================================== */

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

/* Company Intro */
.company-intro {
    background: var(--color-bg);
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

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

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

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

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

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.philosophy-section h2 {
    color: var(--color-bg);
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Services Preview */
.services-preview {
    background: var(--color-bg-alt);
}

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

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

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

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

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

/* Process Section */
.process-section {
    background: var(--color-bg);
}

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

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

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

/* Testimonials */
.testimonials {
    background: var(--color-bg-alt);
}

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

.testimonial-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

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

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

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

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

/* Industries Served */
.industries-served {
    background: var(--color-bg);
}

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

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.industry-item svg {
    width: 40px;
    height: 40px;
}

.industry-item span {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9375rem;
}

/* Insights Section */
.insights-section {
    background: var(--color-bg-alt);
}

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

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

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

.insight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

/* FAQ Section */
.faq-section {
    background: var(--color-bg);
}

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

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

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

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

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

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

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

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

/* Trust Section */
.trust-section {
    background: var(--color-bg-alt);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.trust-point svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.trust-point h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

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

.cta-section h2 {
    color: var(--color-bg);
    margin-bottom: 1rem;
}

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

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

.cta-section.alt h2 {
    color: var(--color-primary);
}

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

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

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

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

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

.story-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.milestone-mini {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.milestone-year {
    font-weight: 700;
    color: var(--color-accent);
    min-width: 50px;
}

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

/* Values Section */
.values-section {
    background: var(--color-bg-alt);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

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

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

/* Team Section */
.team-section {
    background: var(--color-bg);
}

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

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    padding: 1.5rem;
}

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

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

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

/* Approach Section */
.approach-section {
    background: var(--color-bg-alt);
}

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

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

.principle {
    display: flex;
    gap: 1rem;
}

.principle-number {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-content h4 {
    margin-bottom: 0.25rem;
}

.principle-content p {
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    background: var(--color-bg);
}

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

.achievement-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.achievement-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

/* Community Section */
.community-section {
    background: var(--color-bg-alt);
}

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

.community-list {
    list-style: disc;
    color: var(--color-text-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.community-list li {
    margin-bottom: 0.5rem;
}

.community-visual {
    max-width: 300px;
    margin: 0 auto;
}

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

.services-overview {
    background: var(--color-bg);
    padding-bottom: 0;
}

.services-intro {
    max-width: 700px;
}

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

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

.service-detail-card {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.service-detail-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

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

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

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

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

/* Ongoing Support Packages */
.ongoing-support-section {
    background: var(--color-bg-alt);
}

.ongoing-content p {
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: 2rem;
}

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

.package-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--color-accent);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

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

.package-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.benefits-section {
    background: var(--color-bg-alt);
}

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

.benefit-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.contact-block h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

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

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
}

.company-description {
    margin-bottom: 2rem;
}

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

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

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

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

.company-details dt {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.company-details dd {
    color: var(--color-text-light);
    margin-left: 0;
}

/* Directions Section */
.directions-section {
    background: var(--color-bg-alt);
}

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

.direction-method {
    margin-top: 1.5rem;
}

.direction-method h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.directions-visual {
    max-width: 300px;
    margin: 0 auto;
}

.map-illustration {
    border-radius: var(--radius-md);
}

/* Expectations Section */
.expectations-section {
    background: var(--color-bg);
}

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

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

.expectation-number {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

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

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

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

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

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

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

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

.step-num {
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

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

.thank-you-actions {
    margin-top: 2rem;
}

.thank-you-actions p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.quick-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
}

.quick-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

.legal-section ul {
    color: var(--color-text-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

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

.info-box p {
    margin-bottom: 0.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Rights Grid */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.right-item {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

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

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

/* Cookie Categories & Tables */
.cookie-category {
    margin: 2rem 0;
}

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

.cookie-category > p {
    margin-bottom: 1rem;
}

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

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

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

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

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

.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

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

.footer-about {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-bg);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-about p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

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

.site-footer ul {
    list-style: none;
}

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

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

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

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
}

.cookie-modal.show {
    display: block;
}

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

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

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

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (min-width: 600px) {
    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: 280px;
    }

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

    .insight-card {
        flex: 1;
        min-width: 280px;
    }

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

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

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

    h2 {
        font-size: 2.25rem;
    }

    .main-nav {
        display: block;
    }

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

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
        max-width: 450px;
    }

    section {
        padding: 5rem 0;
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        flex: 2;
    }

    .intro-stats {
        flex: 1;
        flex-direction: column;
    }

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

    .process-steps.horizontal {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-steps.horizontal .process-step {
        flex: 1;
        min-width: 200px;
        padding-left: 0;
        padding-top: 3rem;
    }

    .process-steps.horizontal .step-number {
        top: 0;
        left: auto;
    }

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

    .trust-point {
        flex: 1;
        min-width: 280px;
    }

    .story-content {
        flex-direction: row;
    }

    .story-main {
        flex: 2;
    }

    .story-sidebar {
        flex: 1;
        border-left: 2px solid var(--color-accent);
        padding-left: 2rem;
    }

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

    .community-text {
        flex: 2;
    }

    .community-visual {
        flex: 1;
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 2;
    }

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

    .directions-text {
        flex: 2;
    }

    .directions-visual {
        flex: 1;
    }

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

    .expectation-item {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        max-width: 280px;
    }

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

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

    .team-card {
        max-width: 280px;
    }

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

/* ========================================
   Accessibility & Utilities
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

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

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