* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --green-500: #22c55e;
    --green-600: #16a34a;

    /* Spacing */
    --header-height: 72px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-nav: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-dropdown: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-button: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 8px 20px rgba(249, 115, 22, 0.3);
    --shadow-purple: 0 20px 60px -15px rgba(147, 51, 234, 0.2);
    --shadow-card: 0 10px 40px -10px rgba(249, 115, 22, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Animations - visible by default, animation is enhancement */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Only apply initial hidden state if JS will handle it */
.js-enabled .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
nav:not(.wp-block-query-pagination):not(.blog-pagination-bottom):not(.blog-pagination-nav):not(.resource-pagination):not(.blog-category-filters) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 max(2rem, calc((100% - 1200px) / 2));
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav:not(.wp-block-query-pagination):not(.blog-pagination-bottom):not(.resource-pagination):not(.blog-category-filters).scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 1.8rem;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links > a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links > a:hover {
    color: var(--purple-700);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-dropdown-trigger:hover {
    color: var(--purple-700);
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10000;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--purple-50);
    color: var(--purple-700);
}

/* Mega Menu — CoreStack-style full-width panels */
.mega-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 10000;
    background: white;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    border-top: 1px solid var(--gray-100);
}

.nav-dropdown:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* keep panel open while mouse moves from trigger to panel */
.nav-dropdown .mega-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-panel-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    padding: 2rem 2.5rem;
}

/* Columns */
.mega-col {
    padding: 0;
}

.mega-col-main {
    flex: 1;
    padding-right: 2.5rem;
    border-right: 1px solid var(--gray-100);
}

.mega-col-side {
    width: 300px;
    min-width: 280px;
    padding-left: 2.5rem;
    display: flex;
    align-items: stretch;
}
/* List items (Capabilities, Company, Resources) */
.mega-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
}

.mega-list-item:hover {
    background: var(--gray-50);
}

.mega-list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-list-icon-sm {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
}

.mega-list-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mega-list-title {
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--black);
    line-height: 1.3;
}

.mega-list-item:hover .mega-list-title {
    color: var(--purple-700);
}

.mega-list-desc {
    font-size: 0.76rem;
    color: var(--gray-500);
    line-height: 1.4;
    font-weight: 400;
}

/* Compact list variant (Resources) */
.mega-list-compact .mega-list-item {
    padding: 0.5rem 0.65rem;
    gap: 0.7rem;
}

.mega-list-compact .mega-list-desc {
    font-size: 0.73rem;
}

/* Two-column layout (Resources) */
.mega-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Highlight / sidebar card */
.mega-highlight {
    background: linear-gradient(135deg, var(--purple-50) 0%, #f0e6ff 100%);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

a.mega-highlight,
a.mega-highlight *,
a.mega-highlight:hover,
a.mega-highlight:hover * {
    text-decoration: none;
}

a.mega-highlight:hover {
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.12);
    transform: translateY(-2px);
}

.mega-highlight-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-600);
}

.mega-highlight-text {
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.mega-highlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--purple-700);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: gap 0.15s ease;
}

.mega-highlight-cta:hover {
    color: var(--purple-800);
    gap: 0.55rem;
}

/* Stats block inside highlight */
.mega-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.25rem 0;
}

.mega-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mega-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple-700);
    line-height: 1.1;
}

.mega-stat-label {
    font-size: 0.72rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hide mega panels on mobile */
@media (max-width: 1024px) {
    .mega-panel {
        display: none;
    }
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--purple-600);
}

.mobile-nav-section {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.mobile-nav-sublink {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-sublink:hover {
    color: var(--purple-600);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Nav Accordion */
.mobile-nav-section {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    user-select: none;
}

.mobile-nav-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.mobile-nav-header:hover .mobile-nav-label {
    color: var(--purple-600);
}

.mobile-nav-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: var(--gray-500);
}

.mobile-nav-section.active .mobile-nav-chevron {
    transform: rotate(180deg);
}

.mobile-nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-section.active .mobile-nav-dropdown {
    max-height: 300px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
}

.btn-primary {
    background: var(--gray-800);
    color: white;
}

.btn-primary:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-orange {
    background: var(--orange-500);
    color: white;
}

.btn-orange:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--purple-600);
    margin-bottom: 2rem;
}
.rotating-words span.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tagline */
.tagline {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
/* CTA Micro-copy */
.cta-micro {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0.5rem 0;
    font-weight: 500;
    font-style: italic;
}

.path-card.services .cta-micro {
    color: rgba(255, 255, 255, 0.8);
}

/* SeekOut Experience Section */
.experience-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.experience-section .section-tag {
    color: var(--orange-600);
    background: #fff7ed;
}

.experience-section .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: var(--orange-400);
    box-shadow: 0 10px 40px -10px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.experience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fed7aa 0%, #fff7ed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.experience-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--orange-600);
    stroke-width: 2;
}

.experience-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.experience-card .experience-timing {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Bifurcation Section */
.bifurcation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.path-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
    text-align: center;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Tools Card */
.path-card.tools {
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.path-card.tools:hover {
    border-color: var(--purple-400);
    box-shadow: 0 20px 60px -15px rgba(147, 51, 234, 0.2);
    transform: translateY(-4px);
}

.path-card.tools::before {
    background: linear-gradient(135deg, var(--purple-50) 0%, transparent 100%);
}

.path-card.tools:hover::before {
    opacity: 1;
}

/* Services Card */
.path-card.services {
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    border: 2px solid transparent;
    color: white;
}

.path-card.services:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px rgba(139, 92, 246, 0.4);
}

.path-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tools .path-label { color: var(--purple-600); }
.services .path-label { color: var(--orange-400); }

.path-label svg {
    width: 16px;
    height: 16px;
}

.path-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.path-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.tools .path-desc { color: var(--gray-600); }
.services .path-desc { color: rgba(255,255,255,0.7); }
.tools .persona-tag {
    background: var(--purple-100);
    color: var(--purple-700);
}

.services .persona-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

/* CTA Buttons */
.path-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* Tools CTAs */
.cta-btn.primary-tool {
    background: var(--gray-800);
    color: white;
}

.cta-btn.primary-tool:hover {
    background: var(--gray-900);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary-tool {
    background: var(--gray-200);
    color: var(--gray-700);
}

.cta-btn.secondary-tool:hover {
    background: var(--gray-300);
}

/* Services CTAs */
.cta-btn.service {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-btn.service:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}
/* Path Audience Text */
.path-audience {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tools .path-audience { color: var(--purple-600); }
.services .path-audience { color: var(--orange-400); }
/* Service Primary CTA */
.cta-btn.service-primary {
    background: var(--orange-500);
    color: white;
    border: none;
}

.cta-btn.service-primary:hover {
    background: var(--orange-600);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Service Secondary CTA */
.cta-btn.service-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-btn.service-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}
.cta-link.tools {
    color: var(--gray-600);
}

.cta-link.tools:hover {
    color: var(--purple-600);
}

.cta-link.services {
    color: rgba(255,255,255,0.7);
}

.cta-link.services:hover {
    color: white;
}
/* Explore Link */
.explore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding-top: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.explore-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.explore-link.tools {
    color: var(--gray-500);
}

.explore-link.tools:hover {
    color: var(--purple-600);
}

.explore-link.tools:hover svg {
    transform: translateY(3px);
}

.explore-link.services {
    color: rgba(255,255,255,0.6);
}

.explore-link.services:hover {
    color: var(--orange-400);
}

.explore-link.services:hover svg {
    transform: translateY(3px);
}

/* AI-Forward Hiring Section */
.ai-forward-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, #fff7ed 50%, var(--white) 100%);
}

.ai-forward-section .section-tag {
    color: var(--orange-600);
    background: #fff7ed;
}

.ai-forward-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ai-forward-section .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.ai-forward-section .section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Ascending staircase layout */
.ai-stages {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 2rem;
    min-height: 400px;
}

.ai-stage-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    position: absolute;
    width: 260px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Stage 1: bottom-left */
.ai-stage-card:nth-child(1) {
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #fffbf5 0%, var(--white) 100%);
}

/* Stage 2: center, on the diagonal between Stage 1 and 3 */
.ai-stage-card:nth-child(2) {
    top: 28%;
    left: calc(50% - 130px);
}

/* Stage 3: top-right, highlighted */
.ai-stage-card:nth-child(3) {
    top: 0;
    right: 0;
}

.ai-stage-card:hover {
    box-shadow: 0 10px 40px -10px rgba(249, 115, 22, 0.15);
}

.ai-stage-card.highlighted {
    border-color: var(--orange-500);
    border-width: 2.5px;
    background: var(--white);
    box-shadow: 0 8px 30px -8px rgba(249, 115, 22, 0.15);
}

.ai-stage-card.highlighted:hover {
    box-shadow: 0 12px 40px -8px rgba(249, 115, 22, 0.25);
}

/* Dashed connecting path via SVG */
.ai-stages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 480'%3E%3Cpath d='M140 390 Q320 300 500 230 Q680 160 860 70' fill='none' stroke='%23f9a825' stroke-width='3' stroke-dasharray='12 8' opacity='0.45'/%3E%3C/svg%3E") no-repeat center / contain;
    z-index: 0;
}

.ai-stage-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-600);
    margin-bottom: 0.5rem;
}

.ai-stage-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.ai-stage-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.ai-forward-bottom {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Role Specialization Section */
.role-specialization {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.role-specialization .section-tag {
    color: var(--orange-600);
    background: #fff7ed;
}

.role-specialization .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.role-specialization .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.role-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.role-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card:hover {
    border-color: var(--orange-400);
    box-shadow: 0 20px 60px -15px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.role-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fed7aa 0%, #fff7ed 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.role-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange-600);
    stroke-width: 2;
}

.role-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.role-card .role-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.role-card p.role-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .ai-stages {
        position: relative;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .ai-stages::before {
        display: none;
    }

    .ai-stage-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 340px;
    }

    .ai-forward-section .section-header h2,
    .role-specialization .section-header h2 {
        font-size: 2rem;
    }

    .role-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .role-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ai-forward-section .section-header h2,
    .role-specialization .section-header h2 {
        font-size: 1.75rem;
    }

    .ai-stage-card {
        padding: 2rem 1.5rem;
    }
}

/* Logo Bar - Scrolling */
.logo-bar {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.logo-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-bar p {
    font-size: 0.875rem;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 500;
    padding: 0 2rem;
}

.logo-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-scroll-track {
    display: flex;
    gap: 2rem;
    animation: scrollLogos 60s linear infinite;
    width: max-content;
    align-items: center;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.integration-box svg {
    height: 24px;
    width: auto;
    display: block;
}

.logo-text-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-text-item:hover {
    color: var(--gray-600);
}
.customer-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s;
}

.customer-logo:hover {
    opacity: 0.85;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-600);
    background: #fff7ed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works - Tools */
.how-tools {
    padding: 6rem 2rem;
    background: var(--white);
}

.tools-features {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-feature {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.tool-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--purple-200);
}

.tool-icon {
    width: 56px;
    height: 56px;
    background: var(--purple-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tool-icon svg {
    width: 28px;
    height: 28px;
    color: var(--purple-600);
}

.tool-feature h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.tool-feature p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* How It Works - Services */
.how-services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: white;
}

.how-services .section-tag {
    background: rgba(251, 146, 60, 0.2);
    color: var(--orange-400);
}

.how-services .section-header h2 {
    color: white;
}

.how-services .section-header p {
    color: rgba(255,255,255,0.7);
}

.service-tiers {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.service-tier {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-tier:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.tier-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tier-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 0.9rem;
    color: var(--orange-400);
    font-weight: 600;
}

.tier-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
}

.tier-features li svg {
    width: 18px;
    height: 18px;
    color: var(--gray-600);
    flex-shrink: 0;
    margin-top: 2px;
}
/* Spot Timeline */
.spot-timeline {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.spot-timeline .section-header h2 {
    font-size: 2rem;
}

.timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-200);
    border-radius: 2px;
    transform: translateY(-50%);
}

.timeline-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--purple-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--purple-600);
}

.timeline-step:hover .step-icon {
    background: var(--purple-600);
    transform: scale(1.1);
}

.timeline-step:hover .step-icon svg {
    color: white;
}

.step-day {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.step-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    max-width: 140px;
    margin: 0 auto;
}

/* Inline Timeline (within services section) */
.spot-timeline-inline {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.timeline-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.tiers-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.spot-timeline-inline .timeline::before {
    background: rgba(255, 255, 255, 0.2);
}

.spot-timeline-inline .step-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-400);
}

