/*
Theme Name: TheRevOpsGuide
Theme URI: https://therevopsguide.com
Author: The RevOps Guide LLC
Author URI: https://therevopsguide.com
Description: Revenue operations consulting — operator-first redesign. Clean dark header, single booking CTA, new How I Work / Experience / Methodology / Take Assessment pages. Assessment payment gates removed. All arm CTAs updated to /take-assessment. v9.0 March 2026.
Version: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   COLOR PALETTE - Ocean Blue + Warm Parchment
   v8.1: Blues stay. Backgrounds go warm cream.
   Sections use steel-blue for contrast.
   ============================================ */
:root {
    --primary-blue: #3A6B99;        /* Steel blue — unchanged */
    --primary-blue-dark: #2A5478;   /* Deeper steel blue — unchanged */
    --accent-blue: #62AED8;         /* Sky steel accent — unchanged */
    
    /* V5 Compatibility Aliases */
    --dark-blue: #1C3554;             /* Deep navy — unchanged */
    
    /* OCEAN-PARCHMENT BACKGROUND SYSTEM — v8.1
       3 distinct layers: cream body → white cards → steel-blue sections */
    --background-grey: #F5F0E8;     /* Warm cream body — WAS #ECF0F5 */
    --card-white: #FDFCF9;          /* Near-white warm cards — WAS #FBFBFD */
    --grey-50: #E8EFF6;             /* Steel-blue sections — WAS #F7FAFC */
    --grey-100: #E8EFF6;            /* Steel-blue sections — WAS #F7FAFC */
    --grey-200: #F0EBE0;            /* Warm border/dividers — WAS #EDF2F7 */
    --grey-300: #E0D8CC;            /* Warm medium border — WAS #E2E8F0 */
    --grey-400: #C5D3E2;            /* Steel border for sections — WAS #CBD5E0 */
    --grey-500: #A0AEC0;            /* Text grey — unchanged */
    --grey-600: #718096;            /* Dark text grey — unchanged */
    --grey-700: #4A5568;            /* Very dark grey — unchanged */
    --grey-800: #2D3748;            /* Almost black — unchanged */
    --grey-900: #2D3748;            /* V5 alias — unchanged */
    
    --white: #FFFFFF;
    --success: #48BB78;
    --warning: #ED8936;
    
    /* SHADOW SYSTEM — warmed to match parchment */
    --shadow-sm: 0 2px 4px rgba(120, 100, 70, 0.06);
    --shadow-md: 0 4px 12px rgba(120, 100, 70, 0.10);
    --shadow-lg: 0 8px 24px rgba(58, 107, 153, 0.12);
    --shadow-xl: 0 12px 40px rgba(58, 107, 153, 0.16);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-700);
    background-color: var(--background-grey);
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--card-white);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   HEADER — v8.3
   Parchment background with banner image right,
   logo pinned left. No more blue gradient.
   ============================================ */
.site-header {
    background: var(--dark-blue);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding .custom-logo-link img {
    height: 36px;
    width: auto;
    max-width: 160px;
}

.site-branding h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    color: white;
}

.site-branding h1 a {
    color: white;
    text-decoration: none;
}

.site-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-blue);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-navigation {
    background: var(--card-white);
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 16px 24px;
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--primary-blue);
    background: var(--grey-200);
    border-bottom-color: var(--accent-blue);
}

/* Dropdown menus */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 1000;
    border-top: 2px solid var(--primary-blue);
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--grey-700);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu li a:hover {
    background: var(--grey-200);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    background: var(--card-white);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--grey-300);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(44, 82, 130, 0.1);
}

.page-subtitle {
    font-size: 20px;
    color: var(--grey-600);
    line-height: 1.8;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 40px;
    margin: -60px -30px 60px -30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   DUAL-TRACK SECTIONS
   ============================================ */
.dual-track-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.track-card {
    background: var(--card-white);
    border: 2px solid var(--grey-300);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.track-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.track-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.track-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 16px;
}

.track-description {
    font-size: 16px;
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.track-features {
    list-style: none;
    margin-bottom: 24px;
}

.track-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--grey-700);
}

.track-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.track-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.track-cta:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px) translateY(-2px);
}

/* ============================================
   EXPERIENCE BANNER
   ============================================ */
.experience-banner {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 40px;
    margin: 80px -30px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.experience-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.experience-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.experience-banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--grey-50);
    border-left: 5px solid var(--primary-blue);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.content-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    color: var(--primary-blue-dark);
    margin: 32px 0 16px 0;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 20px;
}

