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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f8f8;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #333333;
    --accent: #000000;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links .cta-button {
    color: var(--white);
    background: var(--black);
    padding: 0.625rem 1.25rem;
}

.nav-links .cta-button:hover {
    color: var(--white);
    background: var(--gray-600);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--black);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--black);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 3rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-link:hover {
    background: var(--gray-100);
    color: var(--black);
}

.mobile-menu-cta {
    display: block;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    text-align: center;
    text-decoration: none;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-cta:hover {
    background: var(--gray-600);
}

/* Buttons */
.cta-button,
.cta-button-large,
.cta-button-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    text-align: center;
}

.cta-button {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-weight: 700;
}

.cta-button:hover {
    background: var(--gray-600);
    border-color: var(--gray-600);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button-large {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-button-large:hover {
    background: var(--gray-600);
    border-color: var(--gray-600);
}

.cta-button-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.cta-button-secondary:hover {
    background: var(--gray-100);
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left: Text Content */
.hero-text {
    max-width: 600px;
}

/* Right: Visual with Metrics */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metrics-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
}

.metrics-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.metrics-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: var(--black);
}

.metrics-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    color: #28a745;
}

.metrics-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    height: 100px;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    animation: growBar 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.chart-bar:nth-child(1) {
    height: 45%;
    animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
    height: 75%;
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    height: 55%;
    animation-delay: 0.3s;
}

.chart-bar:nth-child(4) {
    height: 90%;
    animation-delay: 0.4s;
}

.chart-bar:nth-child(5) {
    height: 65%;
    animation-delay: 0.5s;
}

.chart-bar:nth-child(6) {
    height: 80%;
    animation-delay: 0.6s;
}

.chart-bar:hover {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 100%);
    transform: scaleY(1.05);
}

.metrics-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.metrics-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: var(--black);
}

.hero-highlight {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0 0 2.5rem 0;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0 0 3rem 0;
    max-width: 540px;
}

.subtitle-mobile {
    display: none;
}

.subtitle-desktop {
    display: inline;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--black);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    background: var(--gray-600);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    border-color: var(--black);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Right Column - Visual Showcase */
.hero-showcase {
    position: relative;
}

.showcase-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.report-preview-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

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

.report-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.report-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d26a;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.report-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.report-channel {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0 0 1.5rem 0;
}

.report-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insight-card {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 12px;
}

.insight-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.insight-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.insight-metric {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
}

.report-chart {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    margin-bottom: 0.75rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chart-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}

.report-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.action-text {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.action-tag {
    padding: 0.4rem 0.8rem;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
    z-index: 10;
}

.floating-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.floating-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

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

    .hero-visual {
        order: 1;
    }

    .metrics-card {
        max-width: 100%;
    }

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

    .stat-divider {
        display: none;
    }

    .floating-stat {
        display: none;
    }
}


