:root {
    --navy-deep: #0b1221;
    --navy-mid: #101827;
    --navy-light: #1a2436;
    --slate: #293548;
    --teal: #10b981;
    --teal-soft: #059669;
    --teal-glow: rgba(16, 185, 129, 0.15);
    --orange: #f97316;
    --orange-glow: rgba(249, 115, 22, 0.15);
    --gold: #E9C46A;
    --gold-dim: #C9A227;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-deep);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(11, 18, 33, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(11, 18, 33, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-x {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.btn-primary {
    color: #ffffff;
}

.nav-links a.btn-primary:hover {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--teal);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--teal-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--teal-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--navy-light);
    border-color: var(--teal);
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 6rem;
    text-align: center;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, var(--teal-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--orange-glow) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 0 80px rgba(233, 196, 106, 0.4), 0 0 150px rgba(233, 196, 106, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Live Demo Section */
.live-demo {
    max-width: 700px;
    margin: 0 auto;
    background: var(--navy-mid);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dot:nth-child(1) {
    background: #ff5f57;
}

.demo-dot:nth-child(2) {
    background: #ffbd2e;
}

.demo-dot:nth-child(3) {
    background: #28ca42;
}

.demo-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
}

.demo-input {
    width: 100%;
    background: var(--navy-deep);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: none;
    min-height: 80px;
    margin-bottom: 1rem;
    transition: border-color 0.3s, min-height 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: var(--teal);
    min-height: 240px;
}

.demo-input::placeholder {
    color: var(--text-muted);
}

.demo-button {
    width: 100%;
    padding: 0.85rem;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-button:hover {
    background: var(--teal-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--teal-glow);
}

.demo-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* SignalBoard Results */
.signal-results {
    margin-top: 1.5rem;
    display: none;
}

.signal-results.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.signal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
}

.signal-score-main {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
}

.signal-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 100px 1fr 45px;
    align-items: center;
    gap: 1rem;
}

.metric-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.metric-bar {
    height: 8px;
    background: var(--navy-deep);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-out;
}