.spot-timeline-inline .step-icon svg {
    color: var(--orange-400);
}

.spot-timeline-inline .timeline-step:hover .step-icon {
    background: var(--orange-500);
}

.spot-timeline-inline .timeline-step:hover .step-icon svg {
    color: white;
}

.spot-timeline-inline .step-day {
    color: var(--orange-400);
}

.spot-timeline-inline .step-title {
    color: white;
}

.spot-timeline-inline .step-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: #fffbf7;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.testimonial-card.analyst-quote {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.testimonial-card.analyst-quote .testimonial-quote {
    font-size: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--orange-400);
}

.testimonial-quote {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--purple-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--purple-600);
}

.author-info h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.author-avatar.analyst {
    background: var(--purple-100);
    color: var(--purple-600);
}
.testimonial-quote {
    flex-grow: 1;
}

.testimonials-grid .testimonial-author {
    display: block;
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    font-style: normal;
}

/* Integrations Section */
.integrations-section {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
}
/* Integration Scroll Animation */
.integration-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.integration-scroll-container::before,
.integration-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.integration-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.integration-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.integration-scroll-track {
    display: flex;
    gap: 2rem;
    animation: scrollIntegrations 45s linear infinite;
    width: max-content;
    align-items: center;
}

@keyframes scrollIntegrations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.integration-box {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    opacity: 0.85;
}

.integration-box:hover {
    opacity: 1;
}

.integration-box svg {
    height: 24px;
    width: auto;
    display: block;
}

.integration-box svg text {
    fill: var(--gray-400);
    font-size: 1rem;
    font-weight: 600;
}

.integration-box:hover svg text {
    fill: var(--gray-600);
}
/* Feature Blocks (Alternating) */
/* Trust Pillars */
.trust-strip {
    background: linear-gradient(135deg, #2d2440 0%, #1e1832 100%);
    border-radius: 20px;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 2.5rem 2rem;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-pillar {
    text-align: center;
    padding: 0.5rem;
}

.trust-pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
}

.trust-pillar-icon svg {
    stroke: var(--orange-400) !important;
}

.trust-pillar h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.trust-pillar p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.differentiators {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.diff-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.diff-section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.diff-section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tabbed Differentiators */
.diff-tabs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.diff-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.diff-tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 2px solid var(--gray-200);
    background: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.diff-tab-btn:hover {
    border-color: var(--purple-300);
    color: var(--purple-700);
}

.diff-tab-btn.active {
    border-color: var(--purple-500);
    background: var(--purple-50);
    color: var(--purple-700);
}

.diff-tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    animation: tabFadeIn 0.4s ease;
}

.diff-tab-panel.active {
    display: grid;
}

.diff-tab-text {
    padding: 1rem 0;
}

.diff-tab-text h3 {
    font-size: 1.75rem;
}

.diff-tab-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-image-placeholder.ui-mockup {
    user-select: none;
    -webkit-user-select: none;
}
.feature-block.alt-bg {
    background: transparent;
}
.feature-grid-alt.reverse {
    display: contents;
}

.feature-grid-alt.reverse > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    stroke: white;
    stroke-width: 3;
}
.feature-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.2), 
                0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.placeholder-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.placeholder-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.placeholder-dot:nth-child(1) { background: #ff5f57; }
.placeholder-dot:nth-child(2) { background: #febc2e; }
.placeholder-dot:nth-child(3) { background: #28c840; }

.header-title {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.mockup-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    flex: 1;
}

/* Screening Mockup */
.screening-mockup {
    flex-direction: row;
    gap: 12px;
}

.video-panel {
    width: 100px;
    background: var(--gray-800);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-avatar {
    width: 44px;
    height: 44px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.video-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.control-dot.red { background: #ff5f57; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.control-label {
    color: var(--gray-400);
    font-size: 10px;
}

.video-question { display: none; }

.scoring-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-header {
    font-weight: 700;
    color: var(--gray-700);
    font-size: 13px;
    margin-bottom: 4px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-600);
}

.score-item span:first-child {
    width: 85px;
    flex-shrink: 0;
}

.score-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--purple-500);
    border-radius: 3px;
}

.score-num {
    font-weight: 700;
    color: var(--purple-600);
    width: 22px;
    text-align: right;
}

.overall-score {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.big-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--purple-600);
}

/* Search Mockup */
.search-mockup { gap: 10px; }

.search-bar-mock {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-500);
    font-size: 11px;
}

.search-bar-mock svg {
    width: 14px;
    height: 14px;
    color: var(--gray-400);
    flex-shrink: 0;
}

.filter-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    padding: 4px 10px;
    background: var(--gray-100);
    border-radius: 12px;
    font-size: 10px;
    color: var(--gray-600);
}

.chip.active {
    background: var(--purple-100);
    color: var(--purple-700);
}

.results-count {
    font-size: 11px;
    color: var(--gray-500);
}

.candidate-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.mini-info { flex: 1; min-width: 0; }

.mini-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 12px;
}

.mini-title {
    color: var(--gray-500);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-score {
    font-weight: 700;
    color: var(--purple-600);
    font-size: 12px;
    flex-shrink: 0;
}

/* Workspace Mockup */
.workspace-mockup {
    flex-direction: row;
    gap: 0;
    padding: 0;
}

.workspace-sidebar {
    width: 36px;
    background: var(--gray-800);
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.sidebar-item.active {
    background: var(--purple-600);
    color: white;
}

.sidebar-item svg { width: 13px; height: 13px; }

.workspace-main { flex: 1; padding: 12px; }

.pipeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pipeline-title {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 12px;
}

.pipeline-count {
    color: var(--gray-500);
    font-size: 10px;
}

.pipeline-stages { display: flex; gap: 6px; }

.stage {
    flex: 1;
    background: var(--gray-50);
    border-radius: 6px;
    padding: 8px;
}

.stage.highlight {
    background: var(--purple-50);
    border: 1px solid var(--purple-200);
}

.stage-header {
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.stage-header span {
    background: var(--gray-200);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 9px;
}

.stage-cards {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tiny-card {
    height: 14px;
    background: var(--white);
    border-radius: 3px;
    border: 1px solid var(--gray-200);
}

.tiny-card.active {
    background: var(--purple-100);
    border-color: var(--purple-300);
}

/* Pools Mockup */
.pools-mockup { gap: 8px; }

.pool-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--gray-50);
    border-radius: 8px;
}

.pool-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pool-icon.inbound { background: var(--purple-100); color: var(--purple-600); }
.pool-icon.passive { background: var(--orange-100); color: var(--orange-600); }
.pool-icon.ats { background: var(--gray-200); color: var(--gray-600); }

.pool-icon svg { width: 13px; height: 13px; }

.pool-name {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 11px;
    width: 50px;
    flex-shrink: 0;
}

.pool-count {
    font-weight: 700;
    color: var(--purple-600);
    font-size: 12px;
    width: 45px;
    flex-shrink: 0;
}

.pool-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.pool-fill {
    height: 100%;
    background: var(--purple-500);
    border-radius: 3px;
}

.pool-fill.goldmine {
    background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
}

.pool-card.highlight {
    background: var(--orange-100);
    border: 1px solid var(--orange-400);
}

.pool-card.highlight .pool-icon.ats {
    background: var(--orange-200);
    color: var(--orange-600);
}

.pool-insight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--purple-50);
    border-radius: 6px;
    border-left: 3px solid var(--purple-500);
}

.pool-insight.goldmine-insight {
    background: var(--orange-100);
    border-left-color: var(--orange-500);
}

.pool-insight.goldmine-insight svg { color: var(--orange-500); }
.pool-insight.goldmine-insight span { color: var(--orange-600); }

.pool-insight svg {
    width: 14px;
    height: 14px;
    color: var(--purple-600);
    flex-shrink: 0;
}

.pool-insight span {
    font-size: 11px;
    color: var(--purple-700);
    font-weight: 800;
}

/* People Insights Mockup */
.insights-mockup { gap: 10px; }

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.insight-card {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 10px;
}

.insight-label {
    font-size: 10px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.insight-value {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--purple-600);
}

.insight-change {
    font-size: 10px;
    margin-top: 2px;
}

.insight-change.positive { color: var(--green-600); }

.insight-sublabel {
    font-size: 9px;
    color: var(--gray-500);
    margin-top: 2px;
}

.insight-chart {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 10px;
}

.insight-chart .chart-header {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.location-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loc-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-name {
    font-size: 10px;
    color: var(--gray-600);
    width: 60px;
    flex-shrink: 0;
}

.loc-fill {
    height: 8px;
    background: linear-gradient(90deg, var(--purple-400), var(--purple-500));
    border-radius: 4px;
    flex: 1;
}

.loc-pct {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-700);
    width: 25px;
    text-align: right;
}

.insight-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: var(--purple-50);
    border-radius: 6px;
    cursor: pointer;
}

.insight-footer svg {
    width: 12px;
    height: 12px;
    color: var(--purple-600);
}

.insight-footer span {
    font-size: 10px;
    color: var(--purple-700);
    font-weight: 800;
}

/* Scorecard Mockup */
.scorecard-mockup { gap: 12px; }

.scorecard-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.profile-info { flex: 1; min-width: 0; }

.profile-name {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 13px;
}

.profile-title {
    color: var(--gray-500);
    font-size: 11px;
}

.match-badge {
    background: var(--purple-500);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.scorecard-rubric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rubric-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
}

.rubric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rubric-label {
    font-size: 11px;
    color: var(--gray-600);
}

.rubric-dots {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.rubric-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}

.rubric-dots .dot.filled { background: var(--purple-500); }

.scorecard-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
}

.action-btn.approve {
    background: var(--purple-500);
    color: white;
}

/* Outreach Mockup */
.outreach-mockup { gap: 10px; }

.email-preview {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 12px;
    position: relative;
}

.email-to, .email-subject {
    font-size: 11px;
    margin-bottom: 4px;
}

.email-to { color: var(--gray-500); }

.email-subject {
    font-weight: 600;
    color: var(--gray-800);
}

.email-body {
    font-size: 10px;
    color: var(--gray-600);
    line-height: 1.5;
}

.email-body p { margin-bottom: 4px; }

.highlight-text {
    background: linear-gradient(90deg, var(--purple-100), transparent);
}

.ai-badge-email {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: var(--purple-600);
    font-weight: 600;
}

.ai-badge-email svg { width: 10px; height: 10px; }

.sequence-preview { padding: 8px; }

.sequence-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.sequence-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-500);
}

.step.completed { color: var(--gray-400); }

.step.active {
    color: var(--purple-600);
    font-weight: 600;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

.step.completed .step-dot { background: var(--green-500); }
.step.active .step-dot { background: var(--purple-500); }

.step-status {
    margin-left: auto;
    font-size: 10px;
}

/* Diversity Mockup */
.diversity-mockup { gap: 12px; }

.diversity-chart { flex: 1; }

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-bar-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-label {
    width: 70px;
    font-size: 11px;
    color: var(--gray-600);
    flex-shrink: 0;
}

.stacked-bar {
    flex: 1;
    height: 12px;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
}

.bar-segment { height: 100%; }

.compliance-badges {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--green-50);
    border-radius: 6px;
    font-size: 11px;
    color: var(--green-700);
    font-weight: 600;
}

.compliance-item svg {
    width: 14px;
    height: 14px;
    color: var(--green-600);
    flex-shrink: 0;
}

/* Proven Results Section */
.proven-results {
    padding: 6rem 2rem 4rem;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--gray-200);
    overflow: hidden;
}

.proven-results-inner {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.proven-results h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.proven-results p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.credibility-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 0;
}

.credibility-scroll-track {
    display: flex;
    gap: 3rem;
    animation: scrollCredibility 80s linear infinite;
    width: max-content;
}

@keyframes scrollCredibility {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.credibility-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 20px;
}

/* Grow Knowledge Section */
.grow-knowledge {
    padding: 6rem 2rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.grow-knowledge .section-header {
    margin-bottom: 3rem;
}

.grow-knowledge .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
}

.blog-cards-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--black);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
    list-style: none;
}

.faq-trigger::-webkit-details-marker,
.faq-trigger::marker {
    display: none;
}

.faq-trigger:hover {
    color: var(--purple-700);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon,
.faq-item[open] .faq-trigger .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: left;
}

