/**
 * Homepage Styles
 * Aligned with TinyTax Brand Guidelines
 */

/* ============================================
   Hero Section - Navy gradient, impactful typography
   ============================================ */
.hero {
    padding: 5rem 0 8rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    position: relative;
    overflow: visible;
    min-height: 420px; /* Prevent jumping when search results appear */
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(17, 185, 129, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(17, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero Tiny Rotator - Big and prominent */
.hero-tiny-rotator {
    font-size: 2.25rem;
    font-weight: 500;
    margin-top: 2rem;
    height: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tiny-word {
    color: var(--green);
    font-weight: 800;
    font-size: 2.25rem;
    text-shadow: 0 2px 20px rgba(17, 185, 129, 0.4);
}

.hero-tiny-prefix {
    text-align: right;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 80px;
}

.hero-tiny-suffix {
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 120px;
}

.hero-tiny-prefix.fade-out,
.hero-tiny-suffix.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.hero-tiny-prefix.fade-in,
.hero-tiny-suffix.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero .text-primary,
.hero .hero-highlight {
    color: var(--green);
}

/* Hero alert (session expired, etc.) */
.hero-alert {
    background: var(--error-bg);
    color: var(--error-dark);
    border: 1px solid var(--error-border);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
}

.hero-alert strong {
    font-weight: 600;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta .btn-primary {
    background: var(--green);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(17, 185, 129, 0.4);
    transition: all 0.2s;
}

.hero-cta .btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 185, 129, 0.5);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero search box */
.hero-search {
    max-width: 500px;
    margin: 2rem auto 0;
}

.hero-search input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search input:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(17, 185, 129, 0.2);
}

/* ============================================
   Social Proof Strip (Merged Trust + Stats)
   ============================================ */
.social-proof-strip {
    background: var(--coral);
    padding: 1rem 0;
}

.social-proof-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

.social-proof-item.social-proof-trustpilot {
    gap: 0.5rem;
}

a.social-proof-item:hover {
    opacity: 0.9;
}

.social-proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.social-proof-detail {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trustpilot-stars-small {
    height: 20px;
    width: auto;
}

.social-proof-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.social-proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
}

.hmrc-logo-small {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-proof-hmrc {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .social-proof-items {
        gap: 1.5rem;
    }

    .social-proof-number {
        font-size: 1.5rem;
    }

    .social-proof-divider {
        display: none;
    }
}

/* Legacy Trust Banner (kept for backwards compatibility) */
.trust-banner {
    background: var(--coral);
    padding: 1.25rem 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

a.trust-item:hover {
    opacity: 0.9;
}

.trust-text {
    font-size: 1.125rem;
    color: white;
}

.trust-text strong {
    font-weight: 700;
}

.trust-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.trustpilot-stars {
    height: 32px;
    width: auto;
}

.hmrc-logo {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ============================================
   Waitlist Counter
   ============================================ */
.waitlist-counter {
    display: inline-block;
    font-weight: 800;
    color: var(--green);
    min-width: 3ch;
    text-align: center;
    font-size: 1.5em;
    position: relative;
}

.waitlist-counter.rolling {
    animation: counterRoll 0.15s ease-in-out;
}

@keyframes counterRoll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ============================================
   Features Section - Light green gradient
   ============================================ */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 50%, #E8FDF5 100%);
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--navy);
}

.features-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 185, 129, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(17, 185, 129, 0.08);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(17, 185, 129, 0.15);
    border-color: var(--green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-50, #ECFDF5) 0%, #D1FAE5 100%);
    color: var(--green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--green);
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.feature-card p {
    color: var(--warm-600);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--warm-50);
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.how-it-works-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.how-it-works-container {
    max-width: 700px;
    margin: 0 auto;
}

.how-it-works-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.how-it-works-step:last-child {
    margin-bottom: 0;
}

/* Connecting line between steps */
.how-it-works-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--green) 0%, var(--warm-200) 100%);
}

.how-it-works-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(17, 185, 129, 0.35);
    position: relative;
    z-index: 1;
}

.how-it-works-content {
    flex: 1;
    padding-top: 0.5rem;
}

.how-it-works-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.how-it-works-content p {
    color: var(--warm-600);
    line-height: 1.6;
    margin: 0;
}

/* Visual How It Works (with screenshots) */
.how-it-works-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    margin: 0 auto 3rem;
}

