/* ========================================
   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;
}

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

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;
    overflow-x: hidden;
}

.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;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

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

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    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-actions {
    display: flex;
    align-items: center;
}

.nav-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--blue-600);
    color: var(--white) !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s ease;
}

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

.nav-cta-secondary {
    background: transparent;
    color: var(--blue-600) !important;
    border: 1.5px solid var(--blue-600);
}

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

.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 {
    max-width: 900px;
    margin: 0 auto;
}

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

/* ========================================
   Problem Ticker
   ======================================== */

.problem-ticker-section {
    margin-bottom: 2rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
    mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.problem-ticker-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.problem-ticker-track.dragging {
    cursor: grabbing;
}

.problem-ticker-track.animating {
    animation: ticker-scroll var(--ticker-duration, 60s) linear infinite;
}

.problem-ticker-row {
    margin-bottom: 0.75rem;
}

.problem-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.problem-pill:hover {
    border-color: var(--blue-600);
    background: var(--blue-50);
}

.problem-pill svg {
    width: 16px;
    height: 16px;
    color: var(--blue-600);
    flex-shrink: 0;
}

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

/* ========================================
   Trust Signals Strip
   ======================================== */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.trust-badge:hover {
    border-color: var(--blue-100);
    background: var(--gray-50);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.trust-badge .trust-icon-green {
    color: var(--green-600);
}

.trust-badge .trust-icon-blue {
    color: var(--blue-600);
}

/* ========================================
   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: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    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 2rem;
    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) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-container {
        min-height: 60px;
    }

    .nav-logo .logo-img {
        height: 44px !important;
    }

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

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

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .problem-ticker-section {
        -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
        mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
    }

    .problem-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .trust-strip {
        gap: 0.6rem 1rem;
    }

    .trust-badge {
        font-size: 0.78rem;
    }

    .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%;
    }

    .trust-strip {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: left;
    }

    .trust-badge {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
        white-space: normal;
    }

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

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

/* ========================================
   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: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.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 .landing-logo {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 0 auto 1.5rem;
}

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

/* ========================================
   Coverage Box (City Pages)
   ======================================== */

.coverage-box {
    margin-top: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
}

.coverage-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.35rem;
}

.coverage-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.coverage-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem 2rem;
}

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

@media (max-width: 768px) {
    .coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .coverage-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coverage-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   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 1fr;
        text-align: center;
    }
}

/* ========================================
   Booking Wizard
   ======================================== */

.booking-wizard {
    max-width: 720px;
    margin: 2rem auto 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

/* Progress bar */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}

.progress-step.active .progress-dot,
.progress-step.done .progress-dot {
    background: var(--blue-600);
    color: var(--white);
}

.progress-step span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    transition: color 0.3s;
}

.progress-step.active span,
.progress-step.done span {
    color: var(--blue-600);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 0.5rem;
    margin-bottom: 1.1rem;
    transition: background 0.3s;
}

.progress-line.done {
    background: var(--blue-600);
}

/* Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.booking-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.booking-step > p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Form inputs */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.form-input {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

textarea.form-input {
    resize: vertical;
}

/* Info / result boxes */
.booking-info {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.15rem 0;
}

.info-label {
    color: var(--gray-600);
}

.info-value {
    font-weight: 600;
    color: var(--gray-800);
}

.booking-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.booking-loading {
    text-align: center;
    color: var(--gray-500);
    padding: 1.5rem;
    font-size: 0.95rem;
}

/* Actions */
.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.booking-actions .btn:only-child {
    margin-left: auto;
}

/* Repair type grid */
.repair-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.repair-type-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    text-align: left;
}

.repair-type-btn:hover {
    border-color: var(--blue-600);
    background: var(--blue-50);
}

.repair-type-btn.selected {
    border-color: var(--blue-600);
    background: var(--blue-50);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.repair-type-btn .repair-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
}

.repair-type-btn .repair-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* Slot buttons */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.slot-btn {
    padding: 0.6rem 0.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    font-family: var(--font);
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}

.slot-btn:hover {
    border-color: var(--blue-600);
    background: var(--blue-50);
}

