/* ============================================
   PAGE STYLES - Service, Industry & Checklist pages
   FXiation Digital
   ============================================ */

/* ---- SERVICE PAGE STYLES ---- */

/* Page Hero (services) */
.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.page-hero .breadcrumb a {
    color: var(--teal);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    margin-bottom: 24px;
}

.page-hero h1 .highlight {
    color: var(--teal);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 650px;
}

/* Key Takeaways (service pages) */
.takeaways {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 40px;
    margin-top: 40px;
    max-width: 800px;
}

.takeaways h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.takeaways ul {
    list-style: none;
}

.takeaways ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1rem;
    color: var(--gray-700);
}

.takeaways ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin-bottom: 28px;
}

.content-section ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1.0625rem;
    color: var(--gray-600);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

/* Process Steps Horizontal */
.process-steps-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    margin: 40px 0;
}

.process-steps-horizontal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    opacity: 0.2;
}

.process-step {
    text-align: center;
    transition: transform var(--transition-medium);
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    position: relative;
    z-index: 1;
    transition: all var(--transition-medium);
}

.process-step:hover .step-number {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .process-steps-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .process-steps-horizontal::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Workflows Grid */
.workflows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.workflow-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-medium);
}

.workflow-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.workflow-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 10px;
    margin-bottom: 16px;
    transition: transform var(--transition-medium);
}

.workflow-card:hover .icon {
    transform: translateY(-4px) scale(1.05);
}

.workflow-card .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.workflow-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.workflow-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

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

/* Results Section (service pages) */
.results-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.results-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.results-inner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.results-inner > p {
    color: var(--gray-300);
    margin-bottom: 48px;
    font-size: 1.125rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.result-item {
    text-align: center;
}

.result-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 8px;
}

.result-item .label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (max-width: 500px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Comparison Table - scrollable on mobile */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
    border-radius: 12px;
    max-width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}

.comparison-table thead th {
    background: var(--navy-deep);
    color: var(--white);
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.comparison-table .check {
    color: var(--teal);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--gray-300);
}

/* CTA Section (service/industry pages) */
.cta-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

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

/* Service Links */
.service-links {
    background: var(--gray-50);
}

.service-links-header {
    text-align: center;
    margin-bottom: 48px;
}

.service-links-header h2 {
    margin-bottom: 8px;
}

.service-links-header p {
    color: var(--gray-500);
}

.service-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.service-link-card {
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all var(--transition-medium);
    display: block;
}

.service-link-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--teal);
}

.service-link-card h3 {
    color: var(--navy-deep);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.service-link-card p {
    font-size: 0.925rem;
    color: var(--gray-500);
}

.service-link-card .arrow {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 12px;
    display: inline-block;
}

@media (max-width: 600px) {
    .service-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations (service pages) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-in-delay-1 { animation: fadeInUp 0.6s ease 0.1s forwards; opacity: 0; }
.animate-in-delay-2 { animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.animate-in-delay-3 { animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }


/* ---- INDUSTRY PAGE STYLES ---- */

/* Industry Hero */
.industry-hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.industry-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.industry-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.industry-hero h1 {
    margin-bottom: 24px;
}

.industry-hero h1 .highlight {
    color: var(--teal);
}

.industry-hero p {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-result {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 32px;
}

/* Industry Takeaways (variant) */
/* Note: industry pages may have slightly different takeaways styling */

/* Pain Points */
.pain-points {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.pain-points h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

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

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

.pain-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--teal);
    transform: translateY(-4px);
}

.pain-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}

.pain-card .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
}

.pain-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.pain-card p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* How We Help */
.how-we-help {
    background: var(--white);
}

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

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

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

.help-card {
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-medium);
}

.help-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.help-card .number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 16px;
}

.help-card h3 {
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.help-card p {
    font-size: 1rem;
    color: var(--gray-500);
}

/* What We Automate */
.automate {
    background: var(--gray-50);
}

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

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

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

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

.automate-card {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-medium);
    position: relative;
}

.automate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.automate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.automate-card:hover::before {
    opacity: 1;
}

.automate-card .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 10px;
    margin-bottom: 16px;
}

.automate-card .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
}

.automate-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy-deep);
}

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


/* ---- CHECKLIST PAGE STYLES ---- */

/* Checklist Hero */
.checklist-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.checklist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.checklist-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal-light);
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.checklist-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.checklist-hero .subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hero-scroll-hint:hover {
    color: var(--teal-light);
}