.how-it-works-visual {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.how-it-works-step-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.how-it-works-step-visual.reverse {
    direction: rtl;
}

.how-it-works-step-visual.reverse > * {
    direction: ltr;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px rgba(17, 185, 129, 0.35);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.step-content p {
    font-size: 1rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin: 0;
    padding-left: 3.5rem; /* Align with text after number */
}

.step-image {
    position: relative;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(31, 39, 68, 0.15), 0 10px 20px rgba(31, 39, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.step-image img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 30px 60px rgba(31, 39, 68, 0.2), 0 15px 30px rgba(31, 39, 68, 0.15);
}

.how-it-works-step-visual.step-no-image {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-step-visual.step-no-image .step-header {
    justify-content: center;
}

.how-it-works-step-visual.step-no-image p {
    text-align: center;
    padding-left: 0;
}

/* ============================================
   How It Works Stepper
   ============================================ */
.how-it-works-stepper {
    max-width: 900px;
    margin: 0 auto;
}

.stepper-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.stepper-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid var(--warm-200);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-tab:hover {
    border-color: var(--green);
}

.stepper-tab.active {
    background: var(--green);
    border-color: var(--green);
}

.stepper-tab-number {
    width: 28px;
    height: 28px;
    background: var(--warm-100);
    color: var(--warm-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.stepper-tab.active .stepper-tab-number {
    background: white;
    color: var(--green);
}

.stepper-tab-title {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.stepper-tab.active .stepper-tab-title {
    color: white;
}

.stepper-content {
    position: relative;
    min-height: 400px;
}

.stepper-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.stepper-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.stepper-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.stepper-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1rem;
}

.stepper-text p {
    font-size: 1.0625rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin: 0;
}

.stepper-image {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(31, 39, 68, 0.15), 0 10px 20px rgba(31, 39, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stepper-image img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 30px 60px rgba(31, 39, 68, 0.2), 0 15px 30px rgba(31, 39, 68, 0.15);
}

.stepper-image-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(17, 185, 129, 0.3);
}

.submit-icon svg {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .stepper-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .stepper-tab {
        justify-content: center;
    }

    .stepper-content {
        min-height: auto;
    }

    .stepper-panel-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stepper-image {
        order: -1;
        height: 220px;
    }
}

/* ============================================
   Stats Strip
   ============================================ */
.stats-strip {
    background: var(--navy);
    padding: 3rem 0;
}

.stats-items {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.benefits-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--warm-50);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--warm-200);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(17, 185, 129, 0.12);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid var(--warm-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-color: var(--green);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
    stroke-width: 1.5;
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.benefit-item p {
    color: var(--warm-600);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* ============================================
   Eligibility Section
   ============================================ */
.eligibility-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
}

.eligibility-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.eligibility-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-700);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.eligibility-container {
    max-width: 800px;
    margin: 0 auto;
}

.eligibility-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.eligibility-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.eligibility-card > p {
    margin-bottom: 1.5rem;
    color: var(--warm-600);
    line-height: 1.6;
}

.eligibility-criteria {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eligibility-criterion {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--warm-50);
    border-radius: 12px;
    border: 1px solid var(--warm-200);
    transition: all 0.2s;
}

.eligibility-criterion:hover {
    background: white;
    border-color: var(--green);
}

.eligibility-criterion svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--green);
}

.eligibility-criterion span {
    color: var(--warm-700);
    font-weight: 500;
}

.eligibility-highlight {
    background: linear-gradient(135deg, rgba(17, 185, 129, 0.1) 0%, rgba(17, 185, 129, 0.05) 100%);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.eligibility-highlight p {
    margin: 0;
    color: var(--primary-600, #059669);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.eligibility-highlight svg {
    flex-shrink: 0;
}

/* Eligibility Limitations Box */
.eligibility-limitations {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--warning-light);
    border: 1px solid var(--warning);
    border-radius: 12px;
}

.eligibility-limitations h4 {
    margin: 0 0 0.75rem 0;
    color: var(--warning-dark);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eligibility-limitations > p {
    margin: 0;
    color: var(--warning-dark);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.eligibility-limitations ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
    color: var(--warning-dark);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.eligibility-limitations p:last-child {
    margin: 0.75rem 0 0 0;
    font-size: 0.875rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--warm-50);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.faq-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--warm-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(17, 185, 129, 0.1);
}

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

.faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h3::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--warm-600);
    line-height: 1.7;
    margin: 0;
    padding-left: 2.5rem;
}

/* ============================================
   Accountants Section - White with green accents
   ============================================ */
.accountants-section {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid var(--warm-200);
}

.accountants-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.accountants-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.accountants-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--warm-600);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.accountants-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.accountants-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--warm-50);
    border-radius: 12px;
    border: 1px solid var(--warm-200);
    transition: all 0.2s;
}

