/* ============================================
   LEADQC - ZAPIER-INSPIRED DESIGN SYSTEM
   ============================================ */

:root {
    --primary: #E8613C;
    --primary-hover: #D24304;
    --primary-light: #FFF0EB;
    --dark: #201515;
    --dark-bg: #201515;
    --dark-card: #2a2020;
    --text: #36342E;
    --text-muted: #6d6a62;
    --bg-cream: #FFFEFB;
    --bg-warm: #F8F4F0;
    --border: #ddd8d0;
    --border-dark: #C5C0B1;
    --white: #FFFEFB;
    --gradient-orange: linear-gradient(135deg, #E8613C, #FF8C42);
    --shadow-sm: 0 1px 3px rgba(32,21,21,0.06), 0 1px 2px rgba(32,21,21,0.04);
    --shadow: 0 4px 12px rgba(32,21,21,0.08);
    --shadow-lg: 0 10px 35px rgba(32,21,21,0.12);
    --radius: 5px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --font: 'futura-pt', 'Futura', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-cream);
    max-width: 100vw;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--primary);
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
}

.section-tag-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(232,97,60,0.4);
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
}

.text-gradient {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
}

.text-gradient-orange {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    font-style: italic;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 0.75rem 0;
    transition: all var(--transition);
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255,254,251,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.navbar-logo {
    height: 64px;
    width: auto;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

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

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 97, 60, 0.35);
}

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

.btn-outline-custom {
    border: 1.5px solid var(--dark);
    color: var(--dark);
    border-radius: 4px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    transition: all var(--transition);
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background: var(--bg-warm);
}

.bg-dark-section {
    background: var(--dark-bg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 140px 0 80px;
    background: var(--bg-cream);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero-title-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-buttons .btn {
    white-space: nowrap;
}

/* Hero Card */
.hero-card-container {
    position: relative;
}

.hero-verification-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0 1.75rem 1.75rem;
    border: 1px solid var(--border);
}

.hero-card-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #eceae3;
}

.topbar-dot {
    width: 8px;
    height: 8px;
    background: #22a861;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.topbar-text {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-score-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0faf0;
    border: 1px solid #c8e6c8;
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    margin-bottom: 1.25rem;
}

.score-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d6a2d;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d6a2d;
}

.score-total {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6aaa6a;
}

.verification-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.verification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eceae3;
}

.verification-item:last-child {
    border-bottom: none;
}

.item-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.badge-verified {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d6a2d;
    background: #f0faf0;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid #c8e6c8;
}

.badge-verified i {
    margin-right: 0.2rem;
}

.badge-info-custom {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff4ff;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid #c8d8f0;
}

.badge-active {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d6a2d;
    background: #f0faf0;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid #c8e6c8;
}

.badge-percent {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid #f0cfc0;
}

.badge-removed {
    font-size: 0.75rem;
    font-weight: 600;
    color: #dc2626;
    background: #fef2f2;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid #fecaca;
}

.badge-removed i {
    margin-right: 0.2rem;
}

.verification-item.item-removed {
    opacity: 0.6;
    background: #fef2f2;
    margin: 0 -1.75rem;
    padding: 0.65rem 1.75rem;
    border-bottom: none;
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-cream);
    overflow: hidden;
}

.logo-scroll {
    overflow: hidden;
    position: relative;
}

.logo-scroll::before,
.logo-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.logo-scroll::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-cream), transparent);
}

.logo-scroll::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-cream), transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}

.logo-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--border-dark);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PROBLEM CARDS
   ============================================ */
.problem-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    border-color: var(--text);
    background: var(--bg-warm);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.problem-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.problem-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.problem-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   FEATURE CARDS (Why LeadQC)
   ============================================ */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon-wrap i {
    font-size: 1.4rem;
    color: var(--primary);
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   VERIFICATION TABS
   ============================================ */
.verification-tabs .nav-pills {
    gap: 0;
}

.verification-tabs .nav-link {
    background: #fff !important;
    color: var(--text) !important;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.7rem 2rem !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.verification-tabs .nav-item:first-child .nav-link {
    border-radius: 4px 0 0 4px;
}

.verification-tabs .nav-item:last-child .nav-link {
    border-radius: 0 4px 4px 0;
    border-left: 0;
}

.verification-tabs .nav-link.active {
    background: var(--dark) !important;
    color: #fff !important;
    border-color: var(--dark);
}

.verification-visual {
    display: flex;
    justify-content: center;
}

.rfp-analysis-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
}

.rfp-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1rem;
}

