/* PAIDD Brand Styles */

:root {
    --primary-navy: #00304d;
    --primary-green: #c1ef4c;
    --light-green: #ddfebe;
    --lightest-green: #ebfff5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    border-bottom: none;
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-gray);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo-image {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

/* Old logo styles removed - using actual logo image */

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-navy);
    border-bottom: 2px solid var(--primary-green);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 0.5rem;
    z-index: 1000;
    top: calc(100% + 5px);
    left: 0;
    border: 1px solid var(--border-gray);
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--text-gray) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    white-space: nowrap;
    border-bottom: none !important;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: var(--lightest-green);
    color: var(--primary-navy) !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Content (alternative class name used on some pages) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 0.5rem;
    z-index: 1000;
    top: calc(100% + 5px);
    left: 0;
    border: 1px solid var(--border-gray);
    padding: 8px 0;
}

.dropdown-content a {
    color: var(--text-gray) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    white-space: nowrap;
    border-bottom: none !important;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: var(--lightest-green);
    color: var(--primary-navy) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    opacity: 0.6;
    margin-left: 4px;
}

.cta-button {
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 48, 77, 0.3);
    display: block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.4);
    background: #001a2e;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: 'Lato', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 239, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
}

.hero h1 .word-container {
    background: var(--primary-green);
    padding: 0 20px 14px 20px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    margin: 0;
    line-height: normal;
}

.hero h1 .word-container::after {
    content: 'delays';
    visibility: hidden;
    height: 0;
    display: block;
    overflow: hidden;
}

/* Desktop default: show desktop text, hide mobile text */
.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

.rotating-word {
    display: inline-block;
    text-align: center;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    vertical-align: middle;
    position: relative;
    top: 0;
    overflow: hidden;
    line-height: 1;
}

.highlight-discount {
    background: var(--primary-green);
    padding: 4px 16px;
    border-radius: 8px;
    display: inline-block;
    color: var(--primary-navy);
    font-weight: 700;
}

.underline-green {
    position: relative;
    display: inline-block;
}

.underline-green::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero p strong {
    color: var(--text-dark);
}

.hero p .highlight {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.hero p .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background: var(--primary-green);
    z-index: -1;
    border-radius: 2px;
    transform: rotate(-0.5deg);
}

.hero-cta {
    font-family: 'Lato', sans-serif;
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 48, 77, 0.4);
    background: #001a2e;
}

/* Workflow Section */
.workflow {
    padding: 120px 0;
    background: var(--white);
}

.workflow-header {
    text-align: center;
    margin-bottom: 100px;
}

.workflow h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

.workflow-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.workflow-container {
    max-width: 1100px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-content {
    padding: 0 20px;
}

.workflow-badge {
    display: inline-block;
    background: transparent;
    color: var(--text-gray);
    padding: 0;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.workflow-badge:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: var(--primary-navy);
    text-decoration: underline;
}

.workflow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--primary-navy);
    border-radius: 50%;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
}

.workflow-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.workflow-content p {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.workflow-visual {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 48, 77, 0.1);
}

.workflow-step:nth-child(1) .workflow-visual {
    background: var(--lightest-green);
}

.workflow-step:nth-child(2) .workflow-visual {
    background: rgba(0, 48, 77, 0.05);
}

.workflow-step:nth-child(3) .workflow-visual {
    background: rgba(193, 239, 76, 0.15);
}

.workflow-step:nth-child(4) .workflow-visual {
    background: var(--light-green);
}

/* Demo Cards */
.demo-card {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 48, 77, 0.15);
    position: relative;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.demo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    flex-shrink: 0;
}

.demo-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-navy);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.field-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
}

.field-value {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
}

.extraction-badge {
    background: var(--primary-accent);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.status-badge {
    background: #c1ef4c;
    color: #00304d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.field-row.completed {
    background: #f0fdf4;
    border-color: #c1ef4c;
}

.field-row.active {
    background: #eff6ff;
    border: 2px solid #00304d;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: var(--light-green);
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.results-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.result-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.result-icon {
    background: var(--primary-navy);
    color: var(--primary-green);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.3);
}

.result-card h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.result-metric {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.5rem;
}

.result-card p {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 400;
}

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

.final-cta h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
}