.hero-scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* Checklist Intro */
.checklist-intro {
    padding: 80px 0 40px;
}

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

.checklist-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.checklist-intro p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

/* Checklist Section */
.checklist-section {
    padding: 40px 0 80px;
}

.checklist-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
    .checklist-card {
        padding: 28px 20px;
    }
}

.checklist-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.checklist-card-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.checklist-counter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gray-400);
}

.checklist-counter strong {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
}

.checklist-items {
    list-style: none;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background var(--transition-fast);
}

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

.checklist-item:hover {
    background: var(--gray-50);
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
}

.checklist-checkbox {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.checklist-item.checked .checklist-checkbox {
    background: var(--teal);
    border-color: var(--teal);
}

.checklist-checkbox svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.checklist-item.checked .checklist-checkbox svg {
    opacity: 1;
}

.checklist-item-number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gray-400);
    flex-shrink: 0;
    min-width: 28px;
    margin-top: 3px;
}

.checklist-item-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.checklist-item.checked .checklist-item-text {
    color: var(--gray-400);
}

/* Scoring Section */
.scoring-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.scoring-inner {
    max-width: 800px;
    margin: 0 auto;
}

.scoring-inner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-align: center;
}

.scoring-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 40px;
}

.score-result {
    display: none;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.score-result.active {
    display: block;
    animation: scoreFadeIn 0.4s ease;
}

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

.score-result .score-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 4px;
}

.score-result .score-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.score-result .score-message {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.score-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.score-tier {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 32px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
}

.score-tier:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.score-tier-green { border-left-color: #22c55e; }
.score-tier-yellow { border-left-color: #eab308; }
.score-tier-red { border-left-color: #ef4444; }

.score-tier-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.score-tier-range {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
}

.score-tier-green .score-tier-range { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.score-tier-yellow .score-tier-range { background: rgba(234, 179, 8, 0.1); color: #ca8a04; }
.score-tier-red .score-tier-range { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

.score-tier-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-deep);
}

.score-tier p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Checklist CTA Card */
.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

.cta-card .btn {
    position: relative;
}

@media (max-width: 600px) {
    .cta-card {
        padding: 40px 24px;
    }
}

/* Email Capture Section */
.email-section {
    padding: 0 0 80px;
}

.email-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 36px 40px;
    text-align: center;
}

@media (max-width: 600px) {
    .email-card {
        padding: 28px 20px;
    }
}

.email-card h3 {
    font-size: 1.2rem;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.email-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

@media (max-width: 500px) {
    .email-form {
        flex-direction: column;
    }
}

.email-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray-700);
    outline: none;
    transition: border-color var(--transition-fast);
}

.email-form input[type="email"]:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.email-form input[type="email"]::placeholder {
    color: var(--gray-400);
}

.email-form button {
    padding: 14px 24px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.email-form button:hover {
    background: var(--teal-light);
}

.email-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.email-success {
    display: none;
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 0 0;
}

/* Social Proof Strip (checklist) */
.social-proof {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 24px 0;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-proof-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

.social-proof-locations {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-proof-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.social-proof-location svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

/* Checklist Print Styles */
@media print {
    .nav,
    .hero-scroll-hint,
    .cta-section,
    .email-section,
    .footer,
    .mobile-menu-btn,
    .score-result,
    .email-card {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }

    .checklist-hero {
        padding: 20px 0 10px;
        background: none !important;
    }

    .checklist-hero h1 {
        color: #000;
        font-size: 22pt;
    }

    .checklist-hero .subtitle {
        color: #333;
        font-size: 11pt;
    }

    .hero-badge {
        color: #000;
        background: none;
        border: 1px solid #000;
    }

    .checklist-intro {
        padding: 10px 0;
    }

    .checklist-section {
        padding: 10px 0;
    }

    .checklist-card {
        box-shadow: none;
        border: 1px solid #ccc;
        padding: 20px;
    }

    .checklist-item {
        page-break-inside: avoid;
    }

    .checklist-checkbox {
        border: 2px solid #000;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .checklist-item.checked .checklist-checkbox {
        background: #000 !important;
    }

    .scoring-section {
        background: none;
        padding: 20px 0;
    }

    .score-tier {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }

    .score-tier-green { border-left: 4px solid #22c55e; }
    .score-tier-yellow { border-left: 4px solid #eab308; }
    .score-tier-red { border-left: 4px solid #ef4444; }

    a { color: #000; text-decoration: none; }
}
