/* ========================================
   PC Repair Onsite by Paige
   ======================================== */

:root {
    --blue-600: #1a73e8;
    --blue-700: #1557b0;
    --blue-50: #e8f0fe;
    --blue-100: #d2e3fc;
    --green-600: #0d9488;
    --green-50: #f0fdfa;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
}

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

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

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--blue-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-menu a:hover {
    color: var(--gray-900);
}

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    background: var(--blue-600) !important;
    color: var(--white) !important;
    border-radius: 8px;
    transition: background 0.15s ease !important;
}

.nav-cta:hover {
    background: var(--blue-700) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all 0.2s ease;
    display: block;
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.35);
}

.btn-outline {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--blue-600);
    color: var(--blue-600);
}

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

.hero {
    padding: 8rem 1.5rem 5rem;
    background: linear-gradient(170deg, var(--blue-50) 0%, var(--white) 60%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--blue-600);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-highlight svg {
    width: 18px;
    height: 18px;
    color: var(--blue-600);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
}

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

.hero-card-icon svg {
    width: 80px;
    height: 80px;
    color: var(--blue-600);
}

.hero-card-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.6rem 0.75rem;
    background: var(--green-50);
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.checklist-item svg {
    width: 18px;
    height: 18px;
    color: var(--green-600);
    flex-shrink: 0;
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ========================================
   Services Grid
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

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

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue-600);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   Pricing
   ======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: box-shadow 0.25s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-main {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 1px var(--blue-600);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.period {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: var(--blue-50);
    border-radius: var(--radius);
    border: 1px solid var(--blue-100);
}

.pricing-note-box svg {
    width: 20px;
    height: 20px;
    color: var(--blue-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note-box p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========================================
   How It Works (Steps)
   ======================================== */

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

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

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
}

.step-connector svg {
    width: 24px;
    height: 24px;
    color: var(--gray-300);
}

/* ========================================
   Service Area
   ======================================== */

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.area-group {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
}

.area-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.area-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.area-list {
    list-style: none;
    columns: 2;
    column-gap: 1rem;
}

.area-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.area-cta {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.area-cta a {
    color: var(--blue-600);
    font-weight: 500;
    text-decoration: none;
}

.area-cta a:hover {
    text-decoration: underline;
}

/* ========================================
   Why Choose Me
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.about-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 10px;
    flex-shrink: 0;
}

.about-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue-600);
}

.about-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.about-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--blue-600);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-400);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--blue-600);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   Contact
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

a.contact-card:hover {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue-600);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.contact-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

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

.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.footer-inner {
    text-align: center;
}

.footer p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer p + p {
    margin-top: 0.25rem;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 340px;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        text-align: center;
    }

    .hero-tagline {
        max-width: 100%;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .pricing-grid,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .step-card {
        max-width: 340px;
    }

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

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

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

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* ========================================
   Service Card Learn More Links
   ======================================== */

.service-learn-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    transition: color 0.15s ease;
}

.service-learn-more:hover {
    color: var(--blue-700);
    text-decoration: underline;
}

/* ========================================
   Footer (Enhanced)
   ======================================== */

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

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

.footer-col li {
    margin-bottom: 0.25rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-col a:hover {
    color: var(--blue-600);
}

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

/* ========================================
   Breadcrumbs
   ======================================== */

.breadcrumbs {
    padding: 5.5rem 0 0;
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 0.75rem 0;
}

.breadcrumbs-inner a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumbs-inner a:hover {
    color: var(--blue-600);
}

.breadcrumbs-inner .separator {
    color: var(--gray-300);
}

.breadcrumbs-inner .current {
    color: var(--gray-700);
    font-weight: 500;
}

/* ========================================
   Landing Page Hero
   ======================================== */

.landing-hero {
    padding: 2rem 1.5rem 4rem;
    background: linear-gradient(170deg, var(--blue-50) 0%, var(--white) 60%);
    text-align: center;
}

.landing-hero .hero-badge {
    margin-bottom: 1.25rem;
}

.landing-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landing-hero .hero-tagline {
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

.landing-hero .hero-highlights {
    justify-content: center;
}

.landing-hero .hero-cta {
    justify-content: center;
}

/* ========================================
   Problem Grid (Sound Familiar?)
   ======================================== */

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.25s ease;
}

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

.problem-card .problem-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   Service Detail Grid
   ======================================== */

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.25s ease;
}

.service-detail-card:hover {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-detail-card .detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-detail-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-detail-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   Related Services Grid
   ======================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.related-card:hover {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-card .related-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.related-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.related-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   Landing Page: Compact Pricing (2-col)
   ======================================== */

.landing-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ========================================
   Landing Page: Steps (3-step variant)
   ======================================== */

.landing-steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Business Page: Cost Cards
   ======================================== */

.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.cost-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.25s ease;
}

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

.cost-card .cost-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cost-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.cost-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   Landing Page Responsive
   ======================================== */

@media (max-width: 768px) {
    .landing-hero {
        padding: 1.5rem 1.5rem 2.5rem;
    }

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

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

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

    .landing-pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-steps-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

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