.faq-answer.open,
.faq-item[open] .faq-answer {
    max-height: 5000px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-answer p + p {
    padding-top: 0.25rem;
}

/* Benefits Accordion */
.benefits-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.benefit-item {
    border-bottom: 1px solid var(--gray-200);
}
.benefit-item:first-child {
    border-top: 1px solid var(--gray-200);
}
.benefit-item summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--black);
}
.benefit-item summary::-webkit-details-marker {
    display: none;
}
.benefit-item summary span {
    flex: 1;
}
.benefit-item summary .accordion-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.benefit-item[open] summary .accordion-chevron {
    transform: rotate(180deg);
}
.benefit-item p {
    padding: 0 0 1.25rem 2.75rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: var(--gray-50);
    text-align: center;
    color: var(--black);
    border-top: 1px solid var(--gray-200);
}

.final-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.final-cta > p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.final-bifurcation {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.final-path {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.final-path.tools {
    border-top: 3px solid var(--purple-600);
}

.final-path.services {
    border-top: 3px solid var(--orange-500);
}

.final-path-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.final-path.tools .final-path-label {
    color: var(--purple-600);
}

.final-path.services .final-path-label {
    color: var(--orange-500);
}

.final-path-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.final-path-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.final-path .btn-outline-light {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.final-path .btn-outline-light:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}
.btn-white {
    background: var(--gray-800);
    color: white;
}

.btn-white:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}
/* Footer */
/* Remove any WP-injected spacing around footer template part */
.wp-block-template-part:last-child,
.wp-site-blocks > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 0 !important;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-address {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--purple-600);
    color: white;
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal .privacy-choices {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-legal .privacy-choices svg {
    flex-shrink: 0;
}

.footer-blurb {
    color: var(--gray-400);
}

.footer-address p {
    color: var(--gray-400);
    margin: 0;
}

/* Scroll to Top - Desktop only */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--purple-600);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--purple-700);
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .bifurcation {
        gap: 1.5rem;
    }

    .tools-features,
    .service-tiers {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-tab-panel {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .hero {
        padding: 0 1.5rem 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    .experience-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 2rem;
    }

    .bifurcation {
        grid-template-columns: 1fr;
    }

    .path-card {
        padding: 2rem;
    }

    .path-card h3 {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .how-services .section-header h2 {
        font-size: 2rem;
    }

    .tool-feature {
        padding: 1.5rem;
    }

    .service-tier {
        padding: 2rem;
    }

    .tier-name {
        font-size: 1.25rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .trust-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .diff-tab-panel {
        grid-template-columns: 1fr;
    }

    .diff-section-header h2 {
        font-size: 2rem;
    }
    .feature-image-placeholder {
        width: 100%;
        min-height: 280px;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .final-cta {
        padding: 4rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-bifurcation {
        flex-direction: column;
    }

    .final-path {
        padding: 1.5rem;
    }
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        z-index: 9998;
    }

    .proven-results h2 {
        font-size: 2rem;
    }

    .proven-results p {
        font-size: 1rem;
    }

    .grow-knowledge .section-header h2 {
        font-size: 2rem;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image {
        height: 140px;
    }

    .blog-card-content h3 {
        font-size: 1rem;
    }

    .stat-bar {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .recruit-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .recruit-flow::before {
        display: none;
    }

}

@media (max-width: 480px) {
    .recruit-flow {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    .tagline {
        font-size: 1rem;
    }

    .path-card {
        padding: 1.5rem;
    }

    .path-card h3 {
        font-size: 1.35rem;
    }

    .path-desc {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .tool-feature {
        padding: 1.25rem;
    }

    .tool-feature h4 {
        font-size: 1rem;
    }

    .service-tier {
        padding: 1.5rem;
    }

    .tier-name {
        font-size: 1.1rem;
    }

    .timeline-step {
        padding: 0 0.5rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
    }

    .diff-section-header h2 {
        font-size: 1.75rem;
    }
    .feature-image-placeholder {
        min-height: 240px;
    }

    .faq-section h2 {
        font-size: 1.75rem;
    }

    .faq-trigger {
        font-size: 1rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .final-path-label {
        font-size: 0.7rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Stat Bar */
.stat-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Spot stats (dark bg) */
.how-services .stat-number {
    color: var(--orange-400);
}

.how-services .stat-label {
    color: rgba(255,255,255,0.6);
}

/* Recruit stats (light bg) */
.how-tools .stat-number {
    color: var(--purple-700);
}

.how-tools .stat-label {
    color: var(--gray-500);
}

/* How Recruit Works Flow */
.recruit-flow {
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.recruit-flow::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--purple-300) 0, var(--purple-300) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.recruit-flow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.recruit-flow-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--purple-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.recruit-flow-icon svg {
    width: 22px;
    height: 22px;
    color: var(--purple-700);
}

.recruit-flow-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.recruit-flow-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-col {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.comparison-col svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.comparison-header {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.5rem;
}

/* Spot comparison (dark bg) */
.how-services .comparison-table {
    border: 1px solid rgba(255,255,255,0.1);
}

.how-services .comparison-header.problem {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
}

.how-services .comparison-header.solution {
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange-400);
}

.how-services .comparison-col.problem {
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.how-services .comparison-col.solution {
    background: rgba(249, 115, 22, 0.06);
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Recruit comparison (light bg) */
.how-tools .comparison-table {
    border: 1px solid var(--gray-200);
}

.how-tools .comparison-header.problem {
    background: var(--gray-200);
    color: var(--gray-700);
}

.how-tools .comparison-header.solution {
    background: var(--purple-200);
    color: var(--purple-800);
}

.how-tools .comparison-col.problem {
    background: var(--white);
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}

.how-tools .comparison-col.solution {
    background: #faf5ff;
    color: var(--purple-700);
    border-bottom: 1px solid var(--gray-100);
}

/* Mobile comparison: keep side-by-side, tighten spacing */
@media (max-width: 768px) {
    .comparison-header {
        font-size: 0.65rem;
        padding: 0.6rem 0.75rem;
    }

    .comparison-col {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* WordPress Block Editor Overrides */
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1200px;
}

/* Fixed header body offset */
body.seekout-theme {
    padding-top: var(--header-height);
}

/* ============================================
   Landing Pages (Request Meeting, etc.)
   ============================================ */

/* Simplified Nav */
.nav-simplified {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    height: var(--header-height);
}

.nav-simplified .logo img {
    height: 28px;
    width: auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--black);
}

/* Request Meeting Page */
.request-meeting {
    padding: 2rem 4rem 5rem;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 60%);
}

.request-meeting-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.request-meeting-content {
    max-width: 600px;
}

.request-meeting-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1rem;
}

.request-meeting-content .hero-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Solution Cards - side by side */
.solutions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.solution-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.solution-card.recruit {
    border-left: 3px solid var(--purple-600);
}

.solution-card.spot {
    border-left: 3px solid var(--orange-500);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.solution-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon.recruit {
    background: var(--purple-50);
    color: var(--purple-600);
}

.solution-icon.spot {
    background: #fff7ed;
    color: var(--orange-500);
}

.solution-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

.solution-card h3 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.solution-audience {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    background: var(--gray-100);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}

.solution-audience.recruit {
    background: var(--purple-50);
    color: var(--purple-600);
}

.solution-audience.spot {
    background: #fff7ed;
    color: var(--orange-500);
}

.solution-card > p:not(.solution-audience) {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.solution-features li svg {
    flex-shrink: 0;
}

/* Form Container */
.form-container {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: static;
}

.form-header h2 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.comparison-container {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-section .section-tag {
    color: var(--purple-600);
}

.comparison-section h2 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.comparison-section > .comparison-container > p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.comparison-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.comparison-card.recruit {
    border-top: 3px solid var(--purple-600);
}

.comparison-card.spot {
    border-top: 3px solid var(--orange-500);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon.recruit {
    background: var(--purple-50);
    color: var(--purple-600);
}

.comparison-icon.spot {
    background: #fff7ed;
    color: var(--orange-500);
}

.comparison-title {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-card-header p {
    width: 100%;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    background: var(--gray-100);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    display: inline-block;
}

.comparison-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.comparison-features li svg {
    flex-shrink: 0;
}

/* Why SeekOut Section */
.why-seekout {
    padding: 5rem 2rem;
    text-align: center;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-seekout .section-tag {
    color: var(--purple-600);
}

.why-seekout h2 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-container > p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.why-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-card h3 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.testimonials-section .testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
}

.testimonials-section .testimonial-quote {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonials-section .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonials-section .author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.testimonials-section .author-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Landing page responsive */
@media (max-width: 1024px) {
    .request-meeting-layout {
        grid-template-columns: 1fr;
    }

    .form-container {
        position: static;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-simplified {
        padding: 1rem;
    }

    .request-meeting {
        padding: 1.5rem 1.5rem 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Gradient purple text */
.text-purple {
    background: linear-gradient(90deg, var(--purple-600) 0%, var(--purple-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Shared Landing Page Styles
   ============================================ */

/* Common landing layout - two column grid */
.landing-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.landing-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1rem;
}

.landing-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.landing-desc-secondary {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.landing-eyebrow {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: -0.25rem 0 1rem;
}

.free-trial .landing-content h1,
.request-demo .landing-content h1 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.landing-audience {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin: -0.5rem 0 1rem;
}

.landing-audience.spot {
    color: var(--orange-500);
    background: #fff7ed;
}

.product-tile.spot .product-tile-icon {
    background: var(--orange-500);
}

.product-tile.spot .product-tile-name {
    color: var(--orange-500);
}

.product-tile-inline .product-tile-name {
    font-size: 0.85rem;
}

.key-stats-purple .key-stat-number {
    color: var(--purple-600);
}

.key-stats-orange .key-stat-number {
    color: var(--orange-500);
}

.product-tile {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.product-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--purple-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-tile-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.product-tile-name {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--purple-600);
}

.product-tile-tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 0.15rem;
}

.form-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
}

.form-heading-row h2 {
    margin-bottom: 0;
}

.form-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--purple-50);
    color: var(--purple-600);
    flex-shrink: 0;
}

.product-badge.spot {
    background: #fff7ed;
    color: var(--orange-500);
}

.product-badge.recruit {
    background: var(--purple-50);
    color: var(--purple-600);
}

.audience-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.landing-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.landing-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.landing-bullets li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.landing-bullets li span {
    flex: 1;
    min-width: 0;
}

/* Key Stats Row */
.key-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.free-trial .key-stats {
    padding-top: 2rem;
    border-top: 1px solid var(--purple-200);
    margin-top: 0.5rem;
}

.key-stat {
    text-align: center;
}

.key-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.free-trial .key-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-600);
    line-height: 1.2;
}

.key-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Inner */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-inner h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.form-fine-print,
.cta-fine-print {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 1rem;
}

/* ============================================
   Spot Meeting Page
   ============================================ */
.spot-meeting {
    padding: 2rem 4rem 4rem;
    background: linear-gradient(180deg, #fff7ed 0%, #fff 60%);
}

/* Timeline */
.spot-timeline {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-steps .timeline-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: 16px;
    position: relative;
}

.timeline-steps .step-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.timeline-steps .step-day {
    font-size: 0.75rem;
    color: var(--orange-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.timeline-steps h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-steps p:last-child {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Models Grid */
.spot-models {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.model-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.model-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.model-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-500);
    background: #fff7ed;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.model-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.model-card > p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.model-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.model-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.model-card li svg {
    flex-shrink: 0;
}

/* ============================================
   Request Demo Page
   ============================================ */
.request-demo {
    padding: 2rem 4rem 4rem;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 60%);
}

/* Features Grid */
.demo-features {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--purple-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 5rem 2rem;
    background: var(--purple-50);
}

.featured-testimonial .section-inner {
    max-width: 800px;
}

.featured-testimonial blockquote {
    margin: 0;
    padding: 0;
}

.featured-testimonial blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.featured-testimonial blockquote cite {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
    font-style: normal;
}

.featured-testimonial .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-testimonial .author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.featured-testimonial .author-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   TA Draft Mode Page
   ============================================ */
.tadraftmode {
    padding: 2rem 4rem 4rem;
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: var(--white);
}

.tadraftmode .landing-content h1 {
    color: var(--white);
}

.tadraftmode .landing-content h1 .text-orange {
    color: var(--orange-500);
}

.tadraftmode #hubspot-form-tadraft .legal-consent-container a,
.tadraftmode #hubspot-form-tadraft .hs-richtext a,
.tadraftmode #hubspot-form-tadraft .hs-form-field a {
    color: inherit;
    text-decoration: none;
}

.tadraftmode .landing-desc {
    color: var(--gray-300);
}

.tadraftmode .landing-bullets li {
    color: var(--gray-300);
}

.tadraftmode .key-stat-number {
    color: var(--orange-500);
}

.tadraftmode .key-stat-label {
    color: var(--gray-400);
}

.tadraft-intro {
    padding: 5rem 2rem;
    text-align: center;
}

.tadraft-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.tadraft-values {
    padding: 0 2rem 5rem;
}

.values-grid,
.format-grid,
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card,
.format-card,
.community-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.value-card h3,
.format-card h3,
.community-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p,
.format-card p,
.community-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.tadraft-format,
.tadraft-how,
.tadraft-community {
    padding: 5rem 2rem;
    text-align: center;
}

.tadraft-format {
    background: var(--gray-50);
}

/* How Steps */
.how-steps {
    display: flex;
    gap: 1rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: left;
}

.how-step {
    flex: 1;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
}

.how-step .step-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.how-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.how-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Fit Section */
.tadraft-fit {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.fit-checks {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.fit-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Host Section */
.tadraft-host {
    padding: 5rem 2rem;
}

.tadraft-host .section-inner {
    max-width: 900px;
}

.host-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.host-info {
    text-align: left;
}

.host-info h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.host-title {
    color: var(--orange-500);
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-info p:last-child {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .host-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .host-photo {
        display: flex;
        justify-content: center;
    }

    .host-info {
        text-align: center;
    }
}

/* ============================================
   Free Trial Page
   ============================================ */
.free-trial {
    padding: 2rem 4rem 4rem;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 60%);
}

/* Included Grid */
.trial-included {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.included-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.included-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.included-card:hover .included-icon {
    transform: scale(1.1);
}

.included-card:hover {
    border-color: var(--purple-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.included-icon.purple {
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    color: var(--purple-600);
}

.included-card:hover .included-icon.purple {
    background: var(--purple-600);
    color: var(--white);
}

.included-icon.teal {
    background: linear-gradient(135deg, #ccfbf1, #f0fdfa);
    color: #0d9488;
}

.included-card:hover .included-icon.teal {
    background: #0d9488;
    color: var(--white);
}

.included-icon.amber {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    color: #d97706;
}

.included-card:hover .included-icon.amber {
    background: #d97706;
    color: var(--white);
}

.included-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.included-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Hero Credits Box (left of form) */
.hero-credits {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero-credits-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--purple-600);
    margin-bottom: 1rem;
}

.hero-credits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-credit-item {
    text-align: center;
}

.hero-credit-num {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    font-variant-numeric: lining-nums tabular-nums;
}

.hero-credit-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Credits Row (below included cards) */
.credits-row {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: var(--purple-50);
    border: 1px solid var(--purple-100);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

.credits-row .credit-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.credit-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--purple-600);
    font-variant-numeric: lining-nums tabular-nums;
}

.credit-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Workflow Steps */
.trial-workflow {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-workflow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
}

.trial-workflow h2 {
    color: var(--white);
}

.trial-workflow .section-subtitle {
    color: var(--gray-400);
}

.workflow-steps {
    display: flex;
    gap: 1rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: center;
}

.workflow-step {
    flex: 1;
    padding: 1.5rem;
    position: relative;
}

.workflow-step .step-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.workflow-step h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.workflow-step p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Support Grid */
.trial-support {
    padding: 5rem 2rem;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.support-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.support-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
    color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.support-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Testimonial Block (inside support section) */
.testimonial-block {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.testimonial-block .testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-block .testimonial-author {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
    font-style: normal;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Trial Stats */
.trial-stats {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trial-stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.06) 0%, transparent 50%);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.stat-block {
    text-align: center;
}

.stat-block .stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-block .stat-label {
    font-size: 1rem;
    color: var(--gray-400);
}

/* Trial FAQ */
.trial-faq {
    padding: 5rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.trial-faq .faq-list {
    max-width: 768px;
    margin: 2rem auto 0;
    text-align: left;
}

.trial-faq .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.trial-faq .faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.trial-faq .faq-question:hover {
    background: var(--gray-50);
}

.trial-faq .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--purple-600);
    transition: transform 0.3s;
}

.trial-faq .faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.trial-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.trial-faq .faq-item.open .faq-answer {
    max-height: 500px;
}

.trial-faq .faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Trial Final CTA */
.trial-final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta-blob-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.final-cta-blob-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 300px;
    height: 300px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.trial-final-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.trial-final-cta p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--purple-600), #6366f1);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
}

.btn-cta:hover {
    box-shadow: 0 15px 30px -5px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.trial-final-cta .cta-fine-print {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}

/* ============================================
   Landing Pages Responsive
   ============================================ */
@media (max-width: 1024px) {
    .landing-layout {
        grid-template-columns: 1fr;
    }

    .solutions-container {
        grid-template-columns: 1fr;
    }

    .models-grid,
    .features-grid,
    .included-grid,
    .support-grid,
    .values-grid,
    .format-grid,
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-steps,
    .workflow-steps,
    .how-steps {
        flex-wrap: wrap;
    }

    .workflow-step::after {
        display: none;
    }

    .stats-row {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .spot-meeting,
    .request-demo,
    .tadraftmode,
    .free-trial {
        padding: 1.5rem 1.5rem 3rem;
    }

    .key-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .models-grid,
    .features-grid,
    .included-grid,
    .support-grid,
    .values-grid,
    .format-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .timeline-steps .timeline-step,
    .workflow-step,
    .how-step {
        flex: 0 0 100%;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .credits-row {
        gap: 1.5rem;
    }

    .credit-num {
        font-size: 1.75rem;
    }

    .testimonial-block .testimonial-quote {
        font-size: 1.25rem;
    }
}

/* ============================================
   Platform Pages (Spot & Recruit)
   ============================================ */

.platform-spot,
.platform-recruit,
.pricing-hero {
    padding: 6rem 4rem 4rem;
    text-align: center;
}

.platform-spot {
    background: linear-gradient(180deg, #fff7ed 0%, #fff 60%);
}

.platform-recruit {
    background: linear-gradient(180deg, #faf5ff 0%, #fff 60%);
}

.pricing-hero {
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 60%);
}

.platform-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.platform-hero-inner h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1rem;
}

.platform-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.platform-hero-inner .key-stats {
    justify-content: center;
    margin-top: 2.5rem;
}

.platform-hero-inner .btn {
    margin-bottom: 1rem;
}
.recruit-workspaces .product-badge {
    margin-bottom: 1rem;
}

/* ============================================
   Pricing Page
   ============================================ */

/* Hero override for pricing — clean white bg */
.pricing-hero--clean {
    background: var(--white) !important;
    padding: 72px 2rem 24px !important;
}

.pricing-hero--clean h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.pricing-hero--clean .platform-subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

/* Free Trial Banner */
.free-banner-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px 40px;
}

.free-banner {
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
    border: 1.5px solid rgba(147,51,234,0.2);
    border-radius: 20px;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.free-banner-text {
    flex: 1 1 40%;
    min-width: 0;
}

.free-banner-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.free-banner-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.free-banner-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto;
}

.free-banner-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}

.free-banner-cta {
    flex: 0 0 auto;
}

.btn-pill {
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-orange.btn-pill {
    background: var(--orange-500);
    color: var(--white);
    border: none;
}
.btn-orange.btn-pill:hover {
    background: var(--orange-600);
}

/* Check marks */
.check {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}
.check.purple { color: var(--purple-600); }
.check.orange { color: var(--orange-500); }

/* NEW badge */
.badge-new {
    display: inline-block;
    background: var(--purple-100);
    color: var(--purple-700);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 2px;
}

/* Pricing Cards Section */
.pricing-cards-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--gray-200);
    padding: 28px 24px;
    display: grid;
    grid-row: span 9;
    grid-template-rows: subgrid;
    position: relative;
}

.pricing-card--popular {
    border-color: var(--purple-600);
    box-shadow: 0 8px 40px rgba(147,51,234,0.12);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.card-tier-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0 0 8px;
}

.card-best-for {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 12px;
}

.card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}

.card-price .price-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
}

.card-price .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.card-price .price-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin: 0;
}

/* Card CTA buttons */
.card-cta {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.card-cta--outline {
    border: 1.5px solid var(--gray-300);
    color: var(--gray-700);
    background: var(--white);
}
.card-cta--outline:hover {
    border-color: var(--purple-400);
    color: var(--purple-600);
}

.card-cta--primary {
    background: var(--purple-600);
    color: var(--white);
    border: 1.5px solid var(--purple-600);
}
.card-cta--primary:hover {
    background: var(--purple-700);
    border-color: var(--purple-700);
}

/* Features toggle */
.card-features-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple-600);
    padding: 8px 0 0;
    width: 100%;
}

.card-features-toggle svg {
    transition: transform 0.2s ease;
}

.card-features-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.card-features-collapsible {
    padding-top: 12px;
}

.features-divider {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.includes-previous {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple-600);
    margin: 0 0 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Shared Features Row */
.shared-features {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1.5px dashed var(--gray-200);
    margin-top: 24px;
}

.shared-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
}

/* Spot Section */
.spot-section-wrapper {
    background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
    padding: 56px 1.5rem 64px;
    margin-top: 56px;
}

.spot-section-wrapper .section-tag.orange {
    background: rgba(249,115,22,0.1);
    color: var(--orange-600);
    border: 1px solid rgba(249,115,22,0.2);
}

.spot-section-wrapper h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.spot-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 2rem;
}

.spot-card {
    background: var(--white);
    border: 1.5px solid rgba(249,115,22,0.2);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
}

.spot-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.spot-model-type {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange-600);
    margin-bottom: 8px;
}

.spot-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 12px;
}

.spot-card .feature-list li .check.orange {
    color: var(--orange-500);
}

/* Comparison Section */
.comparison-section {
    padding: 56px 2rem 64px;
    text-align: center;
}

.comparison-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.matrix-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-600);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.15s ease;
}

.matrix-toggle-btn:hover {
    background: var(--purple-700);
}

.matrix-toggle-btn .chevron-icon {
    transition: transform 0.2s ease;
}

.matrix-toggle-btn[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.matrix-collapsible {
    margin-top: 2rem;
}

.comp-table-wrap {
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
}

.comp-table thead th {
    background: var(--gray-50);
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-bottom: 1.5px solid var(--gray-200);
    white-space: nowrap;
}

.comp-table thead th.comp-feature-col {
    width: 26%;
}

.comp-table thead th.popular-col {
    background: rgba(147,51,234,0.06);
    color: var(--purple-600);
}

.comp-table .section-row td {
    background: var(--gray-50);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gray-700);
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--gray-200);
}

.comp-table tbody td {
    padding: 10px 16px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.comp-table tbody td:first-child {
    font-weight: 600;
    color: var(--gray-700);
}

.comp-table tbody td.popular-col {
    background: rgba(147,51,234,0.03);
}

/* CTA Buttons Row (kept for general use) */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .free-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 32px;
        gap: 24px;
    }

    .free-banner-features {
        flex-direction: row;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .pricing-hero--clean {
        padding: 48px 1.5rem 16px !important;
    }

    .pricing-hero--clean h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card {
        grid-row: auto;
        grid-template-rows: none;
        display: flex;
        flex-direction: column;
    }

    .free-banner-section {
        padding: 0 20px 32px;
    }

    .free-banner {
        padding: 28px 24px;
    }

    .free-banner-features {
        flex-direction: column;
        align-items: center;
    }

    .spot-cards {
        grid-template-columns: 1fr;
    }

    .shared-features {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px 0;
    }

    .comp-table-wrap {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .comp-table {
        font-size: 0.78rem;
    }

    .comp-table thead th,
    .comp-table tbody td {
        padding: 8px 10px;
    }

    .platform-spot,
    .platform-recruit {
        padding: 4rem 1.5rem 3rem;
    }

    .pricing-cards-section {
        padding: 0 20px 0;
    }
}

/* ============================================
   Blog Archive
   ============================================ */

.blog-hero {
    padding: 2rem 2rem 2rem;
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 60%);
    text-align: center;
}

.blog-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.blog-hero > .blog-hero-inner > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.blog-category-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-category-pill {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--white);
}

.blog-category-pill:hover {
    border-color: var(--purple-300);
    color: var(--purple-600);
}

.blog-category-pill.active {
    background: var(--purple-600);
    color: var(--white);
    border-color: var(--purple-600);
}

/* Content Search Bar (Blog, Resources, Release Notes) */
.content-search {
    position: relative;
    max-width: 420px;
    margin: 1.25rem auto 1.5rem;
}

.content-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.content-search-input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.content-search-input::placeholder {
    color: var(--gray-400);
}

.content-search-input:focus {
    border-color: var(--purple-300);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.content-search-results {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.content-search-results-inner {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.content-search-clear {
    background: none;
    border: none;
    color: var(--purple-600);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.content-search-clear:hover {
    background: var(--purple-50);
}

.content-search-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content-search-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    transition: background 0.2s;
    border: 1px solid var(--gray-100);
}

.content-search-item:hover {
    background: var(--purple-50);
    border-color: var(--purple-200);
}

.content-search-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.content-search-item-excerpt {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-search-loading {
    text-align: center;
    padding: 1rem;
    color: var(--gray-400);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .content-search {
        max-width: 100%;
        width: 100%;
        margin: 1rem auto 1.5rem;
    }

    .content-search-input {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1rem 0.75rem 2.75rem;
    }

    .content-search-results {
        padding: 1rem 1.5rem;
    }
}

/* Blog Archive Cards */
/* Constrain entire blog page to homepage width */
.page-blog {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem;
}

.page-blog .wp-block-post-template {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 2rem 0 4rem;
}

.page-blog .wp-block-query-no-results {
    text-align: center;
    color: var(--gray-500);
    padding: 3rem 0;
}

.blog-cards-archive {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 1100px;
    margin: 0 auto;
}

.page-blog .wp-block-post {
    background: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid var(--gray-200) !important;
    overflow: hidden !important;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.page-blog .wp-block-post:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Blog card image or gradient placeholder */
.page-blog .wp-block-post::before {
    content: '';
    display: block;
    height: 120px;
    background: var(--gray-100);
}

.page-blog .wp-block-post .wp-block-post-featured-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    margin: 0 !important;
    margin-top: -120px !important;
}

.page-blog .wp-block-post .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
}

.page-blog .wp-block-post:hover .wp-block-post-featured-image img {
    transform: scale(1.03);
}

/* Hide categories, tags, author, dates from blog cards */
.page-blog .wp-block-post .wp-block-post-date,
.page-blog .wp-block-post .wp-block-post-author-name,
.page-blog .wp-block-post .blog-archive-card-date {
    display: none !important;
}

.blog-archive-card-body {
    padding: 1.25rem;
    text-align: left;
}

/* When no featured image, add top padding */
.page-blog .wp-block-post .wp-block-post-title:first-child {
    padding-top: 1.25rem !important;
}

.blog-archive-card-cat {
    margin-bottom: 0.5rem;
}

.blog-archive-card-cat a {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
}

.page-blog .wp-block-post .wp-block-post-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--black) !important;
    margin-bottom: 0.4rem !important;
    padding: 1rem 1rem 0 !important;
}

.page-blog .wp-block-post .wp-block-post-title a {
    text-decoration: none;
    color: inherit;
}

.page-blog .wp-block-post .wp-block-post-excerpt {
    font-size: 0.8rem !important;
    color: var(--gray-500) !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-blog .wp-block-post .wp-block-post-excerpt__excerpt {
    margin-bottom: 0;
}

.page-blog .wp-block-post .wp-block-post-excerpt__more-link {
    display: none;
}

.blog-archive-card-date {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Blog Card Category Badge (shown via wp:post-terms) */
.page-blog .wp-block-post .blog-archive-card-cat,
.page-blog .wp-block-post .taxonomy-category {
    display: block !important;
    padding: 0.75rem 1rem 0 !important;
    margin-bottom: -0.25rem;
}
.page-blog .wp-block-post .blog-archive-card-cat a,
.page-blog .wp-block-post .taxonomy-category a {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.page-blog .wp-block-post .blog-archive-card-cat a:hover,
.page-blog .wp-block-post .taxonomy-category a:hover {
    background: var(--purple-100);
}

/* Single Post Category Badge */
.single-post-category {
    text-align: center;
    margin-bottom: 0.75rem;
}
.single-post-category a {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.single-post-category a:hover {
    background: var(--purple-100);
}

/* Single Post Tags (in post footer) */
.single-post-tags {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.single-post-tags::before {
    content: 'Tags:';
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-right: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.single-post-tags a {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.single-post-tags a:hover {
    color: var(--purple-600);
    border-color: var(--purple-300);
    background: var(--purple-50);
}

/* Blog Sidebar - Categories & Tags */
.sidebar-section {
    margin-top: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 1.25rem;
}
.sidebar-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-category-list li {
    margin: 0;
}
.sidebar-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}
.sidebar-category-list li a:hover {
    background: var(--purple-50);
    color: var(--purple-600);
}
.sidebar-category-list li.active a {
    background: var(--purple-50);
    color: var(--purple-600);
    font-weight: 600;
}
.sidebar-cat-count {
    font-size: 0.7rem;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
    min-width: 1.4rem;
    text-align: center;
}
.sidebar-category-list li.active .sidebar-cat-count,
.sidebar-category-list li a:hover .sidebar-cat-count {
    background: var(--purple-100);
    color: var(--purple-600);
}
.sidebar-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.sidebar-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-150, var(--gray-200));
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease;
}
.sidebar-tag:hover {
    color: var(--purple-600);
    border-color: var(--purple-300);
    background: var(--purple-50);
}

/* Blog Pagination */
/* Hide original pagination completely */
.page-blog > .blog-pagination,
.page-blog > nav.wp-block-query-pagination {
    display: none !important;
}

/* Show cloned pagination after grid */
.blog-pagination-bottom {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1100px;
    margin: 3rem auto !important;
    padding: 0 2rem;
    position: static !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    height: auto !important;
}

.blog-pagination-bottom a,
.blog-pagination-bottom span,
.blog-pagination-bottom .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.blog-pagination-bottom a:hover {
    background: var(--purple-50);
    border-color: var(--purple-300);
    color: var(--purple-600);
}

.blog-pagination-bottom .current {
    background: var(--purple-600) !important;
    color: var(--white) !important;
    border-color: var(--purple-600) !important;
}

.blog-pagination-bottom .prev,
.blog-pagination-bottom .next {
    padding: 0 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.blog-pagination-bottom .dots,
.resource-pagination .dots {
    border: none;
    background: none;
    cursor: default;
    min-width: auto;
    padding: 0 0.25rem;
    color: var(--gray-400);
}

.blog-pagination a,
.blog-pagination span,
.blog-pagination-nav a,
.blog-pagination-nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.blog-pagination a:hover,
.blog-pagination-nav a:hover {
    background: var(--purple-50);
    border-color: var(--purple-300);
    color: var(--purple-600);
}

.blog-pagination .current,
.blog-pagination-nav .current {
    background: var(--purple-600);
    color: var(--white);
    border-color: var(--purple-600);
}

/* ============================================
   Single Blog Post
   ============================================ */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Back to listing link */
.back-to-listing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 2rem 0;
}

.back-to-listing-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-to-listing-link:hover {
    color: var(--purple-600);
}

.single-post-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
}

.single-post-cat {
    margin-bottom: 1rem;
}

.single-post-cat a {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
}

.single-post-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--orange-500);
    margin: 0;
}

.single-post-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.single-post-meta-sep {
    color: var(--gray-300);
}

.single-post-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--purple-50);
    color: var(--purple-600);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-top: 1rem;
}

.single-post-featured-image {
    margin: 1.5rem 0 0;
}

.single-post-featured-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Featured image placeholder when no image is set */
.single-post-featured-image:empty {
    min-height: 0;
    display: none;
}

/* Two-Column Layout */
.single-post-layout {
    display: grid !important;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Content Area - styles native Gutenberg output */
.single-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-800);
    min-width: 0;
}

.single-post-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--purple-700);
    line-height: 1.3;
}

.single-post-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--black);
    line-height: 1.3;
}

.single-post-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: var(--black);
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content img {
    border-radius: 12px;
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.single-post-content blockquote {
    border-left: 4px solid var(--purple-500);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: var(--purple-50);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
}

.single-post-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -0.25rem;
    left: 0.75rem;
    font-size: 3rem;
    color: var(--purple-300);
    font-family: Georgia, serif;
    line-height: 1;
}

.single-post-content blockquote p {
    margin-bottom: 0;
}

/* Pull quotes */
.single-post-content .wp-block-pullquote {
    border: none;
    padding: 2rem;
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--purple-50), #f0e6ff);
    border-radius: 16px;
    text-align: center;
}

.single-post-content .wp-block-pullquote blockquote {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.single-post-content .wp-block-pullquote blockquote::before {
    position: static;
    display: block;
    font-size: 3rem;
    margin-bottom: -1rem;
}

.single-post-content .wp-block-pullquote p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--purple-700);
    line-height: 1.5;
}

.single-post-content ul,
.single-post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

.single-post-content a {
    color: var(--purple-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-post-content a:hover {
    color: var(--purple-700);
}

.single-post-content .wp-block-image {
    margin: 2rem 0;
}

.single-post-content .wp-block-image figcaption {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

/* Full Width Post Layout (no sidebar) */
.single-post-layout-full {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
}

.sidebar-cta-card {
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    border-radius: 16px;
    padding: 1.5rem 1.25rem 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
    overflow: visible;
}
.sidebar-cta-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.sidebar-cta-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sidebar-cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--orange-400);
}
.sidebar-toc-list a.active {
    color: var(--purple-600);
    border-left-color: var(--purple-600);
    font-weight: 600;
}

/* Blog Post Footer */
.blog-post-footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--purple-50);
    color: var(--purple-600);
}

.share-btn.copied {
    background: var(--green-500);
    color: white;
}

/* Related Articles */
.related-articles {
    padding: 3rem 0 1rem;
}

.related-articles .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-articles h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0;
    text-align: left;
}

.related-articles-grid .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.related-post-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.related-post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.related-post-image {
    margin: 0;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}
.related-post-title {
    padding: 0.5rem 1rem 1rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.related-post-title a {
    color: var(--black);
    text-decoration: none;
}

.related-post-title a:hover {
    color: var(--purple-600);
}

/* ============================================
   Blog Responsive
   ============================================ */

@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .sidebar-toc {
        display: none;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 1.5rem 2rem;
    }

    .blog-hero h1 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .blog-category-filters {
        gap: 0.35rem;
        margin-top: 1rem;
    }

    .blog-category-pill {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .sidebar-section {
        margin-top: 1.25rem;
    }

    .single-post-tags {
        padding: 0 1.5rem;
    }

    .single-post-hero {
        padding: 1.5rem 1.5rem 1rem;
    }

    .single-post-layout {
        padding: 2rem 1.5rem;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-cards-archive {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .blog-pagination-bottom {
        gap: 0.25rem;
        flex-wrap: nowrap;
        padding: 0 0.75rem;
    }

    .blog-pagination-bottom a,
    .blog-pagination-bottom span,
    .blog-pagination-bottom .page-numbers {
        min-width: 32px;
        height: 34px;
        font-size: 0.75rem;
        padding: 0 0.4rem;
    }

    .resource-pagination ul {
        gap: 0.25rem;
        flex-wrap: nowrap;
    }

    .resource-pagination a,
    .resource-pagination span {
        min-width: 32px;
        height: 34px;
        font-size: 0.75rem;
        padding: 0 0.4rem;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .related-articles .section-inner,
    .related-articles-grid .section-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ============================================
   Resources Hub
   ============================================ */

/* Resource Archive Hero */
.resource-hero {
    padding: 2rem 2rem 2rem;
    background: linear-gradient(180deg, #fff7ed 0%, var(--white) 60%);
    text-align: center;
}

.resource-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.resource-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.resource-hero-inner > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.resource-type-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-type-pill {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--white);
}

.resource-type-pill:hover {
    border-color: var(--orange-300);
    color: var(--orange-500);
}

.resource-type-pill.active {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
}

/* Resource Archive Grid */
.page-resources {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem;
}

.page-resources .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 1100px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

/* Resource Cards */
.page-resources .wp-block-post {
    background: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid var(--gray-200) !important;
    overflow: hidden !important;
    transition: all 0.3s ease;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.page-resources .wp-block-post:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.page-resources .wp-block-post .wp-block-post-featured-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    margin: 0 !important;
}

.page-resources .wp-block-post .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.3s ease;
}

.page-resources .wp-block-post:hover .wp-block-post-featured-image img {
    transform: scale(1.03);
}

/* Resource card type badge */
.page-resources .wp-block-post .resource-card-type,
.page-resources .wp-block-post .wp-block-post-terms {
    padding: 1rem 1.25rem 0 !important;
    margin: 0 !important;
}

.page-resources .wp-block-post .resource-card-type a,
.page-resources .wp-block-post .wp-block-post-terms a {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-500);
    background: #fff7ed;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
}

.page-resources .wp-block-post .wp-block-post-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--black) !important;
    margin-bottom: 0.4rem !important;
    padding: 0.5rem 1.25rem 0 !important;
}

.page-resources .wp-block-post .wp-block-post-title a {
    text-decoration: none;
    color: inherit;
}

.page-resources .wp-block-post .wp-block-post-excerpt {
    font-size: 0.8rem !important;
    color: var(--gray-500) !important;
    line-height: 1.4 !important;
    margin-bottom: 1.25rem !important;
    padding: 0 1.25rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-resources .wp-block-post .wp-block-post-excerpt__excerpt {
    margin-bottom: 0;
}

.page-resources .wp-block-post .wp-block-post-excerpt__more-link {
    display: none;
}

/* ============================================
   Single Resource Page
   ============================================ */

.resource-single-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 0.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
}

.resource-single-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--orange-500);
    margin: 0;
}