/* Problem Section */
.problem-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.problem-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.problem-section em {
    font-style: italic;
    color: var(--black);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.problem-card {
    padding: var(--spacing-md);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
}

.problem-card.highlight {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.problem-card.highlight h3 {
    color: var(--white);
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li:before {
    content: "→";
    position: absolute;
    left: 0;
}

.problem-card.highlight li:before {
    content: "✓";
}

/* How It Works */
.how-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
}

.how-section h2 {
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step {
    text-align: center;
}

/* Old step styles - kept for backward compatibility if needed */

/* Features */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.features-section h2 {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-md);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: var(--black);
}

/* Pricing */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
}

.pricing-section h2 {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.pricing-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--black);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price {
    margin: var(--spacing-md) 0;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
}

.price-period {
    display: block;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.price-savings {
    display: block;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.price-subtitle {
    color: var(--gray-500);
    margin-bottom: var(--spacing-md);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-md) 0;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-card .cta-button,
.pricing-card .cta-button-secondary {
    width: 100%;
    margin-top: var(--spacing-md);
}

.pricing-note {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Samples */
.samples-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.samples-section h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-top: -var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.sample-card {
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.sample-preview {
    margin-bottom: var(--spacing-md);
}

.sample-label {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

/* Report Preview */
.report-preview-section {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--gray-100);
    border-radius: 12px;
}

.report-preview-section h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.report-preview-section>p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

.report-screenshot {
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.report-screenshot:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.report-screenshot img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    display: block;
}

.screenshot-caption {
    padding: var(--spacing-sm);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    background: var(--gray-100);
}

/* FAQ */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
}

.faq-section h2 {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
}

/* Order */
.order-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.order-section h2 {
    text-align: center;
}

.order-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.order-info h3 {
    margin-bottom: var(--spacing-md);
}

.order-info ol {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.order-info ol li {
    margin: var(--spacing-xs) 0;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.order-form-container {
    display: flex;
    align-items: center;
}

.order-form {
    background: var(--gray-100);
    padding: var(--spacing-lg);
    border-radius: 8px;
    width: 100%;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--spacing-sm);
    text-align: center;
}

.divider {
    text-align: center;
    margin: var(--spacing-md) 0;
    color: var(--gray-400);
    position: relative;
}

.divider:before,
.divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--gray-300);
}

.divider:before {
    left: 0;
}

.divider:after {
    right: 0;
}

/* Footer */
/* Footer - Redesigned */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #999999;
    margin: 0;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem 0;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 0.5rem 0;
}

.footer-text-small {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

.footer-link-highlight {
    color: #66b3ff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-link-highlight:hover {
    color: #99ccff;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1a1a1a;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-guarantee,
.footer-secure {
    font-size: 0.875rem;
    color: #999999;
    display: inline-flex;
    align-items: center;
}

.footer-guarantee svg {
    color: #66b3ff;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Trust Signals */
.trust-signals {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.45rem 0.9rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-visual {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-shell {
        padding: var(--spacing-lg);
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-check {
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }

    .hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero-visual {
        gap: var(--spacing-sm);
    }
}

/* Pricing Intro */
.pricing-intro {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.125rem;
    margin: -var(--spacing-sm) auto var(--spacing-lg);
    max-width: 700px;
}

/* Pricing FAQ */
.pricing-faq {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.pricing-faq-question {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.pricing-faq a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.pricing-faq a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Hide desktop nav, show mobile menu toggle */
    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .subtitle-desktop {
        display: none;
    }

    .subtitle-mobile {
        display: inline;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0.875rem 1rem;
        flex: 1;
    }

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

    .stat-label {
        font-size: 0.8125rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.9375rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .hero-visual {
        order: 1;
    }

    .metrics-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .metrics-grid {
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .metrics-chart {
        height: 80px;
        padding: 1rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    .hero-copy {
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .hero-copy h1 {
        text-align: center;
    }

    .hero-description,
    .hero-subtitle {
        text-align: center;
    }

    .hero-checklist {
        justify-content: center;
    }

    .hero-check {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

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

    .order-content {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 1.5rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
    }

    .nav {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.125rem;
    }

    .metrics-card {
        padding: 1.25rem;
    }

    .metrics-header h3 {
        font-size: 1rem;
    }

    .metrics-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
    }

    .metric-value {
        font-size: 1.125rem;
    }

    .metric-label {
        font-size: 0.6875rem;
    }

    .metrics-chart {
        height: 70px;
        padding: 0.75rem;
    }

    .metrics-footer {
        font-size: 0.75rem;
    }

    .report-preview {
        padding: 1rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ========================================
   REDESIGNED SECTIONS - NEW STYLES
   ======================================== */

/* Problem Section - Redesigned */
.problem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.problem-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem 0;
}

.problem-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin: 0;
}

.problem-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-side {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.comparison-side:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.comparison-side.highlight {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-color: var(--black);
}

.comparison-side.highlight h3,
.comparison-side.highlight .comparison-list li {
    color: white;
}

.comparison-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.comparison-icon.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.comparison-icon.positive {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.comparison-side h3 {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.comparison-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: var(--accent);
}

.comparison-side.highlight .comparison-list li:before {
    color: #28a745;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

@media (max-width: 968px) {
    .problem-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }
}

/* How It Works - Redesigned */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 102, 255, 0.15);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-color: var(--accent);
    transform: scale(1.05);
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--black);
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.step-connector::after {
    content: "→";
    font-size: 2rem;
    color: var(--accent);
}

.how-cta {
    text-align: center;
    margin-top: 4rem;
}

.how-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray-500);
}

@media (max-width: 968px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }
}

/* Features Section - Redesigned */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-new {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card-new h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.feature-card-new p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Samples Section - Redesigned */
.samples-section {
    padding: 6rem 0;
    background: white;
}

.samples-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sample-card-new {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.sample-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.sample-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.sample-card-new h3 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
}

.sample-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 2rem 0;
}

.sample-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

.sample-cta {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sample-cta:hover {
    transform: translateX(4px);
    color: var(--black);
}

@media (max-width: 968px) {
    .samples-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Samples Note */
.samples-note {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    border: 2px dashed var(--gray-300);
    max-width: 800px;
    margin: 0 auto;
}

.samples-note p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0;
}

/* Samples Gallery */
.samples-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sample-image-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.sample-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.sample-image-container {
    position: relative;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #fafafa;
}

/* Custom scrollbar */
.sample-image-container::-webkit-scrollbar {
    width: 8px;
}

.sample-image-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sample-image-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.sample-image-container::-webkit-scrollbar-thumb:hover {
    background: #0052cc;
}

/* Gradient overlay at bottom to indicate more content */
.sample-image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 8px;
    /* Account for scrollbar */
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(250, 250, 250, 0.9));
    pointer-events: none;
}

.sample-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sample-caption {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sample-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.sample-caption p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0.75rem 0 0 0;
    font-weight: 500;
}

.samples-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.samples-note-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0 0 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .samples-gallery {
        grid-template-columns: 1fr;
    }

    .sample-image-container {
        max-height: 500px;
    }
}

/* Anonymized Badge */
.anonymized-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(102, 102, 102, 0.08);
    border: 1px solid rgba(102, 102, 102, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-top: 1rem;
}

.anonymized-badge svg {
    opacity: 0.7;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.use-case-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: rgba(0, 102, 255, 0.15);
    transform: scale(1.05);
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: var(--black);
}

.use-case-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.use-case-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    max-width: 600px;
    margin: 0 auto;
}

.use-case-note {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

@media (max-width: 968px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero {
        padding: 8rem 0 10rem;
    }

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

    .hero-description {
        font-size: 1.5rem;
        max-width: 700px;
    }

    .hero-content {
        gap: 6rem;
    }
}

/* New Utility Classes to Replace Inline Styles */
.hero-badge-minimal {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #000;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    background: #fff;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.hero-platform-selector {
    margin-bottom: 2.5rem;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
}

.selector-label {
    font-family: monospace;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.platform-toggles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.platform-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.2s;
}

/* Active state handled by JS, but base style here */
.platform-btn-inner.active {
    border: 2px solid #000;
    opacity: 1;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

.hero-selector-cta {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: transform 0.1s;
}

.hero-selector-cta:hover {
    transform: scale(1.02);
}

.hero-trust-badges {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Pricing Header Refactor */
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #000;
}

.section-subtitle {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.platform-note {
    font-size: 0.9rem;
    color: #888;
    display: block;
    font-style: italic;
}

/* Pricing Cards Refactor */
/* Hero Visual Styles (Refactored) */
.hero-visual {
    position: relative;
    /* flex: 1 is handled by grid layout in parent */
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background: #f0f0f0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-visual-stack {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    max-width: 380px;
    /* Portrait width */
}

.hero-paper-back {
    position: absolute;
    top: -15px;
    right: 10px;
    /* Adjusted for narrower width */
    width: 95%;
    height: 100%;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    transform: rotate(3deg);
    z-index: 0;
    opacity: 0.5;
}

.hero-paper-front {
    background: #fff;
    border: 2px solid #000;
    border-radius: 2px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    aspect-ratio: 8.5/11;
    /* Standard paper portrait ratio */
    display: flex;
    flex-direction: column;
}

.paper-header {
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.paper-meta {
    font-family: monospace;
    font-size: 0.6rem;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.paper-title {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.paper-content {
    margin-bottom: 2rem;
}

.paper-bar-group {
    margin-bottom: 1.5rem;
}

.paper-bar {
    height: 6px;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
}

.paper-bar-fill {
    height: 100%;
    background: #000;
}

.paper-lines {
    opacity: 0.2;
    font-family: monospace;
    font-size: 0.75rem;
    color: #000;
    line-height: 1.8;
}

.paper-stamp-container {
    margin-top: 1rem;
    text-align: right;
}

.paper-stamp {
    display: inline-block;
    border: 2px solid #000;
    color: #000;
    font-weight: 900;
    font-family: sans-serif;
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
    transform: rotate(-5deg);
    text-transform: uppercase;
    opacity: 0.3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    align-items: stretch;
}

.pricing-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    /* Ensure consistent radius */
    overflow: hidden;
    /* Keep content inside radius */
}

/* Card Hover State: Lift & Black Border */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: #000000;
    z-index: 2;
}

.card-cta {
    display: block;
    width: 100%;
    padding: 14px;
    /* Slightly larger touch target */
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
    margin-top: auto;
    /* Push to bottom */
}

/* Button Hover State: Turn Black */
.pricing-card:hover .card-cta {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button Hover State: Turn Black (Specific link override) */
.pricing-card:hover a.card-cta {
    color: #ffffff;
}

/* Enterprise Button Specific Logic */
.card-cta-enterprise {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    transition: all 0.2s;
}

/* Invert Enterprise button on hover */
.pricing-card:hover .card-cta-enterprise {
    background: #ffffff;
    color: #000000;
}

.most-popular-badge {
    background: #000;
    color: #fff;
}

/* Custom Solutions Banner */
.custom-solutions-banner {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.custom-solutions-banner:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #000;
    letter-spacing: -0.02em;
}

.banner-text {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.banner-cta {
    display: inline-block;
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.05rem;
}

.banner-cta:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Intelligence Suite Pricing Redesign */
.pricing-suite-container {
    background: #000;
    /* Dark mode for contrast */
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background for the suite */
.pricing-suite-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.pricing-header-pro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
    position: relative;
    z-index: 2;
}

.section-title-pro {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-pro {
    color: #aaa;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.pricing-card-pro {
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #161616;
}

/* Highlight the "Channel Audit" card */
.pricing-card-pro.highlight {
    border: 1px solid #fff;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.pricing-card-pro.highlight:hover {
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
}

.pro-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-icon-pro {
    width: 56px;
    height: 56px;
    background: #222;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    border: 1px solid #333;
}

.pricing-card-pro:hover .card-icon-pro {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.card-title-pro {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-hook-pro {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
    min-height: 44px;
    /* Align heights */
}

.feature-list-pro {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.feature-item-pro {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

.feature-icon-pro {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #fff;
    /* Checkmark color */
    flex-shrink: 0;
}

.card-cta-pro {
    display: block;
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
    font-size: 1.05rem;
}

.card-cta-pro:hover {
    background: #ccc;
    transform: scale(1.02);
}

.card-cta-pro.secondary {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
}

.card-cta-pro.secondary:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

/* Custom Solutions Banner - Dark Mode Version */
.custom-solutions-banner-pro {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-title-pro {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.banner-text-pro {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-cta-pro {
    display: inline-block;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.banner-cta-pro:hover {
    background: #fff;
    color: #000;
}