/* BidThis Marketing Site - Static CSS */
/* Converted from Tailwind for Firebase Hosting static deployment */

/* ===== CSS Variables ===== */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 8%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 8%);
    --primary: hsl(221, 70%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 0%, 96%);
    --secondary-foreground: hsl(0, 0%, 18%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 38%);
    --border: hsl(0, 0%, 88%);
    --brand-blue: hsl(221, 70%, 50%);
    --green: hsl(142, 76%, 36%);
    --radius: 0.375rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Institutional slate palette */
    --slate-950: hsl(215, 25%, 11%);
    --slate-900: hsl(215, 22%, 14%);
    --slate-800: hsl(215, 18%, 20%);
    --slate-700: hsl(215, 14%, 32%);
    --slate-500: hsl(215, 10%, 46%);
    --slate-400: hsl(215, 10%, 58%);
    --slate-300: hsl(215, 12%, 72%);
    --slate-200: hsl(215, 14%, 85%);
    --slate-100: hsl(215, 14%, 92%);
    --slate-50: hsl(215, 16%, 97%);

    /* Institutional semantic tokens */
    --heading-color: hsl(215, 20%, 10%);
    --body-color: hsl(215, 12%, 20%);
    --caption-color: hsl(215, 8%, 42%);
    --surface-alt: hsl(215, 14%, 96.5%);
    --surface-card: hsl(0, 0%, 100%);
    --border-subtle: hsl(215, 14%, 89%);
    --border-medium: hsl(215, 12%, 82%);

    /* Institutional section spacing */
    --section-pad-sm: 3.5rem;
    --section-pad-md: 5rem;
    --section-pad-lg: 6rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1.5px solid hsl(210, 12%, 88%);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    min-height: 64px;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
        min-height: 68px;
    }
}