.rfp-header i {
    font-size: 1.2rem;
    color: var(--primary);
}

.rfp-progress-bar {
    height: 6px;
    background: #eceae3;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.rfp-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.rfp-status {
    font-size: 0.775rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.rfp-checks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.rfp-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-verified-sm {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2d6a2d;
    background: #f0faf0;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    border: 1px solid #c8e6c8;
}

.rfp-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0faf0;
    border: 1px solid #c8e6c8;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.score-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d6a2d;
}

/* RFP Rejected Row */
.rfp-rejected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc2626;
}

.rfp-rejected i {
    font-size: 0.9rem;
}

/* LinkedIn Category Groups */
.linkedin-category {
    margin-bottom: 0.75rem;
}

.linkedin-category:last-child {
    margin-bottom: 0;
}

.linkedin-cat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 0.4rem 0 0.2rem;
    border-bottom: 1px solid #eceae3;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.linkedin-cat-label i {
    font-size: 0.8rem;
    color: var(--primary);
}

.linkedin-category .rfp-checks {
    margin-bottom: 0;
    gap: 0.35rem;
}

/* Removed & Flagged badges (small) */
.badge-removed-sm {
    font-size: 0.65rem;
    font-weight: 600;
    color: #dc2626;
    background: #fef2f2;
    padding: 0.12rem 0.45rem;
    border-radius: 3px;
    border: 1px solid #fecaca;
}

.badge-removed-sm i {
    margin-right: 0.15rem;
    font-size: 0.6rem;
}

.badge-flagged-sm {
    font-size: 0.65rem;
    font-weight: 600;
    color: #d97706;
    background: #fffbeb;
    padding: 0.12rem 0.45rem;
    border-radius: 3px;
    border: 1px solid #fde68a;
}

.badge-flagged-sm i {
    margin-right: 0.15rem;
    font-size: 0.6rem;
}

.rfp-check-removed {
    opacity: 0.65;
}