/* Constrain resource page like blog/homepage */
.page-single-resource {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Full width resource layout (default, no sidebar) */
.resource-single-layout-full {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* Two-column: content + sidebar (85/15) */
.resource-single-layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    align-items: start;
}

/* Resource Content - matches blog post styling */
.resource-single-content {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-800);
    min-width: 0;
}

.resource-single-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--purple-700);
    line-height: 1.3;
}

.resource-single-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--black);
    line-height: 1.3;
}

.resource-single-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: var(--black);
}

.resource-single-content p {
    margin-bottom: 1.5rem;
}

.resource-single-content blockquote {
    border-left: 4px solid var(--purple-500);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--purple-50);
    border-radius: 0 16px 16px 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    position: relative;
}

.resource-single-content blockquote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--purple-300);
    position: absolute;
    top: -0.25rem;
    left: 0.75rem;
    line-height: 1;
}

.resource-single-content blockquote p {
    margin-bottom: 0;
}

.resource-single-content ul,
.resource-single-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.resource-single-content li {
    margin-bottom: 0.5rem;
}

.resource-single-content a {
    color: var(--purple-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.resource-single-content a:hover {
    color: var(--purple-700);
}

.resource-single-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.resource-single-content .wp-block-image figcaption {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

.resource-featured-image {
    margin-bottom: 2rem !important;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
}

.resource-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
/* Resource Sidebar */
.resource-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
}

.resource-type-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background: #fff7ed;
    color: var(--orange-500);
}

.resource-type-badge.e-book,
.resource-type-badge.white-paper,
.resource-type-badge.report {
    background: var(--purple-50);
    color: var(--purple-600);
}

/* Resource Stats */
.resource-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.resource-stat {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.resource-stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--orange-500);
}