.accountants-benefit:hover {
    border-color: var(--green);
    background: white;
}

.accountants-benefit svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.accountants-benefit strong {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.accountants-benefit p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--warm-600);
    line-height: 1.5;
}

.accountants-cta {
    text-align: center;
}

.accountants-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--green);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(17, 185, 129, 0.3);
}

.accountants-button:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 185, 129, 0.4);
}

.accountants-urgency {
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
    color: var(--warning-dark);
    font-size: 1rem;
    text-align: center;
}

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

/* ============================================
   Path Helper - Arrow
   ============================================ */
.path-helper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0.5rem 0 0.5rem 0;
    transition: opacity 0.3s ease-in-out;
}

.path-helper.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.path-helper[data-path="waitlist"] {
    justify-content: flex-start;
    padding-left: 10%;
}

.path-helper[data-path="explore"] {
    justify-content: flex-end;
    padding-right: 10%;
}

.helper-arrow {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   Search & Loading States
   ============================================ */
.clear-search {
    display: none;
}

.loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-no-results,
.error-message {
    padding: 2rem;
    text-align: center;
}

.search-no-results {
    color: var(--warm-500);
}

.error-message {
    color: var(--error-color);
}

/* ============================================
   SIC Warning Modal
   ============================================ */
.sic-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 39, 68, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.sic-modal-overlay.active {
    display: flex;
}

.sic-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.sic-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--warm-200);
}

.sic-modal-header-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sic-warning-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--warning-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sic-modal-title h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
}

.sic-modal-title p {
    margin: 0.5rem 0 0;
    font-size: 0.9375rem;
    color: var(--warm-500);
}

.sic-modal-body {
    padding: 1.5rem;
}

.sic-codes-list {
    margin: 0 0 1.25rem;
}

.sic-codes-list p {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    color: var(--warm-700);
}

.sic-codes-list ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
}

.sic-codes-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.sic-code-bullet {
    color: var(--warning);
    margin-top: 2px;
}

.sic-code-number {
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 600;
}

.sic-code-desc {
    color: var(--warm-500);
    font-size: 0.875rem;
}

.sic-info-box {
    background: var(--warm-50);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.sic-info-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--warm-600);
    line-height: 1.6;
}

.sic-info-box strong {
    color: var(--navy);
}

.sic-warning-box {
    background: var(--error-light);
    border: 1px solid var(--error-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.sic-warning-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--error-dark);
    line-height: 1.6;
}

.sic-warning-box ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
    font-size: 0.875rem;
    color: var(--error-dark);
    line-height: 1.6;
}

.sic-modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--warm-200);
    background: var(--warm-50);
    border-radius: 0 0 20px 20px;
}