.rfp-check-flagged {
    opacity: 0.8;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-list li i {
    font-size: 1rem;
}

/* ============================================
   DATA POINTS
   ============================================ */
.data-points-grid {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.data-point-header {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.data-point-card {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 1.25rem;
    height: 100%;
    border: 1px solid var(--border);
}

.dp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.dp-header i {
    color: var(--primary);
    font-size: 1rem;
}

.dp-count {
    margin-left: auto;
    background: var(--dark);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.dp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.dp-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Data Summary Card */
.data-summary-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.summary-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    border: 1px solid #f0cfc0;
}

.summary-total {
    text-align: center;
    padding: 1.5rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.total-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.total-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.total-desc {
    font-size: 0.775rem;
    color: var(--text-muted);
}

.realtime-badge {
    background: #f0faf0;
    color: #2d6a2d;
    font-size: 0.775rem;
    font-weight: 600;
    text-align: center;
    padding: 0.55rem;
    border-radius: var(--radius);
    border: 1px solid #c8e6c8;
}

.realtime-badge i {
    margin-right: 0.25rem;
}

/* ============================================
   INTEGRATIONS / DARK SECTION
   ============================================ */
.integration-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}

.integration-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.integration-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 97, 60, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.integration-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.integration-card h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.integration-subtitle {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.integration-card .text-muted {
    color: rgba(255,255,255,0.55) !important;
}

.integration-card .fw-semibold {
    color: rgba(255,255,255,0.8);
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.int-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 0.775rem;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    font-weight: 500;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* ============================================
   VALUE CARDS
   ============================================ */
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--text);
    background: var(--bg-warm);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.value-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.value-card-highlight {
    background: var(--primary-light);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all var(--transition);
}

.value-card-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,97,60,0.12);
}

.value-icon-highlight {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-highlight i {
    font-size: 1.2rem;
    color: #fff;
}

.value-card-highlight h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.value-card-highlight p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   SECURITY & COMPLIANCE
   ============================================ */
.security-section {
    padding: 80px 0;
}

.security-inner {
    background: var(--dark-bg);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.security-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
}

.security-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.security-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 400px;
}

.trust-badges-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

.trust-pill i {
    font-size: 0.65rem;
    color: var(--primary);
}

/* Pillars Grid */
.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pillar-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.pillar-compact:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(232,97,60,0.2);
}

.pillar-icon-sm {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(232,97,60,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-sm i {
    font-size: 0.95rem;
    color: var(--primary);
}

.pillar-compact h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.pillar-compact p {
    font-size: 0.775rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .security-inner {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .security-inner {
        padding: 2rem 1.5rem;
    }

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.15rem 0;
    padding-left: 1.1rem;
    position: relative;
}

.step-content ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   RESULTS / STATS
   ============================================ */
.results-section {
    background: var(--bg-warm);
}

.results-banner {
    background: var(--dark-bg);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    overflow: hidden;
    position: relative;
}

.results-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
}

.results-header {
    margin-bottom: 3rem;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.results-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

@media (max-width: 991px) {
    .results-banner {
        padding: 3rem 2rem;
    }

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

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .stat-item {
        flex: 0 0 100%;
    }

    .results-banner {
        padding: 2.5rem 1.5rem;
    }
}

/* ============================================
   DASHBOARD PREVIEW
   ============================================ */
.dashboard-preview {
    max-width: 100%;
}

.dashboard-frame {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.dashboard-topbar {
    display: flex;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    background: #1e1e24;
}

.dashboard-topbar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-topbar .dot.red { background: #ff5f57; }
.dashboard-topbar .dot.yellow { background: #febc2e; }
.dashboard-topbar .dot.green { background: #28c840; }

.dashboard-topbar-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    margin-left: auto;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--text);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
}

.stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-author h6 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-author span {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-label {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.form-control {
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: all var(--transition);
    font-family: var(--font);
    background: var(--bg-cream);
}

.form-control:focus {
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(32,21,21,0.06);
    background: #fff;
}

.form-control::placeholder {
    color: var(--border-dark);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text);
    padding: 1rem 1.25rem;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-warm);
    color: var(--dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.accordion-button::after {
    background-size: 0.9rem;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 1.25rem 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.cta-buttons .btn-outline-light {
    border: 1.5px solid var(--dark);
    color: var(--dark);
    font-weight: 600;
    border-radius: 4px;
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--dark-bg);
    padding: 3.5rem 0 1.5rem;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.85rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    max-width: 300px;
    line-height: 1.65;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 2.5rem 0 1rem;
}

.footer-copyright {
    font-size: 0.775rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   HERO STAT STRIP
   ============================================ */
.hero-stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Card Footer */
.hero-card-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid #eceae3;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   PAIN STATS (Problem Section Left)
   ============================================ */
.pain-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.pain-stat {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.pain-stat:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
}

.pain-stat:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--border);
    border-top: none;
}

.pain-stat:not(:first-child):not(:last-child) {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.pain-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pain-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Problem Callout */
.problem-callout {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.problem-callout p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS V2 (Step Cards)
   ============================================ */
.step-card-v2 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-card-v2:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.step-card-v2.step-highlight {
    border-color: var(--primary);
    background: var(--primary-light);
}

.step-number-v2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

.step-card-v2 h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-card-v2 ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.55;
}

.step-card-v2 ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.65rem;
}

/* ============================================
   BEFORE/AFTER COMPARISON
   ============================================ */
.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.compare-col {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.compare-header {
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-before .compare-header {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.6);
}

.compare-after .compare-header {
    background: var(--primary);
    color: #fff;
}

.compare-row {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-before .compare-row {
    background: #fff;
    color: var(--text-muted);
}

.compare-before .compare-row i {
    flex-shrink: 0;
}

.compare-after .compare-row {
    background: #fff;
    color: var(--dark);
    font-weight: 600;
}

.compare-after .compare-row i {
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .compare-table {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi-calculator {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.roi-header {
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    background: var(--bg-warm);
}

.roi-header i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.roi-body {
    padding: 1.5rem;
}

.roi-body .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 50px;
    background: var(--border);
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(232,97,60,0.3);
    transition: transform 0.15s ease;
}

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

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(232,97,60,0.3);
}

.roi-volume {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    margin-bottom: 1.25rem;
}

.roi-volume span {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
}

.roi-savings {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--border);
}

.roi-savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

.roi-savings-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.roi-waste-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
}

.roi-leadqc-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.roi-savings-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.roi-savings-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.roi-savings-percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION EXTRAS
   ============================================ */
.cta-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cta-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   GLOBAL HOVER / FOCUS / ACCESSIBILITY
   ============================================ */

/* Focus-visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.nav-link:focus-visible,
.accordion-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: none;
}

/* Verification tab hover */
.verification-tabs .nav-link:not(.active):hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: var(--primary-light) !important;
}

/* Form control hover */
.form-control:hover {
    border-color: var(--border-dark);
}

/* Accordion hover */
.accordion-button:hover {
    background: var(--bg-warm);
}

/* Outline button active */
.btn-outline-custom:active {
    transform: translateY(0) scale(0.98);
}

/* 32M+ stat highlight */
.stat-item-highlight {
    position: relative;
}

/* Stat label size bump */
.stat-label {
    font-size: 0.875rem;
}

/* Problem dark banner */
.problem-banner {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
}

.problem-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    line-height: 1.7;
}

.problem-banner strong {
    color: var(--primary);
}

.stat-value-inline {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Pain stats bigger numbers */
.pain-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Step badge */
.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-top: 0.75rem;
}

.step-badge i {
    font-size: 0.8rem;
}

/* Verification inline badges */
.verification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.v-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.v-badge i {
    font-size: 0.85rem;
}

.v-badge-green {
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.v-badge-orange {
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #f0cfc0;
}

/* Quality filters danger card */
.data-point-card-danger {
    background: #fef8f8;
    border-color: #f0cfc0;
}

.data-point-card-danger .dp-header i {
    color: #dc2626;
}

.dp-count-danger {
    background: #dc2626 !important;
}

.data-point-card-danger .dp-list li::before {
    background: #dc2626;
}

/* Case study metrics */
.case-study-metric {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.case-study-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

/* ROI waste display */
.roi-waste-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.2;
}

/* Quick capture form */
.quick-capture {
    display: flex;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.quick-capture .form-control {
    border: none;
    border-radius: 0;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.quick-capture .form-control:focus {
    box-shadow: none;
}

.quick-capture .btn {
    border-radius: 0;
    white-space: nowrap;
    padding: 1rem 1.75rem;
}

/* Compare table bigger on desktop */
.compare-table {
    font-size: 1rem;
}

.compare-row {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

.compare-header {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

/* Improve contrast on dark sections */
.stat-label {
    color: rgba(255,255,255,0.55);
}

.security-desc {
    color: rgba(255,255,255,0.55);
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.75rem; }
    .hero-title-sub { font-size: 1.1rem; }
    .section-title { font-size: 2.25rem; }
    .hero-section { padding: 130px 0 60px; }
    .hero-card-container { margin-top: 3rem; }
    .stat-value { font-size: 2.25rem; }
    .rfp-analysis-card { max-width: 100%; }
    .verification-tabs .nav-link { padding: 0.6rem 1.25rem !important; font-size: 0.85rem; }
    .contact-form-card { padding: 2rem; }
    .results-banner { padding: 3rem 2rem; }
    .security-inner { padding: 2.5rem 2rem; }
    .security-title { font-size: 2rem; }
    .trust-badges-compact { justify-content: center; }
    .compare-table { gap: 1rem; }
    .roi-body { padding: 1.5rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Typography */
    .hero-title { font-size: 2rem; }
    .hero-title-sub { font-size: 1rem; }
    .section-title { font-size: 1.65rem; }
    .section-subtitle { font-size: 0.9rem; max-width: 100%; }
    .hero-description { font-size: 0.9rem; max-width: 100%; }
    .section-padding { padding: 48px 0; }

    /* Hero */
    .hero-section { padding: 100px 0 40px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-verification-card { padding: 0 1.25rem 1.25rem; }
    .verification-item.item-removed { margin: 0 -1.25rem; padding: 0.65rem 1.25rem; }
    .hero-card-footer { font-size: 0.6rem; flex-direction: column; gap: 0.15rem; text-align: center; }

    /* Hero Stat Strip */
    .hero-stat-strip { gap: 0.5rem; padding: 0.75rem 0; }
    .hero-stat { flex: 0 0 calc(50% - 0.25rem); }
    .hero-stat strong { font-size: 0.9rem; }
    .hero-stat span { font-size: 0.6rem; }

    /* Navbar */
    .navbar-logo { height: 44px; }
    .navbar-nav { padding: 1rem 0; gap: 0.25rem; }
    .btn-nav { width: 100%; text-align: center; margin-top: 0.5rem; }

    /* Results */
    .results-banner { padding: 1.75rem 1.25rem; }
    .results-title { font-size: 1.6rem; }
    .results-subtitle { font-size: 0.85rem; max-width: 100%; }
    .stats-row { flex-direction: column; gap: 0.5rem; }
    .stat-divider { width: 50px; height: 1px; margin: 0 auto; }
    .stat-value { font-size: 2rem; }
    .stat-label { font-size: 0.75rem; }

    /* Problem */
    .problem-card { padding: 1.25rem; }
    .pain-stats { margin-bottom: 1.5rem; }
    .pain-stat { padding: 1rem 1.25rem; }
    .pain-number { font-size: 1.25rem; }
    .problem-callout { padding: 1rem; }
    .problem-callout p { font-size: 0.85rem; }

    /* How It Works */
    .step-card-v2 { padding: 1.5rem 1.25rem; }
    .step-number-v2 { font-size: 1.5rem; }

    /* Compare Table */
    .compare-table { grid-template-columns: 1fr; gap: 1rem; }
    .compare-row { padding: 0.6rem 1rem; font-size: 0.8rem; }
    .compare-header { padding: 0.75rem 1rem; font-size: 0.75rem; }

    /* Feature Cards */
    .feature-card { padding: 1.5rem 1.25rem; }
    .feature-icon-wrap { width: 46px; height: 46px; }

    /* Verification */
    .verification-tabs .nav-pills { flex-direction: column; gap: 0.5rem; }
    .verification-tabs .nav-link { width: 100%; text-align: center; border-radius: var(--radius) !important; border: 1px solid var(--border) !important; }
    .rfp-analysis-card { padding: 1.25rem; }
    .check-list li { font-size: 0.85rem; }

    /* Data Points */
    .data-points-grid .row .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .data-point-card { padding: 1rem; }
    .dp-list li { font-size: 0.75rem; }

    /* Value */
    .value-card { padding: 1.25rem; gap: 1rem; }
    .value-icon { width: 40px; height: 40px; min-width: 40px; }

    /* ROI */
    .roi-body { padding: 1.25rem; }
    .roi-col { padding: 1rem 0.75rem; }
    .roi-col-cost { font-size: 1.35rem; }
    .roi-savings-value { font-size: 2rem; }

    /* Security */
    .security-section { padding: 48px 0; }
    .security-inner { padding: 1.75rem 1.25rem; }
    .security-title { font-size: 1.5rem; }
    .pillar-compact { padding: 0.7rem; }
    .pillar-compact h6 { font-size: 0.8rem; }
    .pillar-compact p { font-size: 0.7rem; }

    /* Testimonials */
    .testimonial-card { padding: 1.25rem; }
    .testimonial-text { font-size: 0.875rem; }

    /* Contact */
    .contact-form-card { padding: 1.25rem; }

    /* FAQ */
    .accordion-button { font-size: 0.875rem; padding: 0.85rem 1rem; }
    .accordion-body { font-size: 0.825rem; padding: 0 1rem 1rem; }

    /* CTA */
    .cta-section .col-md-4 { flex: 0 0 100%; max-width: 100%; }
    .cta-trust { font-size: 0.8rem; }

    /* Footer */
    .footer-section { text-align: center; padding: 2.5rem 0 1.25rem; }
    .footer-heading { margin-top: 0.5rem; }
    .footer-links { align-items: center; }
    .footer-desc { margin: 0 auto; }
    .footer-logo { height: 40px; }

    /* Logo strip */
    .logo-strip { padding: 1.5rem 0; }
    .logo-scroll::before, .logo-scroll::after { width: 60px; }
    .logo-track { gap: 2.5rem; }
    .logo-item { font-size: 1rem; }
}

/* ============================================
   RESPONSIVE — SMALL PHONES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.45rem; }
    .hero-badge { font-size: 0.65rem; padding: 0.3rem 0.65rem; }
    .section-tag, .section-tag-light { font-size: 0.65rem; padding: 0.25rem 0.7rem; }

    .hero-stat-strip { gap: 0.4rem; }
    .hero-stat { flex: 0 0 calc(50% - 0.2rem); }
    .hero-stat strong { font-size: 0.8rem; }

    .results-banner { padding: 1.5rem 1rem; }
    .results-title { font-size: 1.4rem; }
    .stat-value { font-size: 1.75rem; }

    .roi-comparison { flex-direction: column; gap: 0.5rem; }
    .roi-col-vs { transform: rotate(90deg); padding: 0.25rem 0; }
    .roi-col-cost { font-size: 1.25rem; }
    .roi-savings-value { font-size: 1.75rem; }

    .compare-row { font-size: 0.75rem; padding: 0.5rem 0.75rem; gap: 0.4rem; }
    .compare-header { font-size: 0.7rem; padding: 0.65rem 0.75rem; }

    .pain-number { font-size: 1.1rem; }
    .pain-label { font-size: 0.7rem; }
    .pain-stat { padding: 0.85rem 1rem; }

    .problem-card { padding: 1rem; }
    .problem-card h5 { font-size: 0.9rem; }
    .problem-card p { font-size: 0.8rem; }

    .step-card-v2 { padding: 1.25rem 1rem; }
    .value-card { padding: 1rem; gap: 0.75rem; }
    .value-card h5 { font-size: 0.875rem; }
    .value-card p { font-size: 0.8rem; }

    .security-inner { padding: 1.5rem 1rem; }
    .security-title { font-size: 1.35rem; }
    .trust-pill { font-size: 0.55rem; padding: 0.2rem 0.45rem; }

    .contact-form-card { padding: 1rem; }
    .form-control { padding: 0.55rem 0.75rem; font-size: 0.85rem; }

    .footer-logo { height: 36px; }
    .footer-desc { font-size: 0.8rem; }
}

/* ============================================
   RESPONSIVE — ULTRA SMALL (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.3rem; }
    .section-padding { padding: 40px 0; }
    .hero-section { padding: 90px 0 30px; }
    .hero-description { font-size: 0.85rem; }
    .hero-verification-card { padding: 0 1rem 1rem; }
    .verification-item.item-removed { margin: 0 -1rem; padding: 0.5rem 1rem; }
    .verification-item { padding: 0.5rem 0; }
    .item-label { font-size: 0.8rem; }
    .badge-verified, .badge-active, .badge-percent, .badge-removed { font-size: 0.65rem; padding: 0.15rem 0.5rem; }

    .navbar-logo { height: 38px; }
    .hero-stat { flex: 0 0 100%; }
    .stat-value { font-size: 1.5rem; }

    .results-banner { padding: 1.25rem 0.85rem; }
    .results-title { font-size: 1.25rem; }

    .rfp-analysis-card { padding: 1rem; }
    .rfp-check { font-size: 0.8rem; }

    .roi-body { padding: 1rem; }
    .roi-savings-value { font-size: 1.5rem; }
    .roi-col { padding: 0.75rem 0.5rem; }
    .roi-col-cost { font-size: 1.1rem; }

    .security-inner { padding: 1.25rem 0.85rem; }
    .pillar-compact { flex-direction: column; text-align: center; }
    .pillar-icon-sm { margin: 0 auto; }

    .accordion-button { font-size: 0.8rem; padding: 0.75rem; }
    .accordion-body { font-size: 0.775rem; }

    .footer-section { padding: 2rem 0 1rem; }
}