.final-cta-button {
    font-family: 'Lato', sans-serif;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(193, 239, 76, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(193, 239, 76, 0.4);
    background: #b3e03e;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.footer-brand p {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
}

.footer-section h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 400;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 24px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 89px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: calc(100vh - 89px);
    overflow-y: auto;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--border-gray);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.mobile-menu a:hover {
    background: var(--lightest-green);
    color: var(--primary-navy);
}

/* Mobile Navigation Links */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        display: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Section Header */
.section-header {
    padding: 80px 0 60px;
    background: var(--white);
    text-align: center;
}

.section-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.section-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 60px 0 100px;
    background: var(--white);
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: #ddfebe;
}

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

.integrations-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-navy);
    line-height: 1.1;
}

.integrations-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.explore-button {
    font-family: 'Lato', sans-serif;
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.3);
}

.integrations-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.integration-logo {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    color: var(--primary-navy);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.integration-logo.large {
    grid-column: span 2;
    font-size: 18px;
    height: 100px;
}

.integration-logo:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.1);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--lightest-green);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 48, 77, 0.06);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 48, 77, 0.1);
}

.faq-question {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    background: var(--white);
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-toggle {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-navy);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9fafb;
    padding: 0 2rem;
    font-weight: 400;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1.75rem 2rem;
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 239, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
}

.blog-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* Featured Post */
.featured-section {
    padding: 80px 0;
    background: var(--white);
}

.featured-label {
    display: inline-block;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--lightest-green);
}

.featured-image {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-placeholder {
    font-size: 4rem;
    color: var(--primary-navy);
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.post-category {
    background: var(--lightest-green);
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.post-date {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
}

.featured-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

.featured-excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.featured-link {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.featured-link:hover {
    color: var(--primary-green);
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 200px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-navy);
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-category {
    background: var(--lightest-green);
    color: var(--primary-navy);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
}

.blog-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

.blog-excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.blog-read-more {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-green);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2332 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary-navy);
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-button {
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.featured-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--lightest-green);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gray);
    padding-left: 80px;
}

.featured-placeholder {
    font-size: 4rem;
    color: var(--primary-navy);
    opacity: 0.3;
}

.featured-content {
    padding: 20px 0;
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.post-category {
    font-family: 'Lato', sans-serif;
    background: var(--light-green);
    color: var(--primary-navy);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.post-date {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 14px;
}

.featured-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.featured-content h2 a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: #001a2e;
}

.featured-excerpt {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    font-family: 'Lato', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 48, 77, 0.12);
    border-color: var(--primary-green);
}

.blog-card-image {
    aspect-ratio: 16/9;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    font-size: 3rem;
    color: var(--primary-navy);
    opacity: 0.3;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-navy);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-gray);
}

.read-time {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: var(--primary-navy);
    color: var(--white);
}

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

.newsletter-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 10px;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}

.newsletter-button {
    font-family: 'Lato', sans-serif;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 16px 32px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #b3e03e;
    transform: translateY(-2px);
}

/* ========================================
   BLOG POST STYLES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.breadcrumb-list {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.breadcrumb-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-navy);
}

.breadcrumb-separator {
    color: var(--text-gray);
}

.breadcrumb-current {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Article Header */
.article-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
}

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

.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.article-category {
    font-family: 'Lato', sans-serif;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 14px;
}

.article-header h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
}

.author-title {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    font-size: 13px;
}

/* Article Content */
.article-content-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.article-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.article-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.article-content ul,
.article-content ol {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-left: 32px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 28px;
    margin: 40px 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
}

.article-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-box {
    background: var(--lightest-green);
    border-left: 4px solid var(--primary-green);
    padding: 28px 32px;
    border-radius: 12px;
    margin: 40px 0;
}

.highlight-box h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.highlight-box p {
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.stat-box {
    background: var(--lightest-green);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-gray);
}

.stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Article Footer */
.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-gray);
}

.share-section {
    text-align: center;
}

.share-label {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-button {
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--lightest-green);
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    font-family: 'Lato', sans-serif;
    min-width: 80px;
}

.share-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.share-button.share-linkedin {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-button.share-linkedin:hover {
    background: #005885;
}

.share-button.share-twitter {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-button.share-twitter:hover {
    background: #1a91da;
}

.share-button.share-email {
    background: #ea4335;
    color: white;
    border-color: #ea4335;
}

.share-button.share-email:hover {
    background: #d33b2c;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .featured-post {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-content h2 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 2.25rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ======================
   DEMO BOOKING PAGE
   ====================== */

/* Demo Section */
.demo-section {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 239, 76, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.demo-left {
    padding-right: 2rem;
}

.demo-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
}

.demo-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-navy);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.demo-benefits {
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.benefit-icon {
    width: 8px;
    height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

.benefit-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

.benefit-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Testimonials Carousel */
.testimonials {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    min-height: 240px;
}

.testimonials:hover {
    border-color: var(--primary-green);
}

.testimonials-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 300%;
}

.testimonial {
    width: 33.333%;
    flex-shrink: 0;
}

.testimonial-quote {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 700;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-navy);
    transform: scale(1.2);
}

.dot:hover {
    background: #64748b;
}

/* Demo Form */
.demo-right {
    padding-left: 2rem;
}

.demo-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.08);
    transition: all 0.3s;
}

.demo-form:hover {
    box-shadow: 0 8px 24px rgba(0, 48, 77, 0.12);
}

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

.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-navy);
    font-size: 14px;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(0, 48, 77, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.additional-fields {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    margin-bottom: -12px;
}

.additional-fields.show {
    opacity: 1;
    max-height: 1000px;
}

.email-message {
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

.email-message.show {
    opacity: 1;
    max-height: 100px;
}

.email-message.warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    color: #92400e;
}

.email-message.success {
    background: var(--light-green);
    border: 2px solid var(--primary-green);
    color: var(--primary-navy);
}

.checkbox-group {
    margin: 32px 0;
}

.checkbox-group h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 400;
}

.demo-submit {
    width: 100%;
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.3);
    font-family: 'Lato', sans-serif;
}

.demo-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 48, 77, 0.4);
    background: #001a2e;
}

.demo-submit:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.privacy-text {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.privacy-text a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Responsive - Demo Booking */
@media (max-width: 1200px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .demo-left,
    .demo-right {
        padding: 0;
    }

    .demo-page-title {
        font-size: 2.5rem;
    }

    .demo-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .demo-page-title {
        font-size: 2rem;
    }

    .demo-title {
        font-size: 1.1rem;
    }

    .demo-section {
        padding: 60px 0 80px;
    }

    .demo-form {
        padding: 24px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 3.2rem;
        text-align: center;
        line-height: 1.05;
    }

    /* On mobile: hide desktop text, show mobile text */
    .mobile-text {
        display: inline;
    }

    .desktop-text {
        display: none;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .workflow {
        padding: 80px 0;
    }

    .workflow h2 {
        font-size: 2rem;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    .workflow-content {
        padding: 0;
        order: 1;
    }

    .workflow-visual {
        order: 2;
        padding: 40px 20px;
        min-height: 300px;
    }

    .workflow-content h3 {
        font-size: 1.75rem;
    }

    .workflow-content p {
        font-size: 16px;
    }

    .results, .final-cta {
        padding: 80px 0;
    }

    .results h2, .final-cta h2 {
        font-size: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .result-card {
        padding: 32px 24px;
    }

    .result-card h4 {
        font-size: 1.25rem;
    }

    .result-metric {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .demo-card {
        max-width: 280px;
        padding: 20px;
    }

    .section-header {
        padding: 60px 0 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .features {
        padding: 40px 0 80px;
    }

    .integrations {
        padding: 80px 0;
    }

    .integrations-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .integrations-content h2 {
        font-size: 2rem;
    }

    .integrations-subtitle {
        font-size: 1rem;
    }

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

    .integration-logo {
        height: 60px;
        font-size: 12px;
        padding: 16px;
    }

    .integration-logo.large {
        grid-column: span 2;
        height: 70px;
        font-size: 16px;
    }

    .faq {
        padding: 80px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span:first-child {
        font-size: 1.1rem;
        padding-right: 20px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
}/* ============================================
   PRICING PAGE STYLES
   Add these to your styles.css file
   ============================================ */

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.pricing-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 400;
}

/* Pricing Calculator */
.pricing-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.calculator-box {
    padding: 32px;
    margin-bottom: 48px;
}

.calculator-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-navy);
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-navy);
    cursor: pointer;
    border: none;
}

.volume-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    min-width: 100px;
    text-align: right;
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* Enterprise Notice */
.enterprise-notice {
    background: var(--primary-green);
    border: 2px solid var(--primary-navy);
    border-radius: 16px;
    padding: 32px;
    margin: 0 auto 48px;
    max-width: 700px;
    text-align: center;
}

.enterprise-notice h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--primary-navy);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.enterprise-notice p {
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.btn-enterprise {
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 48, 77, 0.3);
}

.btn-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.4);
    background: #001a2e;
}

/* Price Display Card */
.price-display-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.price-details {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

/* ROI Box */
.roi-box {
    background: var(--light-green);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

.roi-item {
    /* Individual ROI item styling */
}

.roi-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.roi-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.btn-primary-full {
    width: 100%;
    background: var(--primary-navy);
    color: var(--primary-green);
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 48, 77, 0.3);
}

.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 48, 77, 0.4);
    background: #001a2e;
}