.sic-modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.sic-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.9375rem;
}

.sic-btn-secondary {
    background: white;
    color: var(--warm-700);
    border: 1px solid var(--warm-300);
}

.sic-btn-secondary:hover {
    background: var(--warm-100);
}

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

.sic-btn-warning:hover {
    background: var(--warning-dark);
}

.sic-modal-footer p {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: var(--warm-500);
    text-align: center;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: var(--warm-50);
}

.about-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--navy);
}

/* Timeline Slider */
.about-timeline {
    max-width: 400px;
    margin: 0 auto 2.5rem;
}

.timeline-track {
    position: relative;
}

.timeline-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--warm-200);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(17, 185, 129, 0.4);
    transition: transform 0.2s;
}

.timeline-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.timeline-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(17, 185, 129, 0.4);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-400);
    cursor: pointer;
    transition: color 0.2s;
}

.timeline-year:hover {
    color: var(--warm-600);
}

.timeline-year.active {
    color: var(--green);
}

/* Brand-specific timeline colours */
.about-section[data-active-brand="countingup"] .timeline-year.active {
    color: #E63C2E;
}

.about-section[data-active-brand="clearbooks"] .timeline-year.active {
    color: #2787B9;
}

.about-section[data-active-brand="countingup"] .timeline-slider::-webkit-slider-thumb {
    background: #E63C2E;
}

.about-section[data-active-brand="countingup"] .timeline-slider::-moz-range-thumb {
    background: #E63C2E;
}

.about-section[data-active-brand="clearbooks"] .timeline-slider::-webkit-slider-thumb {
    background: #2787B9;
}

.about-section[data-active-brand="clearbooks"] .timeline-slider::-moz-range-thumb {
    background: #2787B9;
}

.about-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-logo-btn {
    background: white;
    border: 2px solid var(--warm-200);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.5;
}

.about-logo-btn:hover {
    border-color: var(--warm-300);
    opacity: 0.8;
}

.about-logo-btn.active {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(17, 185, 129, 0.15);
    opacity: 1;
}

.about-logo-btn[data-brand="countingup"].active {
    border-color: #E63C2E;
    box-shadow: 0 0 0 3px rgba(230, 60, 46, 0.15);
}

.about-logo-btn[data-brand="clearbooks"].active {
    border-color: #2787B9;
    box-shadow: 0 0 0 3px rgba(39, 135, 185, 0.15);
}

.about-logo-btn img {
    height: 40px;
    width: auto;
    display: block;
}

.about-logo-btn[data-brand="tinytax"] img {
    height: 56px;
}

.about-blurbs {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: grid;
}

.about-blurb {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.about-blurb.active {
    opacity: 1;
    visibility: visible;
}

.about-blurb p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--warm-600);
}

.about-blurb a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.about-blurb a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ Collapsible
   ============================================ */
.faq-collapsible {
    padding: 0;
    background: white;
    border-top: 1px solid var(--warm-200);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-500);
    transition: color 0.2s;
}

.faq-toggle:hover {
    color: var(--navy);
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
}

.faq-collapsible.open .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-collapsible.open .faq-content {
    max-height: 2000px;
}