.slot-btn.selected {
    border-color: var(--blue-600);
    background: var(--blue-600);
    color: var(--white);
}

.slot-btn.suggested {
    border-color: var(--green-600);
    background: var(--green-50);
    color: var(--green-600);
    font-weight: 600;
}

.slot-btn.suggested.selected {
    background: var(--green-600);
    color: var(--white);
}

/* Booking summary */
.booking-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-summary-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.booking-summary-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 0.3rem 0;
    gap: 0.5rem;
}

.summary-row span:first-child {
    color: var(--gray-500);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--gray-800);
    text-align: right;
}

.summary-total {
    font-size: 1rem;
    padding-top: 0.5rem;
}

.summary-total span:last-child {
    color: var(--blue-600);
    font-size: 1.1rem;
}

.summary-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0.75rem 0;
    line-height: 1.5;
}

.booking-summary-card hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 0.5rem 0;
}

/* PayPal button container */
#paypalButtonContainer {
    margin-top: 0.75rem;
    min-height: 50px;
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--green-600);
}

.confirmation-icon svg {
    width: 100%;
    height: 100%;
}

.booking-confirmation h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.booking-confirmation > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    text-align: left;
}

.confirmation-note {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.confirmation-note a {
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none;
}

/* Responsive booking wizard */
@media (max-width: 768px) {
    .booking-wizard {
        padding: 1.25rem;
        margin: 1.5rem auto 0;
    }

    .booking-progress {
        padding: 0;
    }

    .progress-step span {
        font-size: 0.65rem;
    }

    .progress-dot {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .repair-type-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-split {
        grid-template-columns: 1fr;
    }

    .booking-summary-col {
        order: -1;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-line {
        margin: 0 0.25rem;
    }
}

/* Same-Day Availability Banner */
.same-day-banner {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
}

.same-day-banner.next-day-variant {
    background: linear-gradient(135deg, #4b5563, #1e293b);
}

.same-day-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.same-day-banner-link:hover {
    background: rgba(255,255,255,0.1);
}

.same-day-pulse {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: sameDayPulse 2s ease-in-out infinite;
}

.next-day-variant .same-day-pulse {
    background: #9ca3af;
    animation: nextDayPulse 2s ease-in-out infinite;
}

@keyframes sameDayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

@keyframes nextDayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(156, 163, 175, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(156, 163, 175, 0); }
}

.same-day-cta {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .same-day-banner-link {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    .same-day-cta {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ========================================
   Hero Redesign (2026)
   ======================================== */

.hero {
    padding: 6rem 1.5rem 3.5rem;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(26, 115, 232, 0.10), transparent 60%),
        radial-gradient(900px 600px at -10% 110%, rgba(13, 148, 136, 0.08), transparent 60%),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.hero-copy {
    text-align: left;
    max-width: none;
}

.hero-logo {
    display: block;
    max-width: 340px;
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.hero .hero-tagline {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2.25rem;
    max-width: 640px;
    line-height: 1.65;
}

.hero .hero-tagline strong {
    color: var(--gray-900);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.btn-hero {
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.9rem 1.75rem;
    line-height: 1.2;
    text-align: center;
}

.btn-hero span {
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-hero small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-phone-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.7rem 1.4rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.18s ease;
}

.btn-phone-hero:hover {
    border-color: var(--blue-600);
    background: var(--blue-50);
    transform: translateY(-1px);
}

.btn-phone-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-500);
    line-height: 1.2;
}

.btn-phone-number {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--blue-700);
    line-height: 1.1;
}

.hero-guarantee-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.guarantee-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--green-600);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    font-size: 0.88rem;
    line-height: 1.35;
}

.guarantee-badge svg {
    width: 22px;
    height: 22px;
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-badge strong {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
}

.guarantee-badge span {
    display: block;
    color: var(--gray-600);
    font-size: 0.82rem;
}

.guarantee-compare {
    border-left-color: var(--blue-600);
}

.guarantee-compare svg {
    color: var(--blue-600);
}

.compare-strike {
    text-decoration: line-through;
    color: var(--gray-400) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
}

.hero-about-link {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.92rem;
    text-align: center;
}

.hero-about-link a {
    color: var(--gray-600);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--gray-300);
    transition: color 0.15s ease;
}

.hero-about-link a:hover {
    color: var(--blue-700);
    text-decoration-color: var(--blue-600);
}

/* Hero Portrait */
.hero-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.portrait-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-50), var(--gray-100));
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.3),
                0 8px 24px -8px rgba(26, 115, 232, 0.2);
    border: 4px solid var(--white);
    isolation: isolate;
}

.portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem;
    color: var(--gray-400);
    text-align: center;
    background: repeating-linear-gradient(45deg,
        rgba(148, 163, 184, 0.08),
        rgba(148, 163, 184, 0.08) 12px,
        transparent 12px,
        transparent 24px),
        var(--gray-50);
}

.portrait-placeholder svg {
    width: 56px;
    height: 56px;
    color: var(--gray-300);
}

.portrait-placeholder span {
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.portrait-placeholder small {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.portrait-placeholder code {
    background: var(--gray-100);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.portrait-credentials {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem 1rem 0.85rem;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.85));
    color: var(--white);
    text-align: center;
    z-index: 1;
}

.portrait-credentials span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.95;
}

.portrait-quote {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    max-width: 360px;
    width: 100%;
    position: relative;
    margin-top: -0.5rem;
}

.portrait-quote p {
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--gray-800);
    margin: 0 0 0.4rem;
    font-style: italic;
}

.portrait-quote p strong {
    font-style: normal;
    color: var(--green-600);
}

.portrait-quote cite {
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-500);
}

/* Trust strip refinement under hero-grid */
.hero .trust-strip {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ========================================
   Sound Familiar? Section
   ======================================== */

#sound-familiar .section-subtitle {
    max-width: 720px;
}

#sound-familiar .section-subtitle strong {
    color: var(--gray-900);
}

.familiar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.familiar-col {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.familiar-col:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-100);
}

.familiar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.familiar-icon svg {
    width: 32px;
    height: 32px;
}

.familiar-icon-blue {
    background: var(--blue-50);
    color: var(--blue-600);
}

.familiar-icon-teal {
    background: var(--green-50);
    color: var(--green-600);
}

.familiar-icon-amber {
    background: #fef3c7;
    color: #b45309;
}

.familiar-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.familiar-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.familiar-col li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.4rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--gray-100);
}

.familiar-col li:last-child {
    border-bottom: none;
}

.familiar-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-600);
    opacity: 0.6;
}

.familiar-col:nth-child(2) li::before { background: var(--green-600); }
.familiar-col:nth-child(3) li::before { background: #b45309; }

.familiar-link {
    display: inline-block;
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

.familiar-link:hover {
    color: var(--blue-700);
    transform: translateX(2px);
}

.familiar-cta {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.familiar-cta strong {
    color: var(--gray-900);
}

.familiar-cta .btn {
    margin-left: 0.5rem;
}

/* ========================================
   Mobile Sticky CTA Bar
   ======================================== */

.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0.5rem;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
}

.mobile-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.85rem 0.5rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.12s ease, filter 0.12s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

.mobile-cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-cta-btn:active {
    transform: scale(0.97);
}

.mobile-cta-call {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.mobile-cta-text {
    background: var(--white);
    color: var(--gray-800);
    border: 1.5px solid var(--gray-300);
}

.mobile-cta-book {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
}

/* ========================================
   Hero / Sound-familiar Responsive
   ======================================== */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-logo {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

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

    .btn-phone-hero {
        align-items: center;
    }

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

    .hero-portrait {
        order: -1;
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .portrait-frame {
        max-width: 420px;
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .portrait-quote {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .familiar-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

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

    /* Add space below page so sticky bar doesn't cover footer content */
    body {
        padding-bottom: 4.5rem;
    }

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

    .hero {
        padding: 5rem 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .btn-hero,
    .btn-phone-hero {
        width: 100%;
    }

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

    .btn-phone-number {
        font-size: 1.5rem;
    }

    .familiar-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .familiar-cta .btn {
        width: 100%;
        margin-left: 0;
    }
}
