/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 156px;
    overflow: hidden;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(43, 92, 135, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 123, 200, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 92, 135, 0.12);
    border: 1px solid rgba(43, 92, 135, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6bb8ff;
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ecb71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

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

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ba3b9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-proof {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-proof-item {
    text-align: center;
    padding: 0 24px;
}

.hero-proof-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof-number {
    font-size: 2rem;
    font-weight: var(--weight-bold);
    color: #fff;
}

.hero-proof-label {
    font-size: 0.85rem;
    color: #8b92a8;
    margin-top: 4px;
}

/* ========== DASHBOARD PREVIEW ========== */
.dashboard-preview {
    margin-top: 56px;
    position: relative;
}

.dashboard-frame {
    background: linear-gradient(135deg, rgba(43, 92, 135, 0.1), rgba(20, 26, 46, 0.8));
    border: 1px solid rgba(43, 92, 135, 0.2);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 184, 255, 0.3), transparent);
}

.dashboard-mockup {
    background: #0d1222;
    border-radius: 12px;
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 0;
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dash-dot.red {
    background: #ff5f57;
}

.dash-dot.yellow {
    background: #febc2e;
}

.dash-dot.green {
    background: #28c840;
}

.dash-url {
    margin-left: 12px;
    color: #8b92a8;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.scan-result {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.scan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
}

.scan-card-label {
    color: #8b92a8;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.scan-card-value {
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-body);
    font-variant-numeric: tabular-nums;
}

.score-high {
    color: #4ecb71;
}

.score-pages {
    color: #6bb8ff;
}

.score-issues {
    color: #f59e0b;
}

.violation-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.violation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.violation-tag {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-critical {
    background: rgba(239, 68, 68, 0.15);
    color: #ff6b6b;
}

.tag-serious {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.tag-moderate {
    background: rgba(107, 184, 255, 0.15);
    color: #6bb8ff;
}

.ai-fix-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(78, 203, 113, 0.12);
    color: #4ecb71;
    letter-spacing: 0.03em;
}

/* ========== PROBLEM SECTION ========== */
.problem {
    background: #0d1222;
    margin-top: -100px;
    padding-top: 220px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s var(--ease-out-quart);
}

.problem-card:hover {
    background: rgba(239, 68, 68, 0.07);
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateX(4px);
}

.problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #e8e8e8;
}

.problem-card p {
    font-size: 0.9rem;
    color: #8b92a8;
    line-height: 1.6;
}

/* ========== HOW IT WORKS (Horizontal Step Flow) ========== */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

/* Connecting line running through the step number circles */
.how-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    /* vertical center of the 64px circles */
    left: 12.5%;
    /* horizontal center of col 1 */
    right: 12.5%;
    /* horizontal center of col 4 */
    height: 1px;
    background: linear-gradient(90deg,
            rgba(43, 92, 135, 0.7),
            rgba(58, 123, 200, 0.7),
            rgba(107, 184, 255, 0.5));
    z-index: 0;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.how-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b5c87, #3a7bc8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: var(--weight-bold);
    margin-bottom: 28px;
    position: relative;
    /* "punch out" the connecting line behind the circle */
    box-shadow: 0 0 0 8px #0d1222, 0 0 0 9px rgba(43, 92, 135, 0.3);
    transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
}

.how-step:hover .how-step-num {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px #0d1222, 0 0 0 10px rgba(58, 123, 200, 0.5), 0 8px 32px rgba(43, 92, 135, 0.4);
}

.how-step-title {
    font-size: 1.05rem;
    font-weight: var(--weight-semibold);
    color: #fff;
    margin-bottom: 12px;
}

.how-step-desc {
    font-size: 0.9rem;
    color: #9ba3b9;
    line-height: 1.65;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.35s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(43, 92, 135, 0), transparent);
    transition: all 0.4s ease;
}

.feature-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(107, 184, 255, 0.5), transparent);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(43, 92, 135, 0.25);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(43, 92, 135, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: #9ba3b9;
    line-height: 1.7;
}

/* ========== AI SECTION ========== */
.ai-section {
    background: #0b0f1c;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(43, 92, 135, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-demo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.ai-demo-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #8b92a8;
}

.ai-demo-header .ai-sparkle {
    color: #6bb8ff;
    font-size: 1rem;
}

.ai-demo-body {
    padding: 24px;
}