.resource-stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
/* ============================================
   Resources Responsive
   ============================================ */

@media (max-width: 1024px) {
    .resource-single-layout {
        grid-template-columns: 1fr;
    }

    .resource-sidebar {
        position: static;
    }

    .page-resources .wp-block-post-template {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .resource-hero {
        padding: 1.5rem 1.5rem;
    }

    .page-resources .wp-block-post-template {
        grid-template-columns: 1fr !important;
    }

    .resource-single-layout {
        padding: 1.5rem;
    }
}

/* Resource Grid (PHP-rendered) */
.resource-grid-section {
    padding: 0 2rem 4rem;
}

.resource-grid-container {
    max-width: 1100px;
    margin: 0 auto;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Hide empty <p> tags injected by wpautop between grid cards */
.resource-grid > p:empty,
.resource-grid > p:not([class]) {
    display: none !important;
}

.resource-grid-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.resource-grid-card-image {
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-grid-card-gradient {
    background: linear-gradient(135deg, var(--purple-50), #fff7ed);
}

.resource-grid-card-icon {
    opacity: 0.4;
}

.resource-grid-card .resource-grid-card-type {
    margin: 1rem 1rem 0.5rem;
    align-self: flex-start;
}

.resource-grid-card .resource-grid-card-title {
    padding: 0 1rem 1rem;
}

.resource-grid-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.resource-grid-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.resource-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-grid-card:hover .resource-grid-card-image img {
    transform: scale(1.03);
}
.resource-grid-card-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-500);
    background: #fff7ed;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
    text-align: left;
}

.resource-grid-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 0.4rem;
}
.resource-no-results {
    text-align: center;
    color: var(--gray-500);
    padding: 3rem 0;
}

/* Resource Pagination */
.resource-pagination {
    margin: 3rem 0 0;
}

.resource-pagination ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-pagination li {
    display: inline-flex;
}

.resource-pagination a,
.resource-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.resource-pagination a:hover {
    background: var(--purple-50);
    border-color: var(--purple-300);
    color: var(--purple-600);
}

.resource-pagination .current {
    background: var(--purple-600) !important;
    color: var(--white) !important;
    border-color: var(--purple-600) !important;
}

.resource-pagination .prev,
.resource-pagination .next {
    padding: 0 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-grid-section {
        padding: 0 1.5rem 3rem;
    }
}

/* ============================================
   Standard Pages (Capabilities, About, etc.)
   ============================================ */

.page-standard {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.capabilities-page {
    padding: 4rem 4rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 60%);
}

.capabilities-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.capabilities-hero-inner h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1rem;
}