.metric-fill.high {
    background: linear-gradient(90deg, var(--teal), #00f5cc);
}

.metric-fill.medium {
    background: linear-gradient(90deg, var(--gold), #ffe066);
}

.metric-fill.low {
    background: linear-gradient(90deg, var(--orange), #ff8866);
}

.metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.metric-value.visible {
    opacity: 1;
}

.metric-value.high {
    color: var(--teal);
}

.metric-value.medium {
    color: var(--gold);
}

.metric-value.low {
    color: var(--orange);
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-alt {
    background: var(--navy-mid);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    opacity: 0.8;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0.75rem auto 0;
}

/* Animated Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Three Ways to Win - Interactive Filter */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--navy-deep);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pillar-card.safety {
    border-top: 2px solid var(--gold);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.pillar-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pillar-product {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.pillar-card:hover .pillar-product {
    color: var(--text-secondary);
}

.pillar-product:last-child {
    border-bottom: none;
}

.pillar-product-icon {
    font-size: 0.9rem;
}

/* Products Subsections */
.products-subsection {
    margin-bottom: 4rem;
}

.products-subsection:last-child {
    margin-bottom: 0;
}

.products-subsection .section-header {
    margin-bottom: 2rem;
}

.products-subsection.coming-soon .section-label {
    color: var(--orange);
}

.products-subsection.coming-soon .section-title::after {
    background: var(--orange);
}

.products-subsection.coming-soon .product-card {
    opacity: 0.8;
}

.products-subsection.coming-soon .product-card:hover {
    opacity: 1;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.product-card {
    background: var(--navy-light);
    border-radius: 10px;
    padding: 1.75rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--teal-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-cta {
    color: var(--teal);
}

.product-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-mid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-badge {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-badge.popular {
    background: var(--teal);
    color: var(--navy-deep);
}

.product-badge.coming {
    background: var(--slate);
    color: var(--text-muted);
}

.product-badge.enterprise {
    background: var(--gold);
    color: var(--navy-deep);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-cta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.proof-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.7;
}

.powered-by {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Before/After Comparison Cards */
.ba-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-card {
    background: var(--navy-deep);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.ba-card.before {
    border-color: var(--orange);
    border-top: 3px solid var(--orange);
}

.ba-card.after {
    border-color: var(--teal);
    border-top: 3px solid var(--teal);
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ba-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.ba-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ba-card.before .ba-card-label {
    color: var(--orange);
}

.ba-card.after .ba-card-label {
    color: var(--teal);
}

.ba-card-score {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.ba-card.before .ba-card-score {
    color: var(--orange);
}

.ba-card.after .ba-card-score {
    color: var(--teal);
}

.ba-card-content {
    margin-bottom: 1.5rem;
}

.ba-listing-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.ba-card.after .ba-listing-text {
    color: var(--text-primary);
}

.ba-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ba-metric {
    display: grid;
    grid-template-columns: 70px 1fr 35px;
    align-items: center;
    gap: 0.75rem;
}

.ba-metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ba-metric-bar {
    height: 6px;
    background: var(--navy-light);
    border-radius: 3px;
    overflow: hidden;
}

.ba-metric-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 3px;
    transition: width 1s ease;
}

.ba-metric-fill.high {
    background: var(--teal);
}

.ba-metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-align: right;
}

.ba-metric-value.high {
    color: var(--teal);
}

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
    padding: 0 1rem;
}

.ba-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* How It Works - Animated Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--orange));
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step:hover .step-number {
    background: var(--teal);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--teal-glow);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Enterprise Section */
.enterprise-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enterprise-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enterprise-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.enterprise-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.enterprise-check {
    color: var(--gold);
    font-weight: 600;
}

.enterprise-visual {
    background: var(--navy-light);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.enterprise-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    opacity: 0.6;
}

.outlook-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.outlook-icon {
    font-size: 1.25rem;
}

.outlook-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.outlook-badge {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: var(--teal);
    color: white;
    border-radius: 100px;
    font-weight: 600;
}

.outlook-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.outlook-tool {
    padding: 0.75rem;
    background: var(--navy-mid);
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.outlook-tool:hover {
    background: var(--navy-deep);
    transform: translateX(5px);
}

/* Pricing Anchor */
.pricing-anchor {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--navy-deep);
}

.pricing-anchor h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-line {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-amount {
    color: var(--teal);
    font-weight: 600;
}

.roi-line {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Demo Request Section */
.demo-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, var(--teal-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, var(--orange-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.demo-content {
    padding-top: 2rem;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-content > .btn {
    margin-bottom: 2.5rem;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-benefit svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* Demo Form Wrapper */
.demo-form-wrapper {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.demo-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.demo-form-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

/* Demo Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.demo-form .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
}

.demo-form .form-group label .required {
    color: var(--orange);
}

.demo-form .form-group input,
.demo-form .form-group select {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #1e293b;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s;
}

.demo-form .form-group input::placeholder {
    color: #94a3b8;
}

.demo-form .form-group input:focus,
.demo-form .form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.demo-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.demo-form .form-group select option {
    background: #ffffff;
    color: #1e293b;
}

.demo-form .error-message {
    font-size: 0.75rem;
    color: #ef4444;
    min-height: 0.875rem;
}

/* Demo Submit Button */
.demo-form .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    justify-content: center;
    width: 100%;
}

.demo-form .btn-submit .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.demo-form .btn-submit.loading .btn-text {
    display: none;
}

.demo-form .btn-submit.loading .btn-loading {
    display: flex;
}

.demo-form .spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Demo Success State */
.demo-form-wrapper .success-state {
    text-align: center;
    padding: 2rem 1rem;
}

.demo-form-wrapper .success-icon {
    margin-bottom: 1.5rem;
}

.demo-form-wrapper .success-icon svg {
    color: var(--teal);
}

.demo-form-wrapper .success-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.demo-form-wrapper .success-state p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Legacy CTA Section (keeping for potential reuse) */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, var(--teal-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, var(--orange-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: var(--navy-deep);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-column a.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-item:hover svg {
    opacity: 1;
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.7;
}

.footer-address-text {
    display: flex;
    flex-direction: column;
}

.footer-address-text span {
    line-height: 1.5;
}

.footer-column span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .pillars-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stats-row {
        gap: 2rem;
    }

    .ba-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ba-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .demo-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .demo-content {
        padding-top: 0;
        text-align: center;
    }

    .demo-benefits {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .demo-section {
        padding: 4rem 1.5rem;
    }

    .demo-content h2 {
        font-size: 2rem;
    }

    .demo-form-wrapper {
        padding: 1.75rem;
    }

    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
}

.metric-row {
    grid-template-columns: 80px 1fr 40px;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES - Privacy, Terms, Cookies
   ═══════════════════════════════════════════════════════════════ */

.legal-page {
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.legal-content h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.legal-content li:last-child {
    margin-bottom: 0;
}

.legal-content ul ul,
.legal-content ul ol,
.legal-content ol ul,
.legal-content ol ol {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--surface);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   About Page Styles
   ═══════════════════════════════════════════════════════════════ */

.about-hero {
    min-height: 50vh;
    padding-top: 8rem;
}

.about-hero .hero-container {
    text-align: center;
}

.about-hero .section-label {
    margin-bottom: 1rem;
}

/* Founder Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

.founder-card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.founder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.8;
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.founder-title {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.founder-credentials span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mission Section */
.about-mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-mission p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Products Grid */
.about-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.about-product {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-product:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

.about-product-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-product span:last-child {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Closing Quote */
.about-closing {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-closing blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    position: relative;
    padding: 2rem 3rem;
}

.about-closing blockquote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-size: 5rem;
    color: var(--teal);
    opacity: 0.3;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-story-visual {
        order: -1;
    }
    
    .about-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-closing blockquote {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
    
    .about-closing blockquote::before {
        font-size: 3rem;
        top: 0;
    }
}

@media (max-width: 480px) {
    .about-products-grid {
        grid-template-columns: 1fr;
    }
}