.content-section ul, 
.content-section ol {
    margin: 20px 0 20px 24px;
    color: var(--grey-700);
}

.content-section li {
    margin: 12px 0;
    line-height: 1.8;
}

/* ============================================
   CARDS (For 3-column layouts, etc)
   ============================================ */
.card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.card h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: var(--grey-600);
    line-height: 1.6;
}

/* ============================================
   3-COLUMN GRID
   ============================================ */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.button, 
.wp-block-button__link,
button[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.button-secondary {
    background: linear-gradient(135deg, var(--grey-400) 0%, var(--grey-500) 100%);
    color: var(--white);
}

.button-secondary:hover {
    background: linear-gradient(135deg, var(--grey-500) 0%, var(--grey-600) 100%);
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--grey-300);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    color: var(--grey-700);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--grey-700);
    font-weight: 600;
}

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

/* ============================================
   CONTENT PAGE PATTERNS
   Reusable classes for methodology and content pages
   ============================================ */

/* Page Hero — used by 11+ templates */
.page-hero {
    color: white;
    padding: 80px 20px;
    text-align: center;
}
.page-hero h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page Content wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.page-content h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin: 50px 0 20px;
}
.page-content h3 {
    color: var(--primary-blue-dark);
    font-size: 22px;
    margin: 24px 0 12px;
}
.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 16px;
}
.page-content ul, .page-content ol {
    margin: 16px 0 24px 24px;
    color: var(--grey-700);
}
.page-content li {
    margin: 10px 0;
    line-height: 1.7;
    font-size: 17px;
}

/* Arm Page — base class for 18+ templates */
.arm-page {
    color: var(--grey-700);
}

/* Lead paragraph — emphasized intro text */
.lead-paragraph {
    font-size: 20px !important;
    line-height: 1.8;
    color: var(--grey-700);
}

/* Intro section */
.intro-section {
    margin-bottom: 40px;
}

/* Emphasis text */
.emphasis {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--primary-blue-dark) !important;
}

/* Pattern/Callout Box — highlighted aside */
.pattern-box,
.callout-box {
    background: var(--grey-50);
    border-left: 4px solid var(--primary-blue);
    padding: 30px 35px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Reusable content grids (2-col auto-fit) */
.blame-grid,
.expectation-grid,
.why-matters-grid,
.engine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* Grid items — card-style boxes */
.blame-item,
.expectation-item,
.matter-item,
.goal-item,
.brain-card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 28px;
}
.blame-item h3,
.expectation-item h3,
.matter-item h3,
.goal-item h3,
.brain-card h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}
.blame-item p,
.expectation-item p,
.matter-item p,
.goal-item p,
.brain-card p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.7;
}

/* Stacked content lists (examples, reactions) */
.dysfunction-examples,
.reaction-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}
.example-item,
.reaction-item {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 30px;
}
.example-item h3,
.reaction-item h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}
.example-item p,
.reaction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-700);
}

/* Reality callout — warm amber highlight */
.reality {
    background: #fef3c7;
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 16px;
    color: #78350f;
}

/* Negative/warning text */
.not {
    color: #b91c1c;
    font-style: italic;
    margin-top: 12px;
}

/* Translation/interpretation text */
.translation {
    color: var(--primary-blue);
    font-style: italic;
    margin-top: 12px;
}

/* Realization box — dark emphasis block */
.realization-box {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 30px 0;
}
.realization-box p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 19px !important;
    line-height: 1.8;
}
.realization-box strong {
    color: white;
}

/* Final thought box — amber emphasis */
.final-thought-box {
    background: #fef3c7;
    border-left: 4px solid #b45309;
    padding: 40px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}
.final-thought-box p {
    font-size: 19px;
    color: #78350f;
    line-height: 1.8;
}

/* CTA Box — call to action block */
.cta-box {
    background: var(--grey-50);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}
