/* SEO Stockholm - Main Stylesheet */
/* Modern Scandinavian design with Stockholm blue-gold inspiration */

:root {
    /* Primary Colors - Stockholm Blue + Gold */
    --primary: #0A4D8C;
    --primary-dark: #083B6B;
    --primary-light: #1565B8;
    --accent: #D4A84B;
    --accent-dark: #C4983B;
    --accent-light: #E4C87B;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F5F8FC;
    --bg-gray: #EBF0F7;

    /* Text Colors */
    --text-dark: #1A1F2E;
    --text-body: #3D4556;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    /* UI Colors */
    --border: #E5EAF2;
    --shadow: rgba(10, 77, 140, 0.08);
    --shadow-lg: rgba(10, 77, 140, 0.12);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

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

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.btn-primary:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.logo svg {
    width: 40px;
    height: 40px;
}

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

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 14px;
    color: var(--text-body);
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.lang-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 4px;
    transition: var(--transition);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 77, 140, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 168, 75, 0.15);
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Carousel Section */
.carousel-section {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.carousel-wrapper {
    margin: 40px 0;
}

.carousel-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    animation: scroll-left linear infinite;
}

.carousel-row:nth-child(1) { animation-duration: 35s; }
.carousel-row:nth-child(2) { animation-duration: 40s; animation-direction: reverse; }
.carousel-row:nth-child(3) { animation-duration: 45s; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-item {
    flex-shrink: 0;
    padding: 16px 28px;
    background: white;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    box-shadow: 0 2px 10px var(--shadow);
}

.carousel-item:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

/* Keyword Modal */
.keyword-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.keyword-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.keyword-modal.active .modal-content {
    transform: scale(1);
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-gray);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.modal-body h1,
.modal-body h2,
.modal-body h3 {
    color: var(--text-dark);
    margin-top: 24px;
}

.modal-body h1:first-child,
.modal-body h2:first-child,
.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.modal-body ul,
.modal-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.modal-body li {
    margin-bottom: 8px;
}

.keyword-content {
    display: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-link {
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image {
    width: 100%;
    max-width: 500px;
}

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

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    z-index: 1;
}

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

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

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.author-info strong {
    display: block;
    color: var(--text-dark);
}

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

/* Blog Section */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.blog-image {
    height: 180px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--primary);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 24px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
}

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

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* SEO Text Section */
.seo-text {
    padding: 80px 0;
    background: var(--bg-white);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.seo-content p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content ul,
.seo-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.seo-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-body);
}

.seo-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.seo-content a:hover {
    border-bottom-color: var(--accent);
}

.seo-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 36px;
    height: 36px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