.capabilities-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.capabilities-content {
    padding: 4rem 2rem;
    text-align: center;
}

.capabilities-content.alt-bg {
    background: var(--gray-50);
}

.capabilities-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.capabilities-content > .section-inner > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.capabilities-content blockquote {
    border-left: 3px solid var(--purple-500);
    padding: 1.25rem 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    background: var(--purple-50);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--gray-700);
    text-align: left;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.leader-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.leader-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}
/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.news-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
}
/* Roles List */
.roles-list {
    max-width: 700px;
    margin: 0 auto;
}

.roles-list .role-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.roles-list .role-card:hover {
    border-color: var(--purple-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.role-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.role-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Greenhouse Job Detail Content */
.greenhouse-job-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    text-align: left;
}

.greenhouse-job-content h2,
.greenhouse-job-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--purple-700);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.greenhouse-job-content h2 {
    font-size: 1.35rem;
}

.greenhouse-job-content h3 {
    font-size: 1.1rem;
}

.greenhouse-job-content p {
    margin-bottom: 1rem;
}

.greenhouse-job-content ul,
.greenhouse-job-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.greenhouse-job-content li {
    margin-bottom: 0.5rem;
}

.greenhouse-job-content strong,
.greenhouse-job-content b {
    font-weight: 700;
    color: var(--black);
}

.greenhouse-embed {
    max-width: 800px;
    margin: 0 auto;
}

.greenhouse-embed iframe {
    width: 100%;
    min-height: 900px;
    border: none;
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */

.legal-page {
    padding: 4rem 4rem 2rem;
    text-align: center;
    background: var(--gray-50);
}

.legal-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.legal-content {
    padding: 3rem 2rem 4rem;
}

.legal-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.legal-inner h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2.5rem 0 0.75rem;
    color: var(--black);
}

.legal-inner p {
    margin-bottom: 1rem;
}

/* ============================================
   Enhanced Page Components
   ============================================ */

/* Stats Section */
.cap-stats-section {
    padding: 3rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.cap-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cap-stat {
    text-align: center;
}

.cap-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-600);
    line-height: 1.1;
}

.cap-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    max-width: 180px;
}

/* Compact variant — fits 4 stats in one row */
.cap-stats-section.compact {
    padding: 2rem 2rem;
}

.cap-stats-section.compact .cap-stats-row {
    gap: 2.5rem;
    flex-wrap: nowrap;
}

.cap-stats-section.compact .cap-stat-number {
    font-size: 1.6rem;
}

.cap-stats-section.compact .cap-stat-label {
    font-size: 0.78rem;
    max-width: 150px;
}

/* Card Grid */
.cap-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.cap-cards-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.cap-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.cap-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cap-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cap-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cap-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Agent Cards */
.cap-agents-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.cap-agents-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cap-agents-section .section-tag {
    color: var(--orange-500);
}

.cap-agents-section .section-subtitle {
    color: var(--gray-600);
}

.cap-agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    text-align: left;
}

.cap-agent-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.cap-agent-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cap-agent-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cap-agent-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cap-agent-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* D&I Section */
.cap-di-section {
    padding: 4rem 2rem;
    background: var(--purple-50);
    text-align: center;
}

.cap-di-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cap-di-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    text-align: left;
}

.cap-di-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
}

.cap-di-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cap-di-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cap-di-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Problem Section */
.cap-problem-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.cap-problem-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.cap-problem-stat {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.cap-problem-stat .cap-stat-number {
    color: var(--orange-500);
}

.cap-problem-stat .cap-stat-label {
    max-width: none;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Platform Section */
.cap-platform-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
    text-align: center;
}

.cap-platform-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cap-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
}

.cap-platform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cap-platform-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin: 0.75rem 0 0.5rem;
}

.cap-platform-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cap-platform-card .recruit-feature-checks {
    margin-bottom: 1.5rem;
}

/* Social Proof / Badges */
.cap-social-proof {
    padding: 4rem 2rem;
    background: var(--gray-50);
    text-align: center;
}

.cap-social-proof h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.cap-badges-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cap-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 140px;
}

.cap-badge span {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-align: center;
}

/* Quote Section */
.cap-quote-section {
    padding: 3rem 2rem;
    background: var(--purple-50);
    text-align: center;
}

.cap-blockquote {
    max-width: 700px;
    margin: 0 auto;
    border: none;
    background: none;
}

.cap-blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.cap-blockquote cite {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
    font-style: normal;
}

/* Testimonials Grid */
.cap-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.cap-testimonials-grid .recruit-testimonial-card {
    text-align: left;
}

/* Newsroom */
.newsroom-content {
    padding: 3rem 2rem 4rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    display: block;
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.news-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--purple-100);
    color: var(--purple-600);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Section Tag (reusable) */
.capabilities-content .section-tag,
.cap-problem-section .section-tag,
.cap-platform-section .section-tag,
.cap-social-proof .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple-500);
    margin-bottom: 0.75rem;
}

/* Section Subtitle (reusable) */
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cap-di-section .section-subtitle {
    color: var(--gray-500);
}

/* CTA Buttons Row */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button outline variant */
.btn-outline {
    background: transparent;
    color: var(--purple-600);
    border: 2px solid var(--purple-600);
}

.btn-outline:hover {
    background: var(--purple-600);
    color: var(--white);
}