.logo {
    margin-right: 2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

@media (min-width: 768px) {
    .logo-img {
        height: 100px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--foreground);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-menu-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background-color: hsl(221, 70%, 42%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--muted);
    border-color: hsl(0, 0%, 80%);
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background-color: var(--muted);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 550;
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section-alt {
    background-color: hsl(210, 10%, 97%);
    border-top: 1.5px solid hsl(210, 12%, 88%);
    border-bottom: 1.5px solid hsl(210, 12%, 88%);
}

.section-header {
    max-width: 45rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 650;
    color: var(--foreground);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Content container for consistent max-width across sections */
.section-content {
    max-width: 45rem;
    margin: 0 auto;
}

.section-subtitle {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    color: hsl(0, 0%, 35%);
    line-height: 1.6;
}

.section-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.section-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Tighten line heights for institutional feel */
.section p {
    line-height: 1.6 !important;
}

.section ul li {
    line-height: 1.6 !important;
}

/* Bullet list spacing improvements */
.section ul {
    margin-top: 0;
    margin-bottom: 0;
}

.section ul li {
    margin-bottom: 0.75rem;
}

.section ul li:last-child {
    margin-bottom: 0;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(to bottom, hsl(210, 10%, 98%) 0%, hsl(210, 8%, 96.5%) 100%);
    border-bottom: 1px solid hsl(210, 10%, 90%);
}

@media (min-width: 768px) {
    .hero-section {
        padding: 10rem 0 12rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero-left {
    text-align: left;
}

@media (max-width: 967px) {
    .hero-left {
        text-align: center;
    }
}

.hero-title {
    font-family: 'Source Serif 4', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 550;
    letter-spacing: -0.015em;
    color: var(--foreground);
    line-height: 1.08;
    max-width: 32rem;
}

@media (max-width: 967px) {
    .hero-title {
        max-width: 48rem;
        margin: 0 auto;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 968px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-title .text-brand-blue {
    display: block;
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85em;
    line-height: 1.2;
}

.text-brand-blue {
    color: var(--primary);
}

.text-primary {
    color: var(--primary);
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 32rem;
}

@media (max-width: 967px) {
    .hero-subtitle {
        max-width: 42rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 968px) {
    .hero-subtitle {
        font-size: 1.0625rem;
    }
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (max-width: 967px) {
    .hero-cta {
        align-items: center;
    }
}

.hero-visual {
    position: relative;
    min-height: 400px;
    display: block;
    margin-top: 2rem;
}

@media (min-width: 968px) {
    .hero-visual {
        margin-top: 0;
    }
}

.hero-visual-concept {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.75rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.incentive-graphic-hero {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

@media (max-width: 967px) {
    .incentive-graphic-hero {
        max-width: 90%;
    }
}

.incentive-caption {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.5;
    max-width: 420px;
    margin-top: 0.5rem;
}

/* Product Proof Layout */
.product-proof-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 3rem auto 0;
}

@media (min-width: 968px) {
    .product-proof-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-proof-bullets {
    order: 2;
}

@media (min-width: 968px) {
    .product-proof-bullets {
        order: 1;
    }
}

.product-proof-card {
    order: 1;
}

@media (min-width: 968px) {
    .product-proof-card {
        order: 2;
        display: flex;
        justify-content: flex-end;
    }
}

.proof-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.proof-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.6;
}

.proof-item strong {
    font-weight: 600;
}

/* Decision Record Card */
.decision-record-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 2.25rem 2.5rem;
    background: hsl(0, 0%, 100%);
    border: 1px solid hsl(210, 15%, 88%);
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

@media (min-width: 968px) {
    .decision-record-card {
        margin: 0;
    }
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(0, 0%, 92%);
}

.record-label {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--foreground);
}

.record-status {
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(210, 50%, 55%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.record-descriptor {
    font-size: 0.875rem;
    color: hsl(0, 0%, 50%);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.record-contents {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.record-item {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: hsl(0, 0%, 30%);
    padding-left: 1.125rem;
    position: relative;
}

.record-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.3125rem;
    height: 0.3125rem;
    background: hsl(210, 50%, 55%);
    border-radius: 50%;
}

.hero-cta-note {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
}

.trust-signals {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .trust-signals {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.trust-signal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--green);
    flex-shrink: 0;
}

/* ===== Feature Grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background-color: var(--card);
    border: 1.5px solid hsl(210, 12%, 90%);
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===== Checklist Grid ===== */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: hsl(0, 0%, 100%);
    border: 1.5px solid hsl(210, 12%, 90%);
    border-radius: 0.375rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.checklist-item:hover {
    border-color: hsl(210, 12%, 82%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.checklist-item-green {
    padding: 1.25rem;
}

.check-icon-sm {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--foreground);
    flex-shrink: 0;
    margin-top: 0.125rem;
    opacity: 0.4;
}

.check-green {
    color: var(--foreground);
    opacity: 0.4;
}

/* ===== Upload Grid ===== */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .upload-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upload-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.upload-icon-box {
    padding: 1rem;
    border: 1px solid var(--border);
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.upload-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Report Section ===== */
.report-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.report-content {
    order: 2;
}

@media (min-width: 768px) {
    .report-content {
        order: 1;
    }
}

.text-left {
    text-align: left;
}

.report-benefits {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.report-benefits-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.report-image-container {
    position: relative;
    height: 24rem;
    width: 100%;
    order: 1;
}

@media (min-width: 768px) {
    .report-image-container {
        order: 2;
    }
}

.report-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--background), transparent);
}

/* ===== Independence Section ===== */
.independence-text {
    white-space: pre-line;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.independence-divider {
    margin: 3rem auto;
    padding-top: 3rem;
    border-top: 2px solid hsl(210, 12%, 88%);
    max-width: 48rem;
}

.independence-statement {
    font-size: 1.375rem;
    font-weight: 650;
    color: var(--foreground);
    letter-spacing: -0.025em;
    line-height: 1.35;
}

/* ===== CTA Box ===== */
.cta-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--foreground);
    color: hsl(0, 0%, 70%);
    border-top: 1px solid hsl(0, 0%, 20%);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
        padding-right: 2rem;
    }
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-bottom: 1rem;
    background: transparent;
    mix-blend-mode: normal;
}

.footer-tagline {
    font-size: 0.8125rem;
    color: hsl(0, 0%, 55%);
    max-width: 20rem;
    line-height: 1.5;
    font-weight: 400;
}

.footer-credibility {
    font-size: 0.6875rem;
    color: hsl(0, 0%, 45%);
    max-width: 20rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    font-weight: 400;
}

.footer-links-section {
    grid-column: span 1;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: hsl(0, 0%, 90%);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: hsl(0, 0%, 55%);
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover {
    color: hsl(0, 0%, 90%);
    opacity: 1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(0, 0%, 20%);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: hsl(0, 0%, 50%);
}

.footer-subtext {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: hsl(0, 0%, 50%);
}

/* ===== How It Works Page ===== */
.steps-container {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-container {
        gap: 3rem;
    }
}

.step-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .step-card {
        padding: 2rem;
    }
}

.step-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.5rem;
}

.step-icon-box {
    padding: 0.75rem;
    background-color: var(--secondary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.step-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 1.5rem;
    }
}

.step-content {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .step-content {
        margin-left: 4rem;
    }
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.step-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
    border-left: 2px solid rgba(37, 99, 235, 0.3);
    padding-left: 1rem;
}

.credibility-callout {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ===== Page-Specific Components ===== */

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Info Cards */
.info-card {
    background-color: hsl(0, 0%, 100%);
    border: 1.5px solid hsl(210, 12%, 90%);
    padding: 2rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.info-card-text {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Qualification Cards */
.qualification-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: 0.375rem;
    border: 1.5px solid hsl(210, 12%, 88%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.qualification-card-green {
    border-color: hsl(142, 30%, 75%);
    background-color: hsl(142, 30%, 98%);
}

.qualification-title {
    font-size: 1.5rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.qualification-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qualification-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.qualification-list-muted {
    color: var(--muted-foreground);
}

/* X Icon */
.x-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--muted-foreground);
}

.x-icon-red {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: hsl(0, 84%, 60%);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.step-icon-circle {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-item-desc {
    color: var(--muted-foreground);
}

/* Trust Section */
.trust-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-icon {
    color: var(--primary);
}

.trust-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .trust-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-pillar {
    padding: 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Card */
.cta-card {
    text-align: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-card-text {
    color: var(--muted-foreground);
    margin: 0.75rem auto 1.5rem;
    max-width: 32rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    color: var(--muted-foreground);
}

/* Callout Box */
.callout-box {
    background-color: rgba(210, 225, 245, 0.5);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .callout-box {
        padding: 3rem;
    }
}

.callout-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.callout-text {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Don't List */
.dont-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dont-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Gain Card */
.gain-card {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.gain-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 1rem;
}

.gain-list {
    list-style: disc;
    list-style-position: inside;
    color: #166534;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Use Case Cards */
.use-case-card {
    text-align: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.use-case-icon {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--primary);
}

.use-case-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.use-case-desc {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

/* Neutrality Points */
.neutrality-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .neutrality-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .neutrality-points {
        grid-template-columns: repeat(4, 1fr);
    }
}

.neutrality-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Who List */
.who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.who-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--primary);
}

/* Future Card */
.future-card {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.future-card-icon {
    color: #166534;
    margin-bottom: 0.5rem;
}

.future-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.5rem;
}

.future-card-subtitle {
    color: rgba(22, 101, 52, 0.8);
    margin-bottom: 1rem;
}

.future-list {
    list-style: disc;
    list-style-position: inside;
    color: #166534;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ===== Pricing Cards ===== */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 84rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-header {
    padding-top: 1rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.pricing-name-primary {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-qualifier {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 1rem 0 0.5rem;
}

.pricing-value-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-features .text-muted {
    color: var(--muted-foreground);
}

.pricing-features .font-medium {
    font-weight: 500;
}

.pricing-scenarios {
    margin-bottom: 1.5rem;
}

.pricing-scenarios-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-scenarios-list {
    list-style: disc;
    list-style-position: inside;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pricing-scenarios-list li {
    margin-bottom: 0.25rem;
}

.pricing-note-box {
    background-color: rgba(210, 225, 245, 0.5);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-footer-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Info Note */
.info-note {
    display: flex;
    gap: 0.75rem;
    max-width: 40rem;
    margin: 2rem auto 0;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--muted-foreground);
}

.info-note p {
    color: var(--muted-foreground);
}

.info-note-small {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Button Secondary */
.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background-color: hsl(210, 40%, 90%);
}

/* Support Helper Text */
.support-helper {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.support-helper a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.support-helper a:hover {
    color: var(--foreground);
}

.reassurance-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-support {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}

.footer-support a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.footer-support a:hover {
    color: var(--foreground);
}

/* ===== Utility Classes ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Rebuild trigger: Thu Jan  8 17:20:19 CST 2026 */