/* Service Landing Pages */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb span {
    color: var(--text-muted);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Service Hero */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-checklist li {
    padding: 8px 0 8px 32px;
    position: relative;
}

.service-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Form Card */
.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.form-card h3 {
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-card .form-group {
    margin-bottom: 16px;
}

.form-card input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Testimonial Highlight */
.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight blockquote {
    position: relative;
    padding: 40px;
}

.testimonial-highlight blockquote::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-highlight p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-highlight cite {
    display: block;
    font-style: normal;
}

.testimonial-highlight cite strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-highlight cite span {
    color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

.review-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-author strong {
    display: block;
}

.review-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.guarantee-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

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

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.section-dark {
    background: var(--primary);
    color: white;
}

.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.rating-summary .stars {
    color: #F59E0B;
    font-size: 1.3rem;
}

/* Services Overview Page */
.services-overview {
    padding: var(--section-padding) 0;
}

/* Blog Page */
.blog-hero {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-body);
}

.blog-listing {
    padding: var(--section-padding) 0;
}

.blog-listing .blog-grid {
    margin-bottom: 40px;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* Single Article */
.blog-single {
    padding: var(--section-padding) 0;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

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

.blog-breadcrumb span {
    color: var(--border);
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-header {
    margin-bottom: 40px;
}

.blog-article-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-article-content {
    line-height: 1.8;
    color: var(--text-body);
}

.blog-article-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.blog-article-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-article-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.blog-article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 24px 0;
    padding-left: 28px;
}

.blog-article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-article-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-article-content a:hover {
    color: var(--accent);
}

.blog-article-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-article-footer {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
}

.related-articles {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy support for existing article-content class */
.article-content {
    padding: var(--section-padding) 0;
}

.article-content .container {
    max-width: 800px;
}

.article-content h1 {
    margin-bottom: 32px;
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Form Messages */
.form-success,
.form-error {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-success {
    background: rgba(74, 189, 172, 0.1);
    color: #0D9488;
    border: 1px solid rgba(74, 189, 172, 0.3);
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Process Page Styles */
.process-detail {
    margin-bottom: 80px;
}

.process-detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.process-detail-reverse .process-detail-grid {
    grid-template-columns: 1fr 400px;
}

.step-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-detail-visual {
    position: sticky;
    top: 100px;
}

.process-svg {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.process-detail-content h2 {
    margin-bottom: 16px;
}

.process-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.process-detail-content h3 {
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.process-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-body);
    line-height: 1.7;
}

.process-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.process-list li strong {
    color: var(--text-dark);
}

.deliverables {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.deliverable-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.process-timeline {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-style: italic;
}

.implementation-approach,
.reporting-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
}

.approach-item,
.report-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.approach-item h4,
.report-item h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.approach-item p,
.report-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 180px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-number {
    width: 160px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 71px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--border);
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Expectations Grid */
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expectation-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
}

.expectation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.expectation-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.expectation-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .process-detail-grid,
    .process-detail-reverse .process-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-detail-visual {
        position: static;
        order: -1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        position: static;
        margin-bottom: 20px;
    }

    .timeline-number {
        width: auto;
        display: inline-block;
    }

    .timeline-item::before {
        left: 11px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid,
    .trust-section {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-hero {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: white;
        font-size: 1.3rem;
        padding: 16px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: var(--accent);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
    }

    .dropdown-item:hover {
        background: transparent;
        color: var(--accent);
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }

    .lang-btn {
        color: white;
    }

    .lang-btn:hover,
    .lang-btn.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-toggle.active span {
        background: white;
    }

    .hero {
        padding: 120px 0 60px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        width: 100%;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ================================
   Service Landing Page Styles
   ================================ */

/* Service Detail Section */
.service-detail-section {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* Main Content Area */
.service-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Service Offer Box */
.service-offer {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
}

.offer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-offer h2 {
    margin-bottom: 16px;
}

.offer-lead {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.offer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Price Box */
.price-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid var(--accent);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.price-includes li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Primary CTA */
.primary-cta {
    background: var(--primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
}

.primary-cta h3 {
    color: white;
    margin-bottom: 12px;
}

.primary-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.primary-cta .cta-buttons {
    justify-content: center;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 0;
}

.benefits-section h2 {
    margin-bottom: 12px;
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Inline Testimonial */
.testimonial-inline {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0.3;
}

.testimonial-inline blockquote {
    margin: 0;
    padding-left: 20px;
}

.testimonial-inline blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-inline blockquote footer {
    font-style: normal;
}

.testimonial-inline blockquote footer strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-inline blockquote footer span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0;
}

.reviews-section h2 {
    margin-bottom: 30px;
}

/* Guarantees Section */
.guarantees-section {
    padding: 40px 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.guarantee-card svg {
    flex-shrink: 0;
    color: var(--accent);
}

.guarantee-card span {
    font-weight: 500;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section h2 {
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Sticky Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    border: 1px solid var(--border);
}

.sidebar-form h3 {
    margin-bottom: 8px;
}

.sidebar-form > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.sidebar-form .form-group {
    margin-bottom: 16px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.sidebar-form .btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Service Landing */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        order: -1;
    }

    .offer-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .offer-stats {
        grid-template-columns: 1fr;
    }

    .service-offer,
    .primary-cta,
    .testimonial-inline {
        padding: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   404 Page Styles
   ================================ */

.error-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page .container {
    width: 100%;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.error-content > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-suggestions {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: left;
    display: inline-block;
}

.error-suggestions h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 8px;
}

.error-suggestions li:last-child {
    margin-bottom: 0;
}

.error-suggestions a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.error-suggestions a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-content h1 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-suggestions {
        width: 100%;
        text-align: center;
    }

    .error-suggestions ul {
        text-align: left;
        display: inline-block;
    }
}