/* Contact Page */
.contact-page {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 60%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-detail h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.contact-social a:hover {
    background: var(--purple-600);
    color: white;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Release Notes */
.release-notes-year {
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.release-notes-year:first-of-type {
    padding-top: 2rem;
}

.release-notes-year h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.release-notes-year .faq-list {
    margin-bottom: 2.5rem;
}

.release-notes-year .faq-item {
    border-bottom: 1px solid var(--gray-200);
    border-top: none;
}

.release-notes-year .faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.release-notes-year .faq-trigger {
    font-size: 1rem;
    padding: 1.25rem 0;
}

.release-notes-year .faq-answer {
    padding-bottom: 0;
}

.release-notes-year .faq-answer.open {
    padding-bottom: 1.5rem;
}

.release-notes-year .faq-answer h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-600);
    margin: 1.25rem 0 0.5rem;
}

.release-notes-year .faq-answer h3:first-child {
    margin-top: 0.25rem;
}

.release-notes-year .faq-answer p {
    font-size: 0.9rem;
    padding-bottom: 0.75rem;
}

.release-notes-year .faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.release-notes-year .faq-answer li {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .release-notes-year {
        padding: 0 1.5rem;
    }

    .release-notes-year .faq-trigger {
        font-size: 0.9rem;
    }
}

/* Security Page */
.security-content {
    text-align: left;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.security-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.security-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.security-item a {
    color: var(--purple-600);
}

.security-trust-link {
    text-align: center;
    margin-top: 3rem;
}

.legal-inner .security-trust-link a.btn {
    color: #fff;
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal page tables */
.legal-inner table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
    font-size: 0.9rem;
}

.legal-inner td,
.legal-inner th {
    border: 1px solid var(--gray-300);
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.legal-inner th {
    background: var(--gray-100);
    font-weight: 600;
}

.legal-inner ul,
.legal-inner ol {
    padding-left: 2em;
    margin-bottom: 1rem;
}

.legal-inner a {
    color: var(--purple-600);
}

/* ============================================
   Standard Pages Responsive
   ============================================ */

@media (max-width: 1024px) {
    .capabilities-page {
        padding: 3rem 2rem 2rem;
    }

    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .case-studies-grid,
    .news-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cap-cards-grid,
    .cap-cards-grid.four-col,
    .cap-agent-grid,
    .cap-di-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cap-platform-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cap-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cap-stats-row {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .capabilities-page {
        padding: 3rem 1.5rem 2rem;
    }

    .capabilities-content {
        padding: 3rem 1.5rem 4rem;
    }

    .leadership-grid,
    .case-studies-grid,
    .news-grid,
    .partners-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cap-cards-grid,
    .cap-cards-grid.four-col,
    .cap-agent-grid,
    .cap-di-grid {
        grid-template-columns: 1fr;
    }

    .cap-stats-row {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: space-around;
    }

    .cap-stat-number {
        font-size: 1.5rem;
    }

    .cap-stat-label {
        font-size: 0.75rem;
    }

    .cap-badges-row {
        gap: 1.5rem;
    }

    .legal-page {
        padding: 3rem 1.5rem 1.5rem;
    }

    .legal-content {
        padding: 2rem 1.5rem 3rem;
    }

    .legal-inner table {
        display: block;
        overflow-x: auto;
    }

    .newsroom-content {
        padding: 2rem 1.5rem 3rem;
    }
}

/* Mobile Menu Fix */
  .mobile-menu.active {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
  }

  @media (max-width: 768px) {
      .hero {
          padding-top: 2rem !important;
      }
  }
 
/* Mobile hero spacing */
  @media (max-width: 1024px) {
      .hero {
          padding-top: 10px !important;
      }
  }

  /* iPad portrait: 100vh + vertical centering creates oversized gaps above and below the content */
  @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
      .hero {
          min-height: auto !important;
          justify-content: flex-start !important;
          padding-top: 3rem !important;
          padding-bottom: 3rem !important;
      }
  }

/* Role cards stack on mobile */
  @media (max-width: 768px) {
      .role-cards {
          grid-template-columns: 1fr !important;
          max-width: 100% !important;
          padding: 0 1rem;
      }
  }

/* Mobile dropdown fix */
.mobile-nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-section.active .mobile-nav-dropdown,
.mobile-nav-section.open .mobile-nav-dropdown {
    max-height: 500px !important;
    overflow: visible !important;
    display: block !important;
}

.mobile-nav-header {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-section.active .mobile-nav-chevron,
.mobile-nav-section.open .mobile-nav-chevron {
    transform: rotate(180deg);
}

/* About Us - Awards Grid */
.about-awards {
    padding: 3rem 2rem;
    text-align: center;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 2rem auto 0;
}

.award-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.award-item img:hover {
    opacity: 1;
}

/* About Us - Leadership Grid with Photos */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.leader-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.leader-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.leader-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Large leadership cards */
.leadership-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
}

.leader-card-large {
    padding: 2rem 1.5rem;
}

.leader-photo-large {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
}

.leader-card-large h4 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.leader-card-large p {
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-grid,
    .leadership-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-photo-large {
        width: 110px;
        height: 110px;
    }

    .awards-grid {
        gap: 2rem;
    }

    .award-item img {
        height: 45px;
    }
}

/* Customer Stories / Partners Grid */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.customer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.customer-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: var(--purple-300);
}

.customer-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    width: 100%;
}

.customer-logo img {
    max-height: 56px;
    max-width: 180px;
    object-fit: contain;
}

.customer-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}

.customer-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-600);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.customer-card:hover .customer-link {
    color: var(--purple-700);
}

/* Reduce space between hero and grid */
.capabilities-content .section-inner > .customer-grid {
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .customer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Solutions Spot - Dark/Light Sections
   ============================================ */

.spot-dark-section {
    background: linear-gradient(135deg, #1e1832 0%, #2d2440 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.spot-dark-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

/* Section tag on dark backgrounds */
.spot-dark-section .section-tag {
    background: transparent !important;
    color: var(--orange-300) !important;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

/* Spot Value Cards (dark bg) */
.spot-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.spot-value-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spot-value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.spot-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.spot-value-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.spot-value-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Spot Timeline Section */
/* Spot Timeline with connecting line */
.spot-timeline-section {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--white);
}

.spot-timeline-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.spot-timeline-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line behind the dots — default tuned for 5-step timelines (circles at 10%/30%/50%/70%/90%) */
.spot-timeline-grid::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--purple-400));
    z-index: 0;
}

/* 3-step variant (e.g. spot-for-startups): circles sit at 16.67%/50%/83.33%, so line spans edge of circle 1 to edge of circle 3 */
.spot-timeline-grid--three::before {
    left: calc(16.6667% + 24px);
    right: calc(16.6667% + 24px);
}

.spot-timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.spot-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--orange-200);
    position: relative;
    z-index: 2;
}

.spot-step-day {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-500);
    margin-bottom: 0.35rem;
}

.spot-timeline-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.spot-timeline-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Spot Models (dark bg) */
.spot-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.spot-model-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spot-model-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.spot-model-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange-400);
    background: rgba(249, 115, 22, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.spot-model-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.spot-model-card > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.spot-model-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.spot-model-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.spot-model-card li svg {
    flex-shrink: 0;
}

/* Spot page responsive */
@media (max-width: 1024px) {
    .spot-values-grid,
    .spot-models-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spot-timeline-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .spot-values-grid,
    .spot-models-grid {
        grid-template-columns: 1fr;
    }

    .spot-dark-section {
        padding: 3rem 1.5rem;
    }

    .spot-timeline-section {
        padding: 3rem 1.5rem;
    }

    .spot-timeline-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding-left: 2rem;
    }

    .spot-timeline-grid::before {
        top: 24px;
        bottom: calc(2rem + 24px);
        left: calc(2rem + 23px);
        right: auto;
        width: 3px;
        height: auto;
    }

    .spot-timeline-step {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 1rem;
        row-gap: 0.15rem;
        text-align: left;
        padding: 0;
        width: 100%;
    }

    .spot-step-number {
        grid-row: 1 / 4;
        grid-column: 1;
        position: relative;
        left: auto;
        margin: 0;
    }

    .spot-step-day {
        grid-column: 2;
        margin-bottom: 0;
    }

    .spot-timeline-step h4 {
        grid-column: 2;
        margin-bottom: 0;
    }

    .spot-timeline-step p {
        grid-column: 2;
    }
}

/* ============================================
   Solutions Recruit - Sections
   ============================================ */

/* Recruit value props row */
.recruit-values-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.recruit-values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.recruit-vp-card {
    padding: 1.5rem;
}

.recruit-vp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--purple-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.recruit-vp-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recruit-vp-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Recruit alternating feature rows */
.recruit-feature-row {
    padding: 4rem 2rem;
    background: var(--white);
}

.recruit-feature-row.alt {
    background: var(--gray-50);
}

.recruit-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.recruit-feature-inner.reverse {
    direction: rtl;
}

.recruit-feature-inner.reverse > * {
    direction: ltr;
}

.recruit-feature-text h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.recruit-feature-text > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.recruit-feature-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recruit-feature-checks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.recruit-feature-checks li svg {
    flex-shrink: 0;
}

/* Feature visual mockup card */
.recruit-feature-visual {
    display: flex;
    justify-content: center;
}
.recruit-feature-row.alt .recruit-mockup {
    background: var(--white);
}
/* Recruit feature mockups */
.recruit-feature-visual .ui-mockup {
    max-width: 100%;
}

/* Recruit testimonial */
.recruit-testimonial {
    padding: 4rem 2rem;
    background: var(--purple-50);
    text-align: center;
}

.recruit-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.recruit-testimonial blockquote,
.recruit-testimonial-card blockquote {
    margin: 0;
    padding: 0;
    margin-bottom: 1.5rem;
    border: none;
    background: none;
}

.recruit-testimonial blockquote p,
.recruit-testimonial-card blockquote p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.65;
}

.recruit-testimonial-author {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
    font-style: normal;
}
/* Workspaces section - purple accent */
.recruit-workspaces-section {
    padding: 5rem 2rem;
    background: var(--purple-50);
}

.recruit-ws-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.recruit-ws-text {
    text-align: left;
}

.recruit-ws-text .product-badge {
    margin-bottom: 1rem;
}

.recruit-ws-text h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.recruit-ws-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.recruit-ws-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recruit-ws-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.recruit-ws-checklist li svg {
    flex-shrink: 0;
}

.recruit-ws-visual .ui-mockup {
    max-width: 100%;
}

/* Legacy recruit workspaces classes */
.recruit-workspaces-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}
/* Recruit page responsive */
@media (max-width: 1024px) {
    .recruit-feature-inner,
    .recruit-feature-inner.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .recruit-values-row {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .recruit-ws-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .recruit-ws-text {
        text-align: center;
    }

    .recruit-ws-checklist {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .recruit-feature-row {
        padding: 3rem 1.5rem;
    }}.hero-stats-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    justify-content: center;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.hero-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-600);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.compare-table-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.compare-table thead {
    background: var(--gray-900);
    color: #fff;
}
.compare-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}
.compare-table th:first-child {
    width: 20%;
}
.compare-table th:nth-child(2),
.compare-table th:nth-child(3) {
    width: 40%;
}
.compare-table th.highlight {
    background: var(--purple-500);
    color: #fff;
}
.compare-table td {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: top;
    line-height: 1.5;
}
.compare-table td.highlight {
    background: #faf5ff;
    font-weight: 500;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.cap-cards-2col {
    grid-template-columns: repeat(2, 1fr);
}
.cap-cards-3col {
    grid-template-columns: repeat(3, 1fr);
}
.cap-dual-product {
    padding-bottom: 4rem;
}
.cap-dual-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.testimonial-card-light {
    background: #fff;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card-light .testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial-author-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-author-row strong {
    font-size: 0.85rem;
    color: var(--gray-900);
}
.testimonial-author-row span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Awards Grid */
.cap-awards-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.award-badge {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
}
.award-badge strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

/* Product badge (Recruit/Spot) */
.product-badge.spot {
    background: var(--orange-50, #fff7ed);
    color: var(--orange-500);
}

/* Responsive for new components */
@media (max-width: 768px) {
    .hero-stats-row {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .hero-stat-num {
        font-size: 1.5rem;
    }
    .cap-cards-2col,
    .cap-cards-3col {
        grid-template-columns: 1fr;
    }
    .cap-dual-ctas {
        flex-direction: column;
        align-items: center;
    }
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .compare-table {
        font-size: 0.8rem;
    }
    .compare-table th,
    .compare-table td {
        padding: 0.625rem 0.75rem;
    }
}

/* ============================================
   MCP Page Styles
   ============================================ */

/* MCP Hero Background Orbs */
.mcp-hero {
    position: relative;
    overflow: hidden;
}

.mcp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mcp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.mcp-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-400);
    top: -100px;
    right: -100px;
    animation: mcpFloat 8s ease-in-out infinite;
}

.mcp-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--orange-400);
    bottom: -50px;
    left: -50px;
    animation: mcpFloat 10s ease-in-out infinite reverse;
}

.mcp-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--purple-600);
    top: 50%;
    left: 60%;
    animation: mcpFloat 12s ease-in-out infinite 2s;
}

@keyframes mcpFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.mcp-hero .capabilities-hero-inner {
    position: relative;
    z-index: 1;
}

/* MCP Step Badge */
.mcp-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-600);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* MCP Chat Mockup */
.mcp-chat-mockup {
    gap: 10px;
}

.mcp-chat-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.mcp-chat-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-av {
    background: var(--gray-200);
    color: var(--gray-600);
}

.ai-av {
    background: var(--purple-100);
    color: var(--purple-600);
}

.mcp-chat-bubble {
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.5;
    max-width: calc(100% - 36px);
}

.user-bubble {
    background: var(--gray-100);
    color: var(--gray-700);
}

.ai-bubble {
    background: var(--purple-50);
    color: var(--gray-700);
    border: 1px solid var(--purple-100);
}

.mcp-tool-call {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--purple-500);
    font-weight: 600;
    margin-bottom: 6px;
    padding: 3px 8px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--purple-200);
}

.mcp-result-cards {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.mcp-result-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 6px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--gray-100);
}

.mcp-res-avatar {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: 700;
    flex-shrink: 0;
}

.mcp-res-info { flex: 1; min-width: 0; }

.mcp-res-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 10px;
}

.mcp-res-title {
    color: var(--gray-500);
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mcp-res-score {
    font-weight: 700;
    color: var(--purple-600);
    font-size: 11px;
    flex-shrink: 0;
}

/* MCP Workflow Mockup */
.mcp-workflow-mockup {
    gap: 6px;
}

.mcp-wf-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.mcp-wf-step.completed {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.mcp-wf-step.active {
    background: var(--purple-50);
    border-color: var(--purple-200);
}

.mcp-wf-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray-400);
}

