/* main.css - Public site styles (index and future marketing pages) */
/* BASE STYLES FOR INDEX.HTML */
:root {
    --foundation-color: #FF7A00;
    --performance-color: #1a2a6c;
    --elite-color: #9b59b6;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --text-color: #444;
    --primary-blue: #1a2a6c;
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Container for content spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* LANDING PAGE LAYOUT ADDITIONS */
/* Section spacing for page-by-page scrolling */
.section {
    padding: 100px 0;
    min-height: 80vh;
}

/* Image placeholders in problem cards */
.card-image-placeholder {
    width: 100%;
    height: 180px;
    background: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid layouts */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.workflow-image {
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.solution-item-full {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.founder-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.founder-text-primary {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.founder-text-secondary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-top: 1.5rem;
}

.tier-includes-label {
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-text .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
}

.kicker {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.value-proposition {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: white;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.value-item strong {
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.social-proof-bar p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header .kicker {
    color: #667eea;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: white;
}

.problem-foundation {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.problem-foundation p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.problem-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #2c3e50;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    background: #f8f9fa;
}

.solution-foundation {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.solution-foundation p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-item.pillar-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-link:hover {
    cursor: pointer;
}

.pillar-link:hover .pillar-link-text {
    color: var(--foundation-color);
}

.pillar-progress.pillar-link:hover .pillar-link-text {
    color: var(--performance-color);
}

.solution-item.pillar-arm {
    border-color: var(--foundation-color);
}

.solution-item.pillar-arm::before {
    background: var(--foundation-color);
}

.solution-item.pillar-arm:hover {
    border-color: var(--foundation-color);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.solution-item.pillar-progress {
    border: 2px dashed #cbd5e1;
    border-color: #94a3b8;
    background: #f8fafc;
    opacity: 0.85;
}

.solution-item.pillar-progress::before {
    background: #cbd5e1;
    height: 2px;
}

.solution-item.pillar-progress:hover {
    border-color: #94a3b8;
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.1);
    opacity: 0.95;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
}

.solution-icon img.pillar-logo {
    width: auto;
    height: 70px;
    object-fit: contain;
    display: block;
}

.pillar-icon-arm {
    width: auto !important;
    min-width: 70px;
    padding: 0;
    border-radius: 0;
}

.pillar-icon-arm {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.pillar-icon-progress {
    background: #e2e8f0 !important;
    border: 2px dashed #94a3b8;
    color: #64748b !important;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.2);
}

.pillar-icon-progress svg {
    opacity: 0.7;
}

.solution-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pillar-description {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.pillar-progress .pillar-description {
    color: #64748b;
    opacity: 0.9;
}

.pillar-benefits {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
}

.pillar-arm .pillar-benefits {
    border-left-color: var(--foundation-color);
}

.pillar-progress .pillar-benefits {
    border-left-color: #cbd5e1;
    background: #f1f5f9;
    opacity: 0.9;
}

.pillar-progress .pillar-benefits p {
    color: #64748b;
}

.pillar-progress .pillar-benefits strong {
    color: #475569;
}

.pillar-progress h3 {
    color: #475569;
    opacity: 0.9;
}

.pillar-link-text {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.pillar-link-text .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.pillar-link:hover .pillar-link-text .arrow {
    transform: translateX(4px);
}

.pillar-progress .pillar-link-text {
    border-top-color: #cbd5e1;
    color: #64748b;
}

.pillar-benefits p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.pillar-benefits strong {
    color: #2c3e50;
}

.solution-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation-section {
    background: white;
}

.transformation-group {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.transformation-group h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.transformation-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transformation-group li {
    padding: 0.75rem 0;
    color: #374151;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
}

.transformation-group li:last-child {
    border-bottom: none;
}

.transformation-group li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ============================================
   PITCH SECTION
   ============================================ */
.pitch-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.pitch-card {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 10px;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: white;
}

.foundation-pitch {
    background-color: #fff7ed;
    border-left: 3px solid var(--foundation-color);
}

.performance-pitch {
    background-color: #f0f4ff;
    border-left: 3px solid var(--performance-color);
}

.elite-pitch {
    background-color: #faf5ff;
    border-left: 3px solid var(--elite-color);
}

.pitch-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.pitch-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: #f8f9fa;
}

.tier-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px 0;
}

.tier-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.foundation.tier-card {
    border-color: var(--foundation-color);
}

.performance.tier-card {
    border-color: var(--performance-color);
}

.elite.tier-card {
    border-color: var(--elite-color);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
}

.tier-header {
    padding: 25px;
    color: white;
    text-align: center;
}

.tier-name,
.tier-price,
.tier-question {
    color: white;
}

.foundation .tier-header {
    background-color: var(--foundation-color);
}

.performance .tier-header {
    background-color: var(--performance-color);
}

.elite .tier-header {
    background-color: var(--elite-color);
}

.tier-header h2.tier-name {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tier-price {
    font-size: 1.2rem;
    font-weight: bold;
}

.tier-question {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tier-body {
    padding: 25px;
}

.tier-body h3 {
    margin: 20px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--medium-gray);
    color: #333;
}

.tier-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.tier-body li {
    padding: 0.35rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.tier-body li:last-child {
    border-bottom: none;
}

.tier-body li:not(.not-included):before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.tier-body li.not-included {
    color: #9ca3af;
    text-decoration: line-through;
}

.tier-body li.not-included:before {
    content: "✗ ";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #667eea;
    border-width: 3px;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-badge.elite-badge {
    background: #f59e0b;
}

.price-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    text-align: center;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin: 1rem 0 0.5rem;
}

.price-label {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.package-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.package-ideal {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.package-ideal strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.package-ideal p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:not(.not-included):before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.features-list li.not-included {
    color: #9ca3af;
    text-decoration: line-through;
}

.features-list li.not-included:before {
    content: "✗ ";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-footer p {
    margin: 0.5rem 0;
    color: #6b7280;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-wrapper {
    margin-top: 3rem;
}

.comparison-toggle {
    text-align: center;
    margin-bottom: 2rem;
}

.toggle-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: #667eea;
    color: white;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-table th.featured-col {
    background: #667eea;
    color: white;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tr.category-header td {
    background: #f3f4f6;
    font-weight: 700;
    color: #2c3e50;
    text-align: left;
}

.comparison-table td.check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-table td.no-check {
    color: #9ca3af;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: white;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
}

.form-feedback {
    display: none;
    text-align: center;
    padding: 1rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pitch-section {
        flex-direction: column;
    }
    
    .tier-card,
    .pitch-card {
        min-width: 100%;
    }
    
    .problem-grid,
    .solution-grid,
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Inline styles moved from index.html */
.framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin: 3rem 0;
}
@media (max-width: 768px) {
    .framework-grid {
        grid-template-columns: 1fr;
    }
}
.framework-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease, left 0.3s ease, top 0.3s ease;
    cursor: pointer;
    position: relative;
}
.framework-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.framework-image.expanded {
    transform: translate(-50%, -50%) scale(1.875);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    z-index: 100;
    position: fixed;
    left: 50%;
    top: 50%;
    max-width: 80vw;
    max-height: 80vh;
}
.framework-image.expanded:hover {
    transform: translate(-50%, -50%) scale(1.875);
}
.framework-grid > div:last-child {
    overflow: visible;
}
.workflow-image {
    max-width: 100%;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.workflow-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.clickable-image {
    cursor: pointer;
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}
.image-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    margin-top: 5vh;
    animation: zoomIn 0.3s;
}
.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.image-modal-close:hover {
    color: #fff;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.solution-item {
    max-width: 100%;
}
.solution-item-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 768px) {
    .solution-item-full {
        grid-template-columns: 1fr;
    }
    .tier-integration-grid {
        grid-template-columns: 1fr !important;
    }
}
.contact-section .section-header {
    margin-bottom: 1.5rem;
}
.contact-section .section-header h2 {
    font-size: 1.5rem;
}
.contact-section .section-header p {
    margin-bottom: 0.5rem;
}
.tier-integration-card {
    padding: 1.5rem;
    border-radius: 8px;
}
.tier-integration-card.foundation {
    background-color: #fff7ed;
    border-left: 3px solid #FF7A00;
}
.tier-integration-card.performance {
    background-color: #f0f4ff;
    border-left: 3px solid #1a2a6c;
}
.tier-integration-card.elite {
    background-color: #faf5ff;
    border-left: 3px solid #9b59b6;
}
.tier-integration-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1em;
    color: #000;
}
.tier-integration-card .tier-description {
    margin: 0.5rem 0;
    font-size: 0.95em;
    font-weight: 600;
    color: #000;
}
.tier-integration-card .tier-pitch {
    margin-top: 1rem;
    font-size: 0.9em;
    line-height: 1.6;
    color: #000;
}
.tier-integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.hero-text h2 {
    color: #fff;
    font-size: 2.75rem;
}
/* Lead Capture Forms Responsive */
.lead-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .lead-forms-container {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   MICROCYCLE PAGE STYLES
   ============================================ */
.header-message {
    flex: 1;
    text-align: center;
    font-style: italic;
    color: #1a2a6c;
    text-decoration: none;
}

.header-message:hover {
    text-decoration: underline;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #1a2a6c;
    font-weight: 600;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a2a6c;
}

.microcycle-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.microcycle-hero h1,
.microcycle-hero p,
.microcycle-hero .lead {
    color: #ffffff;
}

.microcycle-hero .lead {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.framework-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.framework-planner {
    display: grid;
    grid-template-columns: repeat(7, minmax(140px, 1fr));
    gap: 0;
    margin: 3rem 0;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.planner-day {
    background: #ffffff;
    padding: 1.25rem 1.25rem 1.5rem;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.planner-day:last-child {
    border-right: none;
}

.day-rest { background: #f3f4f6; }
.day-recovery { background: #eff6ff; }
.day-load { background: #fffbeb; }
.day-max-speed { background: #fef2f2; }
.day-pre-match { background: #f5f3ff; }
.day-match { background: #ecfdf3; }

.planner-day-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.planner-day-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.planner-day-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.planner-day-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.01em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.planner-day-md {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.tag-recovery { background: #dbeafe; color: #1e40af; }
.tag-load { background: #fef3c7; color: #92400e; }
.tag-max-speed { background: #fee2e2; color: #991b1b; }
.tag-pre-match { background: #ede9fe; color: #5b21b6; }
.tag-match { background: #dcfce7; color: #166534; }
.tag-rest { background: #e5e7eb; color: #374151; }
}

.day-content ul {
    list-style-position: inside;
    color: #64748b;
}

.day-content li {
    margin-bottom: 0.5rem;
}

.problem-solution-section {
    padding: 100px 0;
    background-color: white;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problem-column,
.solution-column {
    padding: 2rem;
    border-radius: 8px;
}

.problem-column {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.solution-column {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.data-point {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.readiness-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.readiness-green { background: #10b981; }
.readiness-yellow { background: #f59e0b; }
.readiness-red { background: #ef4444; }

.data-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.data-content p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #64748b;
}

.testimonial-callout {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin: 0;
}

.testimonial-callout blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.testimonial-callout cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
    font-weight: 500;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f1f5f9;
}

.cta-section h2 {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .framework-planner {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .nav-menu {
        display: none;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .framework-planner {
        grid-template-columns: 1fr;
    }
}