.faq-collapsible .faq-container {
    padding: 0 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-collapsible .faq-item {
    padding: 1.25rem 1.5rem;
    background: var(--warm-50);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.faq-collapsible .faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.faq-collapsible .faq-item p {
    font-size: 0.9375rem;
    color: var(--warm-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0;
    }

    .hero-tiny-rotator {
        font-size: 1.5rem;
        height: 2.5rem;
    }

    .hero-tiny-word {
        font-size: 1.5rem;
    }

    .hero-tiny-prefix {
        min-width: 60px;
    }

    .hero-tiny-suffix {
        min-width: 90px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features h2,
    .how-it-works-section h2,
    .benefits-section h2,
    .eligibility-section h2,
    .faq-section h2,
    .accountants-section h2 {
        font-size: 1.875rem;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-step {
        gap: 1rem;
    }

    .how-it-works-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .how-it-works-step:not(:last-child)::after {
        left: 23px;
        top: 52px;
    }

    /* Visual How It Works responsive */
    .how-it-works-visual {
        gap: 3rem;
    }

    .how-it-works-step-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-step-visual.reverse {
        direction: ltr;
    }

    .step-header {
        justify-content: center;
    }

    .step-content p {
        text-align: center;
        padding-left: 0;
    }

    .step-image img {
        border-radius: 8px;
    }

    .feature-card,
    .benefit-item,
    .faq-item {
        padding: 1.5rem;
    }

    .eligibility-card {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        padding-left: 2.25rem;
    }

    /* About section responsive */
    .about-section h2 {
        font-size: 1.875rem;
    }

    .about-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-logo-btn {
        padding: 1rem 1.25rem;
    }

    .about-logo-btn img {
        height: 32px;
    }

    .about-logo-btn[data-brand="tinytax"] img {
        height: 44px;
    }

    .about-blurb p {
        font-size: 1rem;
    }

    .timeline-year {
        font-size: 0.875rem;
    }
}

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

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    /* About section - very small screens */
    .about-logos {
        flex-direction: column;
        align-items: center;
    }

    .about-logo-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ============================================
   More Happy Section - Rotating "tiny" animation
   ============================================ */
.more-happy-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.more-happy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(17, 185, 129, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 70% 30%, rgba(17, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.more-happy-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.tiny-rotator {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2rem;
    height: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.tiny-word {
    color: var(--green);
    font-weight: 700;
    font-size: 1.5rem;
}

.tiny-prefix {
    text-align: right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tiny-suffix {
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Happy text highlight with hand-drawn underline */
.text-happy {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.text-happy::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.1em;
    height: 0.15em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 10 2, 20 5 T 40 5 T 60 5 T 80 5 T 100 5' stroke='%2311B981' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Sketchy underline utility class */
.text-underline-sketch {
    position: relative;
    display: inline-block;
    color: inherit !important;
}

.text-underline-sketch::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0;
    height: 0.18em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 12 1, 25 5 T 50 5 T 75 5 T 100 5' stroke='%2311B981' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* White sketchy underline for dark/coral backgrounds */
.text-underline-sketch-white {
    position: relative;
    display: inline-block;
    color: inherit !important;
}

.text-underline-sketch-white::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0;
    height: 0.18em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 12 1, 25 5 T 50 5 T 75 5 T 100 5' stroke='white' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.tiny-prefix.fade-out,
.tiny-suffix.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.tiny-prefix.fade-in,
.tiny-suffix.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.more-happy-headline {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: white;
    line-height: 1.1;
}

.more-happy-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .more-happy-section {
        padding: 4rem 1.5rem;
    }

    .tiny-rotator {
        font-size: 1.25rem;
    }

    .tiny-word {
        font-size: 1.5rem;
    }

    .more-happy-headline {
        font-size: 2.25rem;
    }

    .more-happy-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .more-happy-headline {
        font-size: 1.875rem;
    }

    .tiny-rotator {
        font-size: 1.125rem;
    }
}

/* ============================================
   Final CTA Banner - Green gradient
   ============================================ */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
}

.final-cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: white;
    color: var(--green);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-button svg {
    transition: transform 0.2s;
}

.final-cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 1.5rem;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section p {
        font-size: 1.125rem;
    }
}

/* ============================================
   Scroll Animations - Fade in on scroll
   ============================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered fade-in for cards */
.feature-card,
.accountants-benefit {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.feature-card.visible,
.accountants-benefit.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.feature-card:nth-child(1),
.accountants-benefit:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2),
.accountants-benefit:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3),
.accountants-benefit:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4),
.accountants-benefit:nth-child(4) { transition-delay: 0.4s; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in-section,
    .feature-card,
    .accountants-benefit {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