/* What's Included */
.whats-included {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 40px 32px;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.whats-included h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 32px;
    text-align: center;
}

.features-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    padding: 12px 0;
    color: #374151;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
}

.feature-check {
    color: var(--primary-navy);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.annual-discount-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 32px;
    font-style: italic;
    text-align: center;
}

/* FAQ Section Updates */
.faq {
    padding: 80px 0;
    background: var(--lightest-green);
}

.faq h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 48, 77, 0.06);
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 48, 77, 0.1);
}

.faq-question {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s;
    margin: 0;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-navy);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9fafb;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 1.5rem 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid-two-col {
        grid-template-columns: 1fr;
    }

    .pricing-hero {
        padding: 60px 0 40px;
    }

    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .pricing-hero p {
        font-size: 1.1rem;
    }

    .calculator-box {
        padding: 24px 20px;
    }

    .slider-container {
        flex-wrap: wrap;
    }

    .volume-slider {
        min-width: 100%;
    }

    .price-display-card {
        padding: 32px 24px;
    }

    .whats-included {
        padding: 32px 24px;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
}
/* ROI CTA Box */
.roi-cta-box {
    background: var(--lightest-green);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    text-align: center;
}

.roi-cta-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.btn-roi-calculator {
    background: var(--white);
    color: var(--primary-navy);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-navy);
}

.btn-roi-calculator:hover {
    background: var(--primary-navy);
    color: var(--primary-green);
    transform: translateY(-1px);
}

/* Footer Logo Fix */
.footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

/* ============================================
   PERSONA LANDING PAGE STYLES
   ============================================ */

/* Stats Bar */
.stats-bar {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 400;
}

/* Pain Points Section */
.pain-points {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pain-card {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 48, 77, 0.1);
}

.pain-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--light-green);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.how-it-works-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 48, 77, 0.12);
}

.step-number {
    background: var(--primary-navy);
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

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

/* Why PAIDD Section */
.why-paidd {
    padding: 80px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    gap: 24px;
}

.feature-icon {
    background: var(--primary-navy);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Breadcrumb for persona pages */
.hero .breadcrumb {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    text-align: center;
    background: transparent;
    padding: 0;
    border: none;
}

.breadcrumb a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Persona Pages */
@media (max-width: 768px) {
    .section-intro h2,
    .how-it-works h2,
    .why-paidd h2 {
        line-height: 1.2;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

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

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

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

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}