.mcp-wf-step.completed .mcp-wf-icon {
    background: #dcfce7;
    color: #16a34a;
}

.mcp-wf-step.active .mcp-wf-icon {
    background: var(--purple-100);
    color: var(--purple-600);
}

.mcp-wf-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mcp-wf-label {
    font-weight: 600;
    font-size: 11px;
    color: var(--gray-700);
}

.mcp-wf-detail {
    font-size: 9px;
    color: var(--gray-500);
}

.mcp-wf-step.active .mcp-wf-label { color: var(--purple-700); }
.mcp-wf-step.active .mcp-wf-detail { color: var(--purple-500); }
.mcp-wf-step.completed .mcp-wf-label { color: #15803d; }
.mcp-wf-step.completed .mcp-wf-detail { color: #16a34a; }

.mcp-wf-status {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcp-wf-status.done {
    background: #22c55e;
    color: white;
}

.mcp-wf-status.running {
    width: 14px;
    height: 14px;
    border: 2px solid var(--purple-300);
    border-top-color: var(--purple-600);
    animation: mcpSpin 1s linear infinite;
}

@keyframes mcpSpin {
    to { transform: rotate(360deg); }
}

/* MCP Data Sources — compact 2-col rows */
.mcp-sources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.mcp-source-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mcp-source-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.mcp-source-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mcp-source-text { flex: 1; min-width: 0; }

.mcp-source-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.mcp-source-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}

.mcp-source-stat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--purple-600);
    margin-top: 0.35rem;
}

/* MCP AI Assistant Cards */
.mcp-assistants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mcp-assistant-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.mcp-assistant-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.mcp-assistant-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mcp-assistant-icon.claude {
    background: linear-gradient(135deg, #d4a574, #c6956a);
    color: white;
}

.mcp-assistant-icon.chatgpt {
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    color: white;
}

.mcp-assistant-icon.gemini {
    background: linear-gradient(135deg, #4285f4, #669df6);
    color: white;
}

.mcp-assistant-icon.copilot {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
}

.mcp-assistant-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.mcp-assistant-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.mcp-assistant-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--gray-100);
    color: var(--gray-500);
}

.mcp-assistant-card:first-child .mcp-assistant-tag {
    background: var(--purple-100);
    color: var(--purple-600);
}

/* MCP Analysis Mockup */
.mcp-analysis-mockup {
    gap: 8px;
}

.mcp-analysis-header {
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.mcp-analysis-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mcp-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.mcp-bar-label {
    width: 40px;
    color: var(--gray-600);
    font-weight: 500;
    flex-shrink: 0;
    font-size: 10px;
}

.mcp-bar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.mcp-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.mcp-bar-value {
    width: 40px;
    text-align: right;
    font-weight: 700;
    color: var(--gray-700);
    font-size: 10px;
    flex-shrink: 0;
}

.mcp-analysis-insight {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: var(--purple-50);
    border-radius: 6px;
    border-left: 3px solid var(--purple-500);
    margin-top: 2px;
}

.mcp-analysis-insight span {
    font-size: 10px;
    color: var(--purple-700);
    font-weight: 600;
}

/* ============================================
   SAM Page Styles
   ============================================ */

/* SAM Hero Background */
.sam-hero {
    position: relative;
    overflow: hidden;
}

.sam-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sam-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.sam-orb-1 {
    width: 350px;
    height: 350px;
    background: var(--purple-500);
    top: -80px;
    left: -80px;
    animation: mcpFloat 9s ease-in-out infinite;
}

.sam-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--orange-400);
    bottom: -60px;
    right: -60px;
    animation: mcpFloat 11s ease-in-out infinite reverse;
}

.sam-hero .capabilities-hero-inner {
    position: relative;
    z-index: 1;
}

/* SAM Stack Mockup */
.sam-stack-mockup {
    gap: 8px;
}

.sam-stack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.sam-stack-role {
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-700);
}

.sam-stack-count {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 600;
}

.sam-stack-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sam-stack-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.sam-stack-item.reviewed {
    background: #f0fdf4;
}

.sam-stack-item.pending {
    background: #fef9c3;
}

.sam-stack-item.lost {
    background: #fef2f2;
}

.sam-stack-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0.15;
}

.sam-stack-item.reviewed .sam-stack-bar { background: #22c55e; }
.sam-stack-item.pending .sam-stack-bar { background: #eab308; }
.sam-stack-item.lost .sam-stack-bar { background: #ef4444; }

.sam-stack-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    z-index: 1;
    flex: 1;
}

.sam-stack-num {
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.sam-stack-item.reviewed .sam-stack-num { color: #16a34a; }
.sam-stack-item.pending .sam-stack-num { color: #ca8a04; }
.sam-stack-item.lost .sam-stack-num { color: #dc2626; }

.sam-stack-alert {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #fef2f2;
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

.sam-stack-alert span {
    font-size: 10px;
    color: #991b1b;
    font-weight: 600;
}

/* SAM Step Badge (for How it Works cards) */
.sam-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* SAM Evaluation Mockup */
.sam-eval-mockup {
    gap: 8px;
}

.sam-eval-candidate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--gray-50);
    border-radius: 8px;
}

.sam-eval-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.sam-eval-info { flex: 1; min-width: 0; }

.sam-eval-name {
    font-weight: 700;
    font-size: 12px;
    color: var(--gray-800);
}

.sam-eval-title {
    font-size: 10px;
    color: var(--gray-500);
}

.sam-eval-overall {
    flex-shrink: 0;
}

.sam-eval-score-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
}

.sam-eval-scores {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sam-eval-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-600);
}

.sam-eval-row span:first-child {
    width: 90px;
    flex-shrink: 0;
    font-size: 10px;
}

.sam-eval-reason {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 8px;
    background: var(--purple-50);
    border-radius: 6px;
    border-left: 3px solid var(--purple-500);
}

.sam-eval-reason svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.sam-eval-reason span {
    font-size: 10px;
    color: var(--gray-600);
    line-height: 1.4;
}
/* SAM Pipeline Mockup */
.sam-pipeline-mockup {
    gap: 8px;
}

.sam-pipeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.sam-pipeline-sources {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}

.sam-source-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
}

.sam-source-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sam-source-label {
    width: 105px;
    color: var(--gray-600);
    flex-shrink: 0;
    font-size: 10px;
}

.sam-source-bar {
    flex: 1;
    height: 6px;
    background: var(--gray-100);
    border-radius: 3px;
    overflow: hidden;
}

.sam-source-fill {
    height: 100%;
    border-radius: 3px;
}

.sam-source-num {
    font-weight: 700;
    color: var(--gray-700);
    width: 20px;
    text-align: right;
    font-size: 11px;
    flex-shrink: 0;
}

.sam-pipeline-candidates {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
    border-top: 1px solid var(--gray-100);
}

/* Responsive - MCP & SAM */
@media (max-width: 900px) {
    .cap-stats-section.compact .cap-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .mcp-sources-grid {
        grid-template-columns: 1fr;
    }

    .mcp-assistants-grid,
    .sam-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mcp-assistants-grid,
    .sam-pillars-grid {
        grid-template-columns: 1fr;
    }

    .mcp-orb-1, .mcp-orb-2, .mcp-orb-3,
    .sam-orb-1, .sam-orb-2 {
        display: none;
    }

    .cap-stats-section.compact .cap-stat-number {
        font-size: 1.3rem;
    }
}

/* ==============================
   Chrome Extension Page
   ============================== */

.chrome-ext-hero {
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 40%, #f3e8ff 100%);
}

.chrome-ext-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.chrome-ext-hero-text .capabilities-subtitle {
    text-align: left;
}

.chrome-ext-hero-text .cta-buttons {
    justify-content: flex-start;
}

.chrome-btn {
    display: inline-flex;
    align-items: center;
}

/* Browser mockup in hero */
.chrome-ext-browser-mockup {
    user-select: none;
    -webkit-user-select: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px -15px rgba(124,58,237,0.15), 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.chrome-ext-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.chrome-ext-dots {
    display: flex;
    gap: 4px;
}

.chrome-ext-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.chrome-ext-dots span:first-child { background: #ef4444; }
.chrome-ext-dots span:nth-child(2) { background: #f59e0b; }
.chrome-ext-dots span:nth-child(3) { background: #22c55e; }

.chrome-ext-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    font-size: 0.65rem;
    color: var(--gray-500);
}

.chrome-ext-extension-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-50);
    border-radius: 6px;
}

.chrome-ext-browser-content {
    padding: 1rem;
}

.chrome-ext-search-result {
    margin-bottom: 0.75rem;
}

.chrome-ext-result-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-700);
}

.chrome-ext-result-url {
    font-size: 0.65rem;
    color: var(--green-600);
}

/* SeekOut overlay popup in mockup */
.chrome-ext-seekout-overlay {
    background: #fff;
    border: 1px solid var(--purple-200);
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(124,58,237,0.1);
}

.chrome-ext-overlay-header {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--purple-600);
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--gray-100);
}

.chrome-ext-overlay-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.chrome-ext-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.chrome-ext-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gray-800);
}

.chrome-ext-title {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.chrome-ext-overlay-skills {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.chrome-ext-skill {
    font-size: 0.6rem;
    padding: 2px 8px;
    background: var(--purple-50);
    color: var(--purple-700);
    border-radius: 10px;
    font-weight: 500;
}

.chrome-ext-overlay-actions {
    display: flex;
    gap: 0.4rem;
}

.chrome-ext-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--gray-50);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.chrome-ext-action-btn.highlight {
    background: var(--purple-600);
    color: #fff;
    border-color: var(--purple-600);
}

/* Enhanced search result in feature row */
.chrome-ext-enhanced-result {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}

.chrome-ext-enhanced-result:first-of-type {
    border-color: var(--purple-200);
    background: var(--purple-50);
}

.chrome-ext-er-left {
    flex: 1;
}

.chrome-ext-er-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.chrome-ext-er-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
}

/* Contact info rows */
.chrome-ext-contact-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.chrome-ext-contact-row:last-child {
    border-bottom: none;
}

.chrome-ext-contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 8px;
    flex-shrink: 0;
}

.chrome-ext-contact-detail {
    flex: 1;
}

.chrome-ext-contact-copy {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-50);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Project list items */
.chrome-ext-project-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: background 0.15s;
}

.chrome-ext-project-item.active {
    background: var(--purple-50);
    border: 1px solid var(--purple-200);
}

.chrome-ext-project-item:not(.active) {
    border: 1px solid var(--gray-100);
}

/* CTA icon */
.chrome-ext-cta-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    .chrome-ext-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chrome-ext-hero-text .capabilities-subtitle {
        text-align: center;
    }

    .chrome-ext-hero-text .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .chrome-ext-overlay-actions {
        flex-direction: column;
    }
}

/* Osano Cookie Widget */
.osano-cm-widget { display: none !important; }

/* ============================================================
   FAQ Accordion (auto-appended to blog posts & resources)
   ============================================================ */
.seekout-faq-section {
    margin: 3rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.seekout-faq-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

.seekout-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seekout-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.seekout-faq-item[open] {
    border-color: #7c3aed;
}

.seekout-faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s ease;
}

.seekout-faq-question:hover {
    color: #7c3aed;
}

.seekout-faq-question::-webkit-details-marker {
    display: none;
}

.seekout-faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.seekout-faq-item[open] .seekout-faq-question::after {
    content: '\2212';
    color: #7c3aed;
}

.seekout-faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

@media (max-width: 768px) {
    .seekout-faq-heading {
        font-size: 1.25rem;
    }
    .seekout-faq-question {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    .seekout-faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* ---- Related Posts Section ---- */
.seekout-related-section {
    margin: 2.5rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.seekout-related-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.seekout-related-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seekout-related-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.seekout-related-link:hover {
    border-color: #7c3aed;
    background-color: #faf5ff;
}

.seekout-related-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7c3aed;
    background: #f3e8ff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.seekout-related-product .seekout-related-type {
    color: #fff;
    background: #7c3aed;
}

.seekout-related-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

.seekout-related-link:hover .seekout-related-title {
    color: #7c3aed;
}

@media (max-width: 768px) {
    .seekout-related-heading {
        font-size: 1.1rem;
    }
    .seekout-related-link {
        padding: 0.625rem 0.75rem;
    }
    .seekout-related-title {
        font-size: 0.9rem;
    }
}
