/* ============================================
   AI Visibility Checker - Tilt Digital
   Brand Colors: Red #e31b48, Dark Grey #222223, White #FFFFFF
   ============================================ */

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

:root {
    /* Brand Colors */
    --tilt-red: #e31b48;
    --tilt-red-dark: #c4153d;
    --tilt-red-light: #ff3d5a;
    --tilt-dark: #222223;
    --tilt-dark-light: #333334;
    --tilt-white: #FFFFFF;

    /* Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--tilt-dark);
    background: var(--tilt-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--tilt-dark);
    border-bottom: 1px solid var(--tilt-dark-light);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   Section Base
   ============================================ */
.section {
    position: relative;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    padding: calc(72px + 4rem) 0 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(227, 27, 72, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 27, 72, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 27, 72, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-layout {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(227, 27, 72, 0.1) 0%, rgba(227, 27, 72, 0.05) 100%);
    border: 1px solid rgba(227, 27, 72, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tilt-red);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--tilt-dark);
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--tilt-red) 0%, var(--tilt-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tilt-dark);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ============================================
   Form Card
   ============================================ */
.form-card {
    background: var(--tilt-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tilt-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.check-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--tilt-dark);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--tilt-dark);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all var(--transition-fast);
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--tilt-red);
    background: var(--tilt-white);
    box-shadow: 0 0 0 4px rgba(227, 27, 72, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: var(--tilt-red);
    color: var(--tilt-white);
    border-radius: 0.5rem;
}

.btn-small:hover {
    background: var(--tilt-red-dark);
}

.btn-primary {
    background: linear-gradient(135deg, var(--tilt-red) 0%, var(--tilt-red-dark) 100%);
    color: var(--tilt-white);
    box-shadow: 0 4px 14px 0 rgba(227, 27, 72, 0.39);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 72, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-white {
    background: var(--tilt-white);
    color: var(--tilt-red);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Loading state */
.btn--loading .btn-text,
.btn--loading .btn-arrow {
    visibility: hidden;
}

.btn--loading .btn-loader {
    display: block;
}

.btn-loader {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Progress Section
   ============================================ */
.progress-section {
    min-height: 100vh;
    padding: calc(72px + 4rem) 0 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--tilt-white) 100%);
    display: flex;
    align-items: center;
}

.progress-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--tilt-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
}

.progress-header {
    text-align: center;
    margin-bottom: 2rem;
}

.progress-spinner {
    margin-bottom: 1rem;
}

.spinner-ring {
    animation: spin 1.5s linear infinite;
    transform-origin: center;
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tilt-dark);
    margin-bottom: 0.5rem;
}

.progress-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
}

.progress-bar-wrap {
    height: 8px;
    background: var(--gray-100);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tilt-red) 0%, var(--tilt-red-light) 100%);
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.progress-percent {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tilt-red);
    margin-bottom: 2rem;
}

.checks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.check-item--pending {
    opacity: 0.6;
}

.check-item--active {
    background: rgba(227, 27, 72, 0.05);
    border-color: rgba(227, 27, 72, 0.3);
}

.check-item--done {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.check-item--fail {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.check-item--pending .check-icon {
    background: var(--gray-200);
    color: var(--gray-400);
}

.check-item--active .check-icon {
    background: var(--tilt-red);
    color: var(--tilt-white);
    animation: pulse 1.5s infinite;
}

.check-item--done .check-icon {
    background: var(--color-success);
    color: var(--tilt-white);
}

.check-item--fail .check-icon {
    background: var(--color-error);
    color: var(--tilt-white);
}

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

.check-label {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.check-item--active .check-label {
    color: var(--tilt-red);
}

.check-item--done .check-label {
    color: var(--color-success);
}

/* ============================================
   Results Section
   ============================================ */
.results-section {
    min-height: 100vh;
    padding: calc(72px + 4rem) 0 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--tilt-white) 100%);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tilt-dark);
    margin-bottom: 0.5rem;
}

.results-company {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.score-display {
    max-width: 300px;
    margin: 0 auto 3rem;
    text-align: center;
}

.score-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#scoreRing {
    transition: stroke-dashoffset 1.5s ease-out;
}

.score-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.score-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tilt-dark);
    line-height: 1;
}

.score-max {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
    align-self: flex-end;
    margin-bottom: 8px;
}

.score-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.score-label--poor { color: var(--color-error); }
.score-label--fair { color: var(--color-warning); }
.score-label--good { color: var(--color-info); }
.score-label--excellent { color: var(--color-success); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.category-card {
    background: var(--tilt-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tilt-dark);
}

.category-score {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.category-score--pass {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.category-score--partial {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.category-score--fail {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.category-checks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.category-check-icon {
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.category-check-icon--pass {
    background: var(--color-success);
    color: white;
}

.category-check-icon--fail {
    background: var(--color-error);
    color: white;
}

/* Results CTA */
.results-cta {
    max-width: 500px;
    margin: 0 auto;
}

.cta-box {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--tilt-white) 100%);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tilt-dark);
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ============================================
   Error Section
   ============================================ */
.error-section {
    min-height: 100vh;
    padding: calc(72px + 4rem) 0 4rem;
    display: flex;
    align-items: center;
}

.error-card {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--tilt-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.error-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-error);
    margin-bottom: 0.5rem;
}

.error-message {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 6rem 0;
    background: var(--tilt-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tilt-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
}

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

.feature-card {
    padding: 2rem;
    background: var(--tilt-white);
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--tilt-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--tilt-dark) 0%, var(--tilt-dark-light) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tilt-white);
    margin-bottom: 1rem;
}

.cta-subheadline {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 0;
    background: var(--tilt-dark);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--tilt-white);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }

    .hero-section {
        padding-top: calc(72px + 2rem);
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .stat {
        align-items: center;
    }

    .form-card {
        padding: 1.5rem;
    }

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-headline {
        font-size: 1.75rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .badge {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn-full {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .progress-card,
    .error-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Animation Utilities
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

/* Recommendations */
.recommendations-section { margin-top: 2rem; }
.recs-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #222223; }
.rec-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; padding: 1rem; background: #f9f9f9; border-radius: 12px; }
.rec-number { flex-shrink: 0; width: 32px; height: 32px; background: #e31b48; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; }
.rec-content { flex: 1; }
.rec-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.375rem; }
.rec-title { font-size: 1rem; font-weight: 600; color: #222223; margin: 0; }
.rec-priority { font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; font-weight: 600; text-transform: uppercase; }
.rec-priority--high { background: #fef2f2; color: #dc2626; }
.rec-priority--medium { background: #fffbeb; color: #d97706; }
.rec-priority--low { background: #f0fdf4; color: #16a34a; }
.rec-text { font-size: 0.875rem; color: #666; margin: 0; line-height: 1.5; }
.rec-cta { margin-top: 2rem; text-align: center; padding: 1.5rem; background: #222223; border-radius: 12px; color: #fff; }
.rec-cta p { margin-bottom: 1rem; color: #ccc; }
.rec-cta .btn { display: inline-block; background: #e31b48; color: #fff; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.rec-cta .btn:hover { background: #c41740; }

/* Check detail text */
.category-check { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.category-check-info { flex: 1; display: flex; flex-direction: column; }
.category-check-name { font-size: 0.875rem; font-weight: 500; }
.category-check-detail { font-size: 0.75rem; color: #888; margin-top: 2px; }
.category-check-score { font-size: 0.75rem; color: #666; font-weight: 600; white-space: nowrap; }