.ai-violation-box {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.ai-violation-title {
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.ai-violation-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #c8cdd8;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
}

.ai-fix-box {
    background: rgba(78, 203, 113, 0.06);
    border: 1px solid rgba(78, 203, 113, 0.15);
    border-radius: 10px;
    padding: 16px;
}

.ai-fix-title {
    font-size: 0.8rem;
    color: #4ecb71;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-fix-text {
    font-size: 0.88rem;
    color: #c8cdd8;
    line-height: 1.7;
}

.ai-fix-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #4ecb71;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    display: block;
}

.ai-content h2 {
    margin-bottom: 24px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.ai-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ai-feature-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(78, 203, 113, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4ecb71;
    font-size: 0.9rem;
}

.ai-feature-item h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.ai-feature-item p {
    font-size: 0.85rem;
    color: #9ba3b9;
}

/* ========== SCHEDULING SECTION ========== */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.schedule-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.cal-header {
    font-size: 0.7rem;
    color: #8b92a8;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cal-day {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #8b92a8;
    position: relative;
}

.cal-day.scanned {
    background: rgba(43, 92, 135, 0.15);
    color: #6bb8ff;
    border: 1px solid rgba(43, 92, 135, 0.25);
}

.cal-day.scanned::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4ecb71;
}

.cal-day.today {
    background: linear-gradient(135deg, #2b5c87, #3a7bc8);
    color: #fff;
    font-weight: var(--weight-semibold);
}

/* ========== INSPECTOR SECTION ========== */
.inspector-demo {
    margin-top: 64px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.inspector-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.inspector-tabs {
    display: flex;
    gap: 2px;
}

.inspector-tab {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8b92a8;
    cursor: pointer;
    transition: all 0.2s;
}

.inspector-tab.active {
    background: rgba(43, 92, 135, 0.2);
    color: #6bb8ff;
}

.inspector-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 320px;
}

.inspector-screenshot {
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.mock-page {
    border-radius: 8px;
    overflow: hidden;
}

.mock-page-header {
    background: rgba(43, 92, 135, 0.15);
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.mock-logo-rect {
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.mock-nav-items {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.mock-nav-item {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mock-page-hero {
    background: rgba(43, 92, 135, 0.08);
    padding: 32px 16px;
    text-align: center;
}

.mock-h1 {
    width: 60%;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto 12px;
}

.mock-p {
    width: 80%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin: 0 auto 6px;
}

.mock-btn-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.mock-btn {
    width: 80px;
    height: 28px;
    border-radius: 6px;
}

.mock-btn.primary-mock {
    background: rgba(43, 92, 135, 0.4);
}

.mock-btn.secondary-mock {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.violation-overlay {
    position: absolute;
    border: 2px solid #ef4444;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.08);
}

.violation-overlay-tag {
    position: absolute;
    top: -10px;
    left: 4px;
    font-size: 0.6rem;
    background: #AE0F0F;
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: var(--weight-bold);
    white-space: nowrap;
}

.inspector-panel {
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.inspector-panel-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b92a8;
    margin-bottom: 16px;
    font-weight: 600;
}

.v-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.v-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(43, 92, 135, 0.2);
}

.v-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.v-item-name {
    font-size: 0.85rem;
    color: #e8e8e8;
    font-weight: 600;
}

.v-item-desc {
    font-size: 0.78rem;
    color: #8b92a8;
}

/* ========== PRICING ========== */
.pricing {
    background: #0b0f1c;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.pricing-extra-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
}

.price-card .btn {
    margin-top: auto;
}

.price-card:hover {
    border-color: rgba(43, 92, 135, 0.3);
    transform: translateY(-4px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.price-card.tier-bronze::before {
    background: #cd7f32;
}

.price-card.tier-silver::before {
    background: linear-gradient(90deg, #9ca3af, #d1d5db);
}

.price-card.tier-gold::before {
    background: linear-gradient(90deg, #d4a017, #f5cc3b);
}

.price-card.tier-platinum::before {
    background: linear-gradient(90deg, #7c8ca8, #b4c4dc, #7c8ca8);
}

.price-card.featured {
    background: rgba(43, 92, 135, 0.08);
    border-color: rgba(43, 92, 135, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2b5c87, #3a7bc8);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.price-name {
    font-size: 1.1rem;
    color: #9ba3b9;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: var(--weight-bold);
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: #8b92a8;
}

.price-period {
    font-size: 0.85rem;
    color: #8b92a8;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: #c8cdd8;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li:last-child {
    border: none;
}

.price-check {
    color: #4ecb71;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    vertical-align: middle;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #8b92a8;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: help;
    line-height: 1;
    transition: background 0.15s ease;
}

.tooltip-icon:hover,
.tooltip-icon:focus {
    background: rgba(255, 255, 255, 0.18);
    outline: none;
}

.tooltip-content {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    background: #1c2338;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: #c4cad8;
    line-height: 1.55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 20;
    white-space: normal;
    text-align: left;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.tooltip-wrap:hover .tooltip-content,
.tooltip-wrap:focus-within .tooltip-content {
    opacity: 1;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* ========== MORE PLANS TABLE ========== */
.more-plans {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
}

.more-plans h3 {
    text-align: center;
    margin-bottom: 24px;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
}

.plans-table th,
.plans-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: var(--text-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plans-table th {
    color: #8b92a8;
    font-weight: var(--weight-semibold);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plans-table td {
    color: #c8cdd8;
    font-variant-numeric: tabular-nums;
}

.plans-table tr:last-child td {
    border: none;
}

.plans-table .plan-name-cell {
    color: #fff;
    font-weight: 600;
}

/* ========== CREDIT PACKS ========== */
.credit-packs {
    margin-top: 48px;
}

.credit-packs h3 {
    text-align: center;
    margin-bottom: 8px;
}

.credit-packs .subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.credit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--ease-out-quart);
}

.credit-card:hover {
    border-color: rgba(43, 92, 135, 0.3);
    transform: translateY(-2px);
}

.credit-card-name {
    color: #6bb8ff;
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    margin-bottom: 4px;
}

.credit-card-amount {
    color: #fff;
    font-weight: var(--weight-bold);
    font-size: var(--text-2xl);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.credit-card-unit {
    color: #8b92a8;
    font-size: var(--text-xs);
    margin-bottom: 8px;
}

.credit-card-price {
    color: #c8cdd8;
    font-weight: var(--weight-semibold);
    font-size: var(--text-xl);
    font-variant-numeric: tabular-nums;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #c8cdd8;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b5c87, #3a7bc8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    color: #8b92a8;
    font-size: 0.8rem;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 720px;
    margin: 64px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e8e8e8;
    transition: color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    color: #6bb8ff;
}

.faq-chevron {
    transition: transform 0.3s var(--ease-out-quart);
    color: #8b92a8;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: #9ba3b9;
    line-height: 1.8;
}

/* ========== ENTERPRISE SLIDER ========== */
.slider-container {
    position: relative;
    width: 100%;
}

.enterprise-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition: background 0.2s;
}

.enterprise-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bc8, #6bb8ff);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(43, 92, 135, 0.5), 0 0 0 4px rgba(43, 92, 135, 0.2);
    transition: box-shadow 0.2s, transform 0.15s;
    border: 3px solid #fff;
}

.enterprise-range::-webkit-slider-thumb:hover {
    transform: scale(1.12);
    box-shadow: 0 2px 20px rgba(43, 92, 135, 0.7), 0 0 0 6px rgba(43, 92, 135, 0.25);
}

.enterprise-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bc8, #6bb8ff);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(43, 92, 135, 0.5), 0 0 0 4px rgba(43, 92, 135, 0.2);
    border: 3px solid #fff;
}

.enterprise-range::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

/* ========== RISK SECTION ========== */
.risk-section {
    background: #0d0a0a;
    position: relative;
    overflow: hidden;
}

.risk-section::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.risk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 56px 0 48px;
    position: relative;
    z-index: 1;
}

.risk-stat {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.14);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s var(--ease-out-quart);
}

.risk-stat:hover {
    background: rgba(239, 68, 68, 0.09);
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateY(-3px);
}

.risk-stat-number {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: var(--weight-bold);
    color: #ef4444;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Slightly smaller for the range value so it stays on one line */
.risk-stat-number--range {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.risk-stat-label {
    font-size: 0.88rem;
    color: #c4c9d6;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
}

.risk-stat-source {
    font-size: 0.72rem;
    color: #8b92a8;
    font-style: italic;
}

.risk-callout {
    margin: 0 0 56px;
    padding: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(180, 30, 30, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-left: 4px solid #ef4444;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.risk-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.risk-callout-body {
    padding: 40px 0 40px 44px;
    flex: 1;
}

.risk-callout-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 12px;
}

.risk-callout-sub {
    font-size: 0.95rem;
    color: #9ba3b9;
    line-height: 1.85;
    max-width: 560px;
}

.risk-callout-cta {
    padding: 40px 44px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
}

.btn-risk-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    background: #ef4444;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.25s var(--ease-out-quart);
}

.btn-risk-cta svg {
    width: 18px;
    height: 18px;
}

.btn-risk-cta:hover {
    background: #dc2626;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.risk-callout-link {
    font-size: 0.85rem;
    color: #f87171;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.risk-callout-link:hover {
    color: #fca5a5;
    text-decoration: underline;
}

.risk-timeline {
    margin: 16px 0 50px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.risk-timeline h3 {
    font-size: 1.1rem;
    color: #9ba3b9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    margin-bottom: 32px;
    text-align: center;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.timeline-item {
    position: relative;
    padding: 0 16px;
    padding-top: 32px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-dot-now {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
    width: 18px;
    height: 18px;
    top: -1px;
    left: calc(50% - 1px);
}

.timeline-dot-future {
    background: rgba(107, 184, 255, 0.2);
    border-color: rgba(107, 184, 255, 0.3);
}

.timeline-date {
    font-size: 0.75rem;
    color: #8b92a8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.timeline-item-now .timeline-date {
    color: #f59e0b;
}

.timeline-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 6px;
}

.timeline-item-now .timeline-title {
    color: #fbbf24;
}

.timeline-desc {
    font-size: 0.8rem;
    color: #8b92a8;
    line-height: 1.6;
}

/* ========== REACH SECTION ========== */
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reach-content {
    max-width: 480px;
}

.reach-content p {
    font-size: 1rem;
    color: #9ba3b9;
    line-height: 1.85;
    margin-bottom: 16px;
}

.reach-stat-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reach-stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reach-stat-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reach-stat-num {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: var(--weight-bold);
    color: #6bb8ff;
    white-space: nowrap;
    min-width: 100px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.reach-stat-label {
    font-size: 0.9rem;
    color: #c4c9d6;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
}

.reach-stat-source {
    font-size: 0.72rem;
    color: #8b92a8;
    font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {

    .how-steps::before {
        display: none;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px 16px;
    }

    .how-step {
        padding: 0 16px;
    }

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

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

@media (max-width: 1024px) {

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

    .timeline-items {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .timeline-items::before {
        display: none;
    }

    .timeline-item {
        padding-top: 28px;
    }

    .reach-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-proof-item {
        border-right: none !important;
    }

    .problem-grid,
    .ai-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 16px;
    }

    .how-steps::before {
        display: none;
    }

    .how-step {
        padding: 0 12px;
    }

    .risk-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .risk-callout {
        flex-direction: column;
        border-radius: 0 0 12px 12px;
        border-left: none;
        border-top: 4px solid #ef4444;
        gap: 0;
    }

    .risk-callout-body {
        padding: 32px 28px 24px;
    }

    .risk-callout-quote {
        font-size: 1.05rem;
    }

    .risk-callout-cta {
        padding: 0 28px 32px;
        align-items: stretch;
    }

    .btn-risk-cta {
        justify-content: center;
    }

    .timeline-items {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .credits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-extra-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-card {
        order: -1;
    }

    .inspector-body {
        grid-template-columns: 1fr;
    }

    .inspector-panel {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .scan-result {
        grid-template-columns: 1fr;
    }

    .dashboard-frame {
        padding: 16px;
        border-radius: 14px;
    }

    .dashboard-mockup {
        padding: 16px;
    }

    .violation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .plans-table {
        font-size: 0.8rem;
    }

    .plans-table th,
    .plans-table td {
        padding: 10px 12px;
    }
}

/* ========== TRUSTED BY ========== */
.trusted-by {
    padding: 35px 0 15px 0;
    width: 100%;
}

.trusted-by-label {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e3e6ee;
    margin-bottom: 25px;
}

.trusted-by-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px 48px 35px 48px;
}

.trusted-by-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 64px;
}

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

.logo-item img {
    height: 36px;
    width: auto;
    max-width: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.90;
    transition: opacity 0.2s ease;
}

.logo-item img:hover {
    opacity: 1;
}

img.logo-cariloha {
    height: 24px;
}

img.logo-delsol {
    height: 32px;
    max-width: none;
}

@media (max-width: 640px) {
    .trusted-by-card {
        padding: 18px 20px 28px 20px;
    }

    .trusted-by-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 40px;
    }

    .logo-item {
        height: 48px;
    }

    .logo-item img {
        height: 28px;
    }

    img.logo-cariloha {
        height: 22px;
    }

    img.logo-delsol {
        height: 28px;
    }
}