/*
Theme Name: Flikt.AI
Theme URI: https://flikt.ai
Author: Flikt.AI
Description: Flikt.AI - Human Error Ends Here
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: fliktai
*/

/* CSS Variables - Matching Manus Design */
:root {
    --navy: #1e3a5f;
    --navy-dark: #152d47;
    --gold: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --red: #dc2626;
    --green: #10b981;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo .navy {
    color: var(--navy);
}

.logo .gold {
    color: var(--gold);
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

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

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-dark);
}

/* Hero Section */
.hero {
    padding: 48px 20px;
    text-align: center;
    background: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--green);
    font-weight: bold;
}

/* Problem Section */
.problem-section {
    padding: 48px 20px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.problem-section .subtitle {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 60px;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-number.red {
    color: #ef4444;
}

.stat-number.gold {
    color: var(--gold);
}

.stat-number.amber {
    color: #fbbf24;
}

.stat-text {
    font-size: 14px;
    opacity: 0.7;
}

/* Three Categories Section */
.categories-section {
    padding: 48px 20px;
    background: var(--white);
}

.categories-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.categories-section .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--gold);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.category-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 48px 20px;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.how-it-works .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Sample Report Section */
.sample-report {
    padding: 48px 20px;
    background: var(--white);
}

.sample-report .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sample-text {
    padding-right: 40px;
}

.sample-badge {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sample-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.sample-text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.sample-stats {
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.stat-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.report-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.report-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.report-card .subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.report-score {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.score-circle {
    width: 80px;
    height: 80px;
    border: 4px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.score-number {
    font-size: 28px;
    font-weight: 700;
}

.score-total {
    font-size: 12px;
    color: var(--text-tertiary);
}

.score-description {
    flex: 1;
}

.score-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.tag.critical {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.tag.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
}

.tag.clear {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.conflicts-list {
    margin-bottom: 20px;
}

.conflict-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.conflict-item.red {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.conflict-item.amber {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.conflict-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.conflict-dot.red {
    background: var(--red);
}

.conflict-dot.amber {
    background: var(--gold);
}

.conflict-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.conflict-confidence {
    font-size: 12px;
    color: var(--text-tertiary);
}

.report-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ROI Calculator Section */
.roi-section {
    padding: 48px 20px;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.roi-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.roi-text {
    padding-right: 40px;
}

.roi-badge {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.roi-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.roi-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.roi-stats {
    margin-bottom: 32px;
}

.roi-stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.roi-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-stat-icon.red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.roi-stat-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
}

.roi-stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.roi-stat-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.roi-stat-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.industry-note {
    padding: 16px;
    background: rgba(30, 58, 95, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.calculator-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.calculator-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}

.calculator-header h3 {
    font-size: 20px;
}

.calculator-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.calculator-inputs {
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 24px;
}

.input-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.input-value {
    color: var(--gold);
    font-weight: 700;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.results-section {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
}

.results-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.result-box {
    padding: 16px;
    border-radius: 8px;
}

.result-box.green {
    background: rgba(16, 185, 129, 0.1);
}

.result-box.blue {
    background: rgba(59, 130, 246, 0.1);
}

.result-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 8px;
}

.result-label.green {
    color: #059669;
}

.result-label.blue {
    color: #2563eb;
}

.result-number {
    font-size: 28px;
    font-weight: 700;
}

.result-number.green {
    color: #059669;
}

.result-number.blue {
    color: #2563eb;
}

.conflicts-detected {
    background: rgba(30, 58, 95, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.conflicts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.conflicts-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.conflicts-numbers {
    font-size: 18px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold), var(--green));
    width: 80%;
    transition: width 0.5s;
}

.conflicts-note {
    font-size: 12px;
    color: var(--text-secondary);
}

.roi-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    margin-bottom: 24px;
}

.roi-label h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.roi-label p {
    font-size: 12px;
    color: var(--text-secondary);
}

.roi-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.calculator-notes {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.calculator-notes li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.calculator-notes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Pitch Section */
.pitch-section {
    padding: 48px 20px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.pitch-badge {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pitch-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.pitch-section .quote {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pitch-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.pitch-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.pitch-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.pitch-card p {
    font-size: 14px;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    padding: 48px 20px;
    background: var(--bg-light);
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.testimonials .subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    opacity: 0.7;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: rgba(245, 158, 11, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(30, 58, 95, 0.5);
}

.author-name {
    font-weight: 500;
    color: var(--text-tertiary);
}

.author-title {
    font-size: 12px;
    color: var(--text-tertiary);
}

.testimonials-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Demo Section */
.demo-section {
    padding: 48px 20px;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.demo-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
}

.demo-text {
    padding-right: 40px;
}

.demo-badge {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.demo-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.demo-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.demo-features {
    margin-bottom: 32px;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.demo-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.demo-feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.demo-feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.demo-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.demo-card-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.demo-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.demo-card .subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.demo-cta {
    margin-bottom: 16px;
}

.demo-divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.demo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.demo-divider span {
    position: relative;
    background: var(--white);
    padding: 0 16px;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.demo-linkedin {
    border: 1px solid rgba(0, 119, 181, 0.2);
    background: rgba(0, 119, 181, 0.05);
    color: #0077B5;
}

.demo-linkedin:hover {
    background: rgba(0, 119, 181, 0.1);
}

.demo-footer-text {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 24px;
}

/* Final CTA */
.final-cta {
    padding: 48px 20px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #fbbf45;
  color: var(--white);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 32px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .sample-report .container,
    .roi-section .container,
    .demo-section .container {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CLEAN CONTACT PAGE STYLES
   ======================================== */

/* Hero Section */
.contact-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    text-align: center;
    color: white;
}

.contact-hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Section */
.contact-main-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

/* Form Column */
.contact-form-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.form-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.clean-contact-form {
    max-width: 100%;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
    background: #ffffff;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Success/Error Messages */
.success-message {
    text-align: center;
    padding: 60px 40px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 12px;
}

.success-icon {
    color: #10b981;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 16px;
    color: #047857;
}

.error-message {
    padding: 20px 24px;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
    margin-bottom: 28px;
}

.error-message p {
    color: #dc2626;
    margin: 0;
    font-size: 15px;
}

/* Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.2s;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.info-icon.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #006699 100%);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.info-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.info-link:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

.response-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #92400e;
    font-size: 14px;
    font-weight: 500;
}

.response-note svg {
    flex-shrink: 0;
    color: #f59e0b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-hero-section h1 {
        font-size: 36px;
    }
    
    .hero-desc {
        font-size: 18px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-layout {
        gap: 40px;
    }
    
    .contact-form-column h2 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 24px;
    }
}


/* ========== Pricing Section ========== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}
.pricing-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.pricing-section .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}
.toggle-label {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.3s;
}
.toggle-label.toggle-active {
    color: var(--navy);
    font-weight: 700;
}
.save-badge {
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #cbd5e1;
    border-radius: 26px;
    transition: 0.3s;
}
.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
    background: var(--gold);
}
.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(245,158,11,0.15);
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
}
.pricing-card.featured .pricing-card-header {
    padding-top: 48px;
}
.pricing-card-header {
    padding: 28px 24px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}
.pricing-card-header h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.pricing-amount .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}
.price-period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}
.pricing-card-body {
    padding: 20px 24px;
    flex: 1;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-features li {
    padding: 8px 0;
    color: #475569;
    font-size: 0.92rem;
    border-bottom: 1px solid #f8fafc;
    padding-left: 20px;
    position: relative;
}
.pricing-features li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-card-footer {
    padding: 16px 24px 24px;
    text-align: center;
}
.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    background: var(--navy);
    color: #fff;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-pricing:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
}
.btn-pricing-featured {
    background: var(--gold);
    color: #fff;
}
.btn-pricing-featured:hover {
    background: #d97706;
}

/* Per-Project Section */
.per-project-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.per-project-section h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.per-project-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}
.per-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.per-project-card {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.per-project-rate {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}
.per-project-label {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.per-project-detail {
    font-size: 0.85rem;
    color: #64748b;
}

/* Pricing Benefits */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.benefit-item {
    text-align: center;
    padding: 20px;
}
.benefit-item strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 6px;
}
.benefit-item span {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .per-project-grid {
        grid-template-columns: 1fr;
    }
    .pricing-benefits {
        grid-template-columns: 1fr;
    }
    .pricing-section {
        padding: 50px 0;
    }
    .pricing-section h2 {
        font-size: 1.75rem;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

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

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* ============================================================
   UX AUDIT FIXES — Session 53 (March 24, 2026)
   F-03, F-04, F-07, F-08, F-11, F-14
   ============================================================ */

/* F-04: Hero text link style (replaces secondary button) */
.hero-text-link {
    display: inline-block;
    margin-top: 12px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.hero-text-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* F-08: Back-to-top button (mobile only) */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 999;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.back-to-top.visible {
    display: flex;
}

/* F-11: Make pricing toggle more prominent */
.pricing-toggle {
    background: var(--bg-light) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    padding: 6px 8px !important;
    margin: 0 auto 32px !important;
    display: inline-flex !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15) !important;
}
.pricing-toggle button,
.pricing-toggle .toggle-btn {
    padding: 10px 24px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
}
.pricing-toggle .active,
.pricing-toggle button.active {
    background: var(--gold) !important;
    color: #fff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* F-12: Footer grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
    text-align: left;
}
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col .footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col .footer-links a:hover {
    color: #fff;
}
.footer-contact a {
    color: var(--gold) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
}

/* F-03: Shorten mobile homepage — hide lower-priority sections */
@media (max-width: 768px) {
    .pitch, section.pitch { display: none !important; }
    .how-it-works, section.how-it-works { display: none !important; }
    .categories .category-card { padding: 16px !important; }
    .categories .category-card ul { display: none !important; }
    section { padding-top: 40px !important; padding-bottom: 40px !important; }
    .hero { padding-top: 80px !important; padding-bottom: 40px !important; }

    /* F-07: Compact pricing on mobile */
    .pricing-card { padding: 20px 16px !important; }
    .pricing-card .feature-list li { font-size: 0.85rem !important; padding: 4px 0 !important; }
    .pricing-card h3 { font-size: 1.1rem !important; }
    .pricing .price { font-size: 1.8rem !important; }

    /* Footer responsive */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}

@media (min-width: 769px) {
    .pitch, section.pitch,
    .how-it-works, section.how-it-works { display: block !important; }
}


/* ========== HOMEPAGE V2 POLISH OVERRIDES (2026-05-22) ========== */
.hero{background:radial-gradient(ellipse 60% 40% at 50% 25%,rgba(201,169,97,.18) 0%,transparent 60%),linear-gradient(180deg,#1e3a5f 0%,#152d4a 100%) !important;color:#fff;position:relative;overflow:hidden;padding:88px 20px 72px !important}
.hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:48px 48px;-webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,#000 0%,transparent 80%);mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,#000 0%,transparent 80%);pointer-events:none;z-index:0}
.hero .container{position:relative;z-index:1}
.hero h1{color:#fff !important;font-size:clamp(2.4em,5vw,4em) !important;line-height:1.05 !important;letter-spacing:-.025em;margin:.3em 0 .35em !important}
.hero h1 .highlight{color:#c9a961 !important}
.hero .hero-badge{background:rgba(201,169,97,.16);color:#c9a961;border:1px solid rgba(201,169,97,.35);padding:6px 14px;border-radius:999px;font-size:.85em;font-weight:600;letter-spacing:.04em}
.hero p,.hero .lede{color:#c5d3e6 !important;font-size:1.15em;max-width:760px;margin-left:auto;margin-right:auto}
.hero strong{color:#fff !important}
.hero .hero-cta{margin-top:1.4em}
.hero .hero-cta .btn-primary{background:#c9a961 !important;color:#1e3a5f !important;font-weight:700;padding:14px 28px;border-radius:8px;min-width:180px;transition:all .15s ease;box-shadow:0 6px 18px rgba(201,169,97,.25)}
.hero .hero-cta .btn-primary:hover{background:#b89853 !important;transform:translateY(-1px)}
.hero .hero-cta .btn-secondary{background:transparent !important;color:#fff !important;border:1px solid rgba(255,255,255,.35) !important;font-weight:700;padding:13px 28px;border-radius:8px;min-width:180px;transition:all .15s ease}
.hero .hero-cta .btn-secondary:hover{background:rgba(255,255,255,.08) !important;border-color:rgba(255,255,255,.65) !important}
.hero .hero-features{margin-top:2em;color:#c5d3e6 !important;flex-wrap:wrap;gap:18px 28px}
.hero .hero-features .feature{color:#c5d3e6 !important;font-size:.92em}
.hero .hero-features .check-icon{color:#c9a961 !important;background:rgba(201,169,97,.18);width:22px;height:22px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-size:.8em}
.final-cta{background:linear-gradient(135deg,#1e3a5f 0%,#152d4a 100%) !important;color:#fff !important;padding:72px 20px !important;position:relative;overflow:hidden}
.final-cta::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);background-size:48px 48px;pointer-events:none}
.final-cta .container{position:relative;z-index:1}
.final-cta h2{color:#fff !important;font-size:clamp(1.7em,3vw,2.4em);letter-spacing:-.02em}
.final-cta p{color:#c5d3e6 !important;font-size:1.1em}
.final-cta .btn-primary{background:#c9a961 !important;color:#1e3a5f !important;font-weight:700;padding:14px 28px;border-radius:8px;min-width:200px;transition:all .15s ease;box-shadow:0 8px 20px rgba(201,169,97,.3)}
.final-cta .btn-primary:hover{background:#b89853 !important;transform:translateY(-1px)}
.categories-section .category-card{border-radius:14px !important;transition:all .25s ease;border:1px solid #e6e6ec}
.categories-section .category-card:hover{transform:translateY(-3px);border-color:#c9a961;box-shadow:0 14px 36px rgba(30,58,95,.1)}
.categories-section .category-icon{font-size:2.4em;margin-bottom:.4em}
.problem-section{position:relative}
/* End homepage v2 polish */


/* ========== BUYER PAGES: dark hero polish (2026-05-22) ========== */
.flikt-buyer .hero{width:100vw !important;position:relative;left:50%;margin-left:-50vw;background:radial-gradient(ellipse 60% 40% at 50% 25%,rgba(201,169,97,.18) 0%,transparent 60%),linear-gradient(180deg,#1e3a5f 0%,#152d4a 100%) !important;color:#fff !important;padding:96px 24px 80px !important;border-bottom:none !important;overflow:hidden;text-align:center}
.flikt-buyer .hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:48px 48px;-webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,#000 0%,transparent 80%);mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,#000 0%,transparent 80%);pointer-events:none;z-index:0}
.flikt-buyer .hero>*{position:relative;z-index:1;max-width:980px;margin-left:auto;margin-right:auto}
.flikt-buyer .hero h1{color:#fff !important;font-size:clamp(2.4em,4.8vw,3.6em) !important;line-height:1.08 !important;letter-spacing:-.025em;max-width:880px;margin-left:auto !important;margin-right:auto !important;text-align:center !important}
.flikt-buyer .hero .eyebrow{display:inline-block;text-align:center;color:#c9a961 !important;font-weight:700;letter-spacing:.18em}
.flikt-buyer .hero .lede{margin-left:auto !important;margin-right:auto !important;text-align:center !important;color:#c5d3e6 !important;font-size:1.18em;max-width:760px}
.flikt-buyer .hero strong{color:#fff !important}
.flikt-buyer .hero .cta-primary{background:#c9a961 !important;color:#1e3a5f !important;font-weight:700;padding:14px 28px;border-radius:8px;min-width:180px;transition:all .15s ease;box-shadow:0 6px 18px rgba(201,169,97,.25);text-decoration:none;display:inline-block}
.flikt-buyer .hero .cta-primary:hover{background:#b89853 !important;transform:translateY(-1px)}
.flikt-buyer .hero .cta-secondary{background:transparent !important;color:#fff !important;border:1px solid rgba(255,255,255,.35) !important;font-weight:700;padding:13px 28px;border-radius:8px;min-width:180px;transition:all .15s ease;text-decoration:none;display:inline-block}
.flikt-buyer .hero .cta-secondary:hover{background:rgba(255,255,255,.08) !important;border-color:rgba(255,255,255,.65) !important}
.flikt-buyer .hero .cta-row{margin-top:1.4em;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
/* End buyer page polish */


/* ========== HOMEPAGE STAT STRIP (2026-05-22, S198) ========== */
.home-stat-strip {
  background: #fff;
  padding: 56px 24px;
  border-bottom: 1px solid #e6e6e6;
}
.home-stat-strip .hss-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  text-align: center;
}
.home-stat-strip .hss-num {
  color: #1e3a5f;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  font-family: inherit;
}
.home-stat-strip .hss-label {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .home-stat-strip { padding: 40px 16px; }
  .home-stat-strip .hss-wrap { grid-template-columns: 1fr; gap: 24px; }
  .home-stat-strip .hss-num { font-size: 2.6rem; }
}


/* ========== HOMEPAGE HOW IT WORKS POLISH (2026-05-22, S198) ========== */
.how-it-works .steps {
  position: relative;
}
.how-it-works .steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c5d3e6 18%, #c5d3e6 82%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.how-it-works .step {
  position: relative;
  z-index: 1;
}
.how-it-works .step-icon {
  position: relative;
  z-index: 1;
}
.how-it-works .step-number {
  width: 44px !important;
  height: 44px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 2px 6px rgba(30, 58, 95, 0.15);
  margin-bottom: 16px !important;
}
@media (max-width: 860px) {
  .how-it-works .steps::before { display: none; }
}


/* ========== HOMEPAGE HERO BACKGROUND VIDEO (2026-05-22, S198) ========== */
.hero {
  background: #1e3a5f !important;
}
.hero .hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85) blur(3px);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 25%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(20, 40, 70, 0.55) 0%, rgba(15, 30, 55, 0.70) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  z-index: 2 !important;
}
.hero .container {
  position: relative;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg-video { display: none; }
  .hero {
    background:
      radial-gradient(ellipse 60% 40% at 50% 25%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
      linear-gradient(180deg, #1e3a5f 0%, #152d4a 100%) !important;
  }
}
