/* ============================================
   PAGE STYLES - Service, Industry & Checklist pages
   Forge Kinetic
   ============================================ */

/* ---- 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 (Multi-Step Assessment) ---- */

/* Checklist Hero */
.checklist-hero {
    padding: 160px 0 100px;
    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;
}

.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 40px;
    line-height: 1.7;
}

/* Start Assessment Button */
.assess-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.assess-start-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.assess-start-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.assess-start-btn:hover::after {
    width: 300px;
    height: 300px;
}

.assess-start-btn svg {
    transition: transform 0.3s ease;
}

.assess-start-btn:hover svg {
    transform: translateX(4px);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(13, 148, 136, 0); }
}

.assess-start-btn {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.assess-start-btn:hover {
    animation: none;
}

/* Step Sections */
.assess-step {
    padding: 80px 0;
    min-height: 50vh;
    scroll-margin-top: 80px;
}

.assess-step-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.assess-step-indicator {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-align: center;
}

.assess-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);
    animation: assessFadeIn 0.4s ease;
}

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

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

.assess-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

/* Assess Fields (Step 1) */
.assess-fields {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.assess-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

/* Business Size Options */
.business-size-options {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.size-option {
    cursor: pointer;
    position: relative;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-option {
    flex: 1;
}

.size-option-label {
    display: block;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    color: var(--navy-deep);
    background: var(--white);
    transition: all 0.2s ease;
    cursor: pointer;
}

.size-option-label:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.size-option input[type="radio"]:checked + .size-option-label {
    border-color: var(--teal);
    background: rgba(13, 148, 136, 0.08);
    color: var(--teal);
    font-weight: 600;
}

/* Country Select */
.country-select {
    width: 100%;
    max-width: 480px;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--navy-deep);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230f2439' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.country-select:hover,
.country-select:focus {
    border-color: var(--teal);
    outline: none;
}

/* Custom Rate Input */
.custom-rate-group {
    display: none;
    margin-top: 12px;
}

.custom-rate-group.visible {
    display: block;
}

.custom-rate-input {
    width: 200px;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--navy-deep);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.custom-rate-input:focus {
    border-color: var(--teal);
    outline: none;
}

@media (max-width: 768px) {
    .business-size-options {
        flex-wrap: wrap;
    }

    .size-option {
        flex: 0 0 calc(50% - 5px);
    }
}

@media (max-width: 400px) {
    .size-option {
        flex: 0 0 100%;
    }

    .size-option-label {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .country-select {
        max-width: 100%;
    }
}

/* Navigation Buttons */
.assess-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.assess-nav-left {
    justify-content: flex-start;
}

.assess-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.assess-btn-next {
    background: var(--teal);
    color: var(--white);
}

.assess-btn-next:hover:not(:disabled) {
    background: var(--teal-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.assess-btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.assess-btn-next svg {
    transition: transform 0.2s ease;
}

.assess-btn-next:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.assess-btn-back {
    background: transparent;
    color: var(--gray-500);
    padding: 14px 20px;
}

.assess-btn-back:hover {
    color: var(--navy-deep);
    background: var(--gray-50);
}

.assess-btn-back svg {
    transition: transform 0.2s ease;
}

.assess-btn-back:hover svg {
    transform: translateX(-3px);
}

/* Progress Bar (Step 2) */
.assess-progress {
    margin-bottom: 32px;
}

.assess-progress-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.assess-progress-text span {
    color: var(--teal);
    font-weight: 700;
}

.assess-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 100px;
    overflow: hidden;
}

.assess-progress-fill {
    height: 100%;
    background: var(--teal);
    border-radius: 100px;
    transition: width 0.4s ease;
}

/* Subsections (Step 2) */
.assess-subsection {
    margin-bottom: 28px;
}

.assess-subsection:last-of-type {
    margin-bottom: 0;
}

.assess-subsection-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(13, 148, 136, 0.06);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* Questions (Step 2) */
.assess-questions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assess-question {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    margin: 0 -16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.assess-question:hover {
    background: var(--gray-50);
}

.assess-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: 1px;
    transition: all 0.15s ease;
}

.assess-question.checked .assess-checkbox {
    background: var(--teal);
    border-color: var(--teal);
}

.assess-checkbox svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.assess-question.checked .assess-checkbox svg {
    opacity: 1;
}

.assess-question-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    flex: 1;
}

.assess-question.checked .assess-question-text {
    color: var(--gray-400);
}

.assess-question-hours {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    align-self: center;
}

.assess-question.checked .assess-question-hours {
    background: rgba(13, 148, 136, 0.08);
    color: var(--teal);
}

/* Step 3: Results Card */
.assess-results-card {
    text-align: center;
}

.assess-score-display {
    margin-bottom: 20px;
}

.assess-score-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.assess-score-number.assess-tier-green { color: #16a34a; }
.assess-score-number.assess-tier-yellow { color: #ca8a04; }
.assess-score-number.assess-tier-red { color: #dc2626; }

.assess-score-of {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.assess-score-message {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}

.assess-report-prompt {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.assess-report-prompt > p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Email Form inside Step 3 */
.assess-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.assess-email-form input[type="text"],
.assess-email-form input[type="email"] {
    width: 100%;
    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 0.2s ease;
    box-sizing: border-box;
}

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

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

.assess-btn-submit {
    width: 100%;
    justify-content: center;
}

/* Success State */
.assess-success-card {
    text-align: center;
    animation: assessFadeIn 0.4s ease;
}

.assess-success-icon {
    color: var(--teal);
    margin-bottom: 20px;
}

.assess-success-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 40px;
}

.assess-success-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

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

.assess-success-cta h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.assess-success-cta .btn {
    position: relative;
}

/* Responsive: mobile adjustments for assessment flow */
@media (max-width: 600px) {
    .assess-step {
        padding: 48px 0;
    }

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

    .checklist-hero h1 {
        font-size: 1.8rem;
    }

    .checklist-hero .subtitle {
        font-size: 1rem;
    }

    .assess-card-title {
        font-size: 1.35rem;
    }

    .assess-question {
        padding: 12px 8px;
        margin: 0 -8px;
        gap: 10px;
    }

    .assess-question-text {
        font-size: 0.9rem;
    }

    .assess-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .assess-nav .assess-btn {
        width: 100%;
        justify-content: center;
    }

    .assess-report-prompt {
        padding: 20px 16px;
    }

    .assess-score-number {
        font-size: 1.25rem;
    }

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

/* Print Styles for Assessment */
@media print {
    .nav,
    .assess-start-btn,
    .assess-nav,
    .assess-email-form,
    .assess-report-prompt,
    .assess-success-cta,
    .footer,
    .mobile-menu-btn,
    .assess-question-hours {
        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;
    }

    .assess-step {
        display: block !important;
        padding: 10px 0;
    }

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

    .assess-question {
        page-break-inside: avoid;
    }

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

    .assess-question.checked .assess-checkbox {
        background: #000 !important;
    }

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