.cta-box h3 {
    color: var(--primary-blue-dark);
    font-size: 24px;
    margin-bottom: 12px;
}
.cta-box p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Formula box */
.formula-box {
    background: var(--card-white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

/* Button variants for content pages */
.page-content .button,
.cta-box .button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin: 4px 8px;
    transition: opacity 0.2s;
}
.page-content .button:hover,
.cta-box .button:hover {
    opacity: 0.9;
}
.button.primary {
    background: var(--primary-blue);
    color: white;
}
.button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

/* Numbered list with styled counters */
.alternative-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    counter-reset: alt-counter;
}
.alternative-list li {
    counter-increment: alt-counter;
    padding: 20px 20px 20px 60px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-700);
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    margin-bottom: 12px;
}
.alternative-list li::before {
    content: counter(alt-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Arms list — for Imagine the Octopus, Eight Arms */
.arms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* Section break — visual divider */
.section-break {
    border: none;
    border-top: 2px solid var(--grey-300);
    margin: 50px 0;
}

/* Arm navigation — prev/next links at bottom */
.arm-navigation {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    margin-top: 20px;
    border-top: 1px solid var(--grey-300);
}
.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.nav-link:hover {
    text-decoration: underline;
}

/* Engine card — for How It Works page */
.engine-card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.engine-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CONTENT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .page-hero { padding: 60px 20px; }
    .page-hero h1 { font-size: 32px; }
    .page-content { padding: 40px 16px; }
    .page-content h2 { font-size: 26px; }
    .blame-grid,
    .expectation-grid,
    .why-matters-grid,
    .engine-grid,
    .arms-list { grid-template-columns: 1fr; }
    .realization-box { padding: 30px 24px; }
    .final-thought-box { padding: 24px; }
    .cta-box { padding: 24px; }
    .cta-box .button,
    .page-content .button { display: block; margin: 8px 0; text-align: center; }
    .arm-navigation { flex-direction: column; gap: 12px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--grey-800);
    color: var(--grey-300);
    padding: 60px 0 30px 0;
    margin-top: 80px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--grey-400);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

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

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

.footer-bottom {
    border-top: 1px solid var(--grey-700);
    padding-top: 30px;
    text-align: center;
    color: var(--grey-500);
    font-size: 14px;
}

/* ============================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ============================================ */
.wp-block-image {
    margin: 30px 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.wp-block-quote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 24px;
    margin: 30px 0;
    font-style: italic;
    color: var(--grey-600);
}

.wp-block-separator {
    border: none;
    border-top: 2px solid var(--grey-300);
    margin: 40px 0;
}

/* ============================================
   ASSESSMENT PLUGIN STYLES
   ============================================ */
.revops-assessment-form {
    background: var(--card-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.revops-question {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey-300);
}

.revops-question:last-child {
    border-bottom: none;
}

.revops-question label {
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 0;
    }

    .header-container {
        padding: 0 16px;
        min-height: 56px;
    }

    .site-branding {
        gap: 8px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu > li > a {
        padding: 12px 20px;
    }
    
    .dual-track-container {
        grid-template-columns: 1fr;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section h2 {
        font-size: 28px;
    }
    
    .site-main {
        padding: 40px 20px;
    }
    
    .hero-section,
    .experience-banner {
        margin-left: -20px;
        margin-right: -20px;
        padding: 60px 20px;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .track-card {
        padding: 30px 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mt-small { margin-top: 20px; }
.mt-medium { margin-top: 40px; }
.mt-large { margin-top: 60px; }

.mb-small { margin-bottom: 20px; }
.mb-medium { margin-bottom: 40px; }
.mb-large { margin-bottom: 60px; }

.pt-small { padding-top: 20px; }
.pt-medium { padding-top: 40px; }
.pt-large { padding-top: 60px; }

.pb-small { padding-bottom: 20px; }
.pb-medium { padding-bottom: 40px; }
.pb-large { padding-bottom: 60px; }

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .site-container {
        box-shadow: none;
    }
}
/* ============================================
   BLOG POST CARD STYLES
   ============================================ */
.blog-post-card {
    background: var(--card-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.blog-post-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.blog-post-card .post-content { padding: 24px; }
.blog-post-card h3 a { color: var(--primary-blue-dark); text-decoration: none; }
.blog-post-card h3 a:hover { color: var(--primary-blue); }
.blog-post-card .post-meta { font-size: 13px; color: var(--grey-500); margin-bottom: 8px; }
.blog-post-card .post-excerpt { font-size: 15px; color: var(--grey-600); line-height: 1.7; }

/* ============================================
   DARK SECTION TEXT OVERRIDE FIX
   When .content-section has a dark background,
   force paragraph text to be light.
   ============================================ */
.content-section.octopus-hero p {
    color: #e2e8f0 !important;
}

.content-section.octopus-hero strong {
    color: #ffffff !important;
}