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

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #3182ce;
    --heart: #e53e3e;
    --heart-light: #fc8181;
    --head: #3182ce;
    --head-light: #63b3ed;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --success: #38a169;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 150px;
    width: auto;
    transition: opacity 0.2s;
}

.logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 12rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content .hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-content .tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    max-width: 500px;
}

.hero-philosophy {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 1.25rem;
}

.hero-triggers {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.75;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.hero-graphic:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.3);
}

.hero-graphic::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

.hero-graphic-text {
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-graphic-text .framework {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-graphic-text .framework-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-graphic-text .click-hint {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Page Header (for inner pages) */
.page-header {
    padding: 13rem 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 2.5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.headshot-container {
    text-align: center;
}

.headshot {
    width: 100%;
    max-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.15);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.linkedin-link:hover {
    background: #004182;
    transform: translateY(-2px);
}

.linkedin-link svg {
    width: 18px;
    height: 18px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.about-text h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* Proven Theses Section */
.proven-theses {
    margin: 2.5rem 0;
}

.proven-theses h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thesis-card {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.25rem;
}

.thesis-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.thesis-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.credential {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
    border: 1px solid var(--border);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

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

.who-i-work-with {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.who-i-work-with p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-tag.tag-embed {
    background: rgba(49, 151, 149, 0.1);
    color: #319795;
}

.service-tag.tag-board {
    background: rgba(214, 158, 46, 0.12);
    color: #b7791f;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--primary);
}

/* Framework Section */
.framework-section {
    background: var(--primary);
    color: white;
}

.framework-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.framework-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.framework-section .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.framework-pillars {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    column-gap: 1rem;
    text-align: left;
}

/* Framework Quadrant Diagram */
.framework-quadrant {
    margin-bottom: 3rem;
}

.fq-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    overflow: hidden;
}

.fq-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    transition: background 0.3s;
}

.fq-cell:hover {
    background: rgba(255,255,255,0.08);
}

.fq-top-left {
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: rgba(229, 62, 62, 0.1);
}

.fq-top-right {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: rgba(56, 161, 105, 0.15);
}

.fq-bottom-left {
    border-right: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
}

.fq-bottom-right {
    background: rgba(49, 130, 206, 0.1);
}

.fq-icon {
    font-size: 1.75rem;
    opacity: 0.9;
}

.fq-top-right .fq-icon {
    color: #68d391;
}

.fq-top-left .fq-icon {
    color: var(--heart);
}

.fq-bottom-right .fq-icon {
    color: var(--head);
}

.fq-bottom-left .fq-icon {
    color: #fbd38d;
}

.fq-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    opacity: 0.9;
}

.fq-axis-x {
    position: absolute;
    bottom: -1.75rem;
    right: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.fq-axis-y {
    position: absolute;
    top: 0.5rem;
    left: -0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Pillar Cards — enhanced */
.pillar {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.pillar--heart {
    border-left: 4px solid var(--heart);
}

.pillar--head {
    border-left: 4px solid var(--head);
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pillar-icon {
    font-size: 1.75rem;
}

.pillar--heart .pillar-icon {
    color: var(--heart);
}

.pillar--head .pillar-icon {
    color: var(--head);
}

.pillar p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.pillar ul {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
    padding-left: 0;
    list-style: none;
}

.pillar ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pillar ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.7;
}

.pillar--heart ul li::before {
    background: var(--heart);
}

.pillar--head ul li::before {
    background: var(--head);
}

/* Pillar Connector */
.pillar-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.connector-line {
    flex: 1;
    width: 1px;
    background: rgba(255,255,255,0.25);
}

.connector-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    white-space: nowrap;
}

/* Misalignment Costs */
.misalignment-costs {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.misalignment-costs h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: center;
}

.cost-card {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.cost-card:hover {
    background: rgba(255,255,255,0.14);
}

.cost-card svg {
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.cost-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.cost-card p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
}

.subtitle--italic {
    margin-top: 1rem;
    font-style: italic;
}

.subtitle--bold {
    margin-top: 2rem;
    font-weight: 600;
}

.optional-label {
    font-weight: 400;
    color: var(--text-light);
}

.final-cta .assessment-benefits {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

/* Assessment CTA Section */
.assessment-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.assessment-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.assessment-cta .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.assessment-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.assessment-cta .cta-button {
    background: white;
    color: #667eea;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.assessment-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* PDF Download Card */
.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    color: white;
    transition: background 0.2s, transform 0.2s;
}

.pdf-download:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.pdf-download-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    opacity: 0.9;
}

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

.pdf-download-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.pdf-download-desc {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* PDF Download Card — Contact page variant (light background) */
.contact-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.contact-pdf-download:hover {
    background: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.contact-pdf-download .pdf-download-icon {
    color: var(--accent);
}

.contact-pdf-download .pdf-download-title {
    color: var(--primary);
}

.contact-pdf-download .pdf-download-desc {
    color: var(--text-light);
}

.contact-download-wrapper {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-download-wrapper p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.assessment-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.benefit svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro > p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-direct {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-direct > p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.contact-method:hover {
    color: var(--accent);
}

.contact-method svg {
    width: 20px;
    height: 20px;
}

.booking-card {
    text-align: center;
    background: var(--bg-light);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.booking-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-card p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.contact-divider span {
    position: relative;
    background: var(--bg-white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: lowercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group select {
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-button {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: var(--primary-light);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 1;
    margin-bottom: 0.25rem;
}

.footer-brand .tagline {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.footer-about {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0.5rem auto 0.75rem;
    line-height: 1.6;
}

/* Assessment Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content {
    padding: 3rem;
}

/* Assessment Steps */
.assessment-step {
    display: none;
}

.assessment-step.active {
    display: block;
}

/* Intro Step */
.assessment-intro {
    text-align: center;
}

.assessment-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.assessment-intro p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.assessment-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.preview-item {
    text-align: center;
}

.preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
}

.preview-icon.heart {
    background: linear-gradient(135deg, var(--heart) 0%, var(--heart-light) 100%);
    color: white;
}

.preview-icon.head {
    background: linear-gradient(135deg, var(--head) 0%, var(--head-light) 100%);
    color: white;
}

.preview-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.assessment-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--heart) 0%, var(--head) 100%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Question Styling */
.question-container {
    text-align: center;
}

.question-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.question-category.heart {
    background: rgba(229, 62, 62, 0.1);
    color: var(--heart);
}

.question-category.head {
    background: rgba(49, 130, 206, 0.1);
    color: var(--head);
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

/* Rating Scale */
.rating-scale {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.rating-option:hover {
    border-color: var(--accent);
    background: var(--bg-light);
}

.rating-option.selected {
    border-color: var(--accent);
    background: rgba(49, 130, 206, 0.1);
}

.rating-option input {
    display: none;
}

.rating-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    color: var(--text-medium);
}

.rating-option.selected .rating-number {
    background: var(--accent);
    color: white;
}

.rating-label {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.nav-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.nav-button.back {
    background: var(--bg-light);
    border: none;
    color: var(--text-medium);
}

.nav-button.back:hover {
    background: var(--border);
}

.nav-button.next {
    background: var(--primary);
    border: none;
    color: white;
}

.nav-button.next:hover {
    background: var(--primary-light);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Lead Capture */
.lead-capture {
    text-align: center;
}

.lead-capture h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.lead-capture .subtitle {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.lead-form {
    max-width: 400px;
    margin: 0 auto;
}

.lead-form .form-group {
    margin-bottom: 1rem;
}

.lead-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.lead-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--heart) 0%, var(--head) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lead-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Checkbox styling for lead form */
.checkbox-group {
    text-align: left;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* Results */
.results-container {
    text-align: center;
}

.results-container h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Quadrant Chart */
.quadrant-chart {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.quadrant {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.quadrant span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    opacity: 0.8;
}

.quadrant.top-left {
    top: 0;
    left: 0;
    background: rgba(229, 62, 62, 0.15);
}

.quadrant.top-right {
    top: 0;
    right: 0;
    background: rgba(56, 161, 105, 0.15);
}

.quadrant.bottom-left {
    bottom: 0;
    left: 0;
    background: rgba(160, 174, 192, 0.2);
}

.quadrant.bottom-right {
    bottom: 0;
    right: 0;
    background: rgba(49, 130, 206, 0.15);
}

.axis-label {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
}

.axis-label.head-label {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.axis-label.heart-label {
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.result-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.5s ease;
}

.axis-line {
    position: absolute;
    background: var(--text-light);
    opacity: 0.3;
}

.axis-line.horizontal {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
}

.axis-line.vertical {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
}

/* Score Display */
.scores-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.score-item {
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.score-circle.heart {
    background: linear-gradient(135deg, var(--heart) 0%, var(--heart-light) 100%);
}

.score-circle.head {
    background: linear-gradient(135deg, var(--head) 0%, var(--head-light) 100%);
}

.score-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* Insights */
.insights-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.insights-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insights-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.profile-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.results-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.results-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.results-download-btn:hover {
    background: var(--primary);
    color: white;
}

.results-download-btn svg {
    flex-shrink: 0;
}

.results-cta {
    margin-top: 2rem;
}

.results-cta p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

/* Pain Points Section */
.pain-points {
    background: var(--bg-white);
    padding: 6rem 2rem;
}

.pain-points-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pain-points h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pain-points .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pain-card {
    background: var(--bg-light);
    border-left: 4px solid var(--heart);
    padding: 1.75rem 1.5rem;
    border-radius: 0 12px 12px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pain-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.pain-card .category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--heart);
    margin-top: 1rem;
}

/* Personal Story Section */
.personal-story {
    background: var(--primary);
    color: white;
    padding: 6rem 2rem;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-container h2 em {
    font-style: italic;
    opacity: 0.9;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.story-content p.lead {
    font-size: 1.35rem;
    font-weight: 500;
    opacity: 1;
}

.story-cta {
    margin-top: 2.5rem;
}

.story-cta .cta-button {
    background: white;
    color: var(--primary);
}

.story-cta .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Hook Highlight Section */
.hook-highlight {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hook-highlight blockquote {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    margin: 0 0 1.5rem;
}

.hook-highlight .attribution {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Stressor Tags */
.stressor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.stressor-tag {
    background: rgba(229, 62, 62, 0.1);
    color: var(--heart);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Value Props Section */
.value-props {
    background: var(--bg-white);
    padding: 6rem 2rem;
}

.value-props-container {
    max-width: 1200px;
    margin: 0 auto;
}

.value-props h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

/* Refined Hero - Clean two-column layout */
.hero-refined {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-refined-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-text .hero-subtext {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-visual-side {
    display: flex;
    justify-content: center;
}

.hero-quote-card {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 380px;
    box-shadow: 0 25px 50px -12px rgba(26, 54, 93, 0.25);
}

.hero-quote-card blockquote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.hero-quote-card .quote-answer {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Credibility Bar */
.credibility-bar {
    background: var(--primary);
    padding: 2rem;
}

.credibility-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.cred-item {
    text-align: center;
    color: white;
}

.cred-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cred-label {
    font-size: 0.85rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cred-context {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.35rem;
    font-style: italic;
    line-height: 1.4;
}

.cred-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

/* About Brief (AEO entity paragraph) */
.about-brief {
    padding: 2rem 2rem 0;
    text-align: center;
}

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

.about-brief-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Credibility Attribution */
.credibility-attribution {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    padding: 1rem 2rem 0;
    margin: 0;
}

.credibility-attribution a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.credibility-attribution a:hover {
    color: var(--primary);
}

/* Quadrant Summary (AEO crawlable text) */
.quadrant-summary {
    margin-bottom: 3rem;
    text-align: center;
}

.quadrant-summary p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Social Proof Bar */
/* Heart & Head Difference Section */
.heart-head-difference {
    background: var(--bg-light);
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.heart-head-difference-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.heart-head-difference-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.heart-head-difference-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.heart-head-difference-container p:last-child {
    margin-bottom: 0;
}

.social-proof-bar {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.social-proof-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.social-proof-quote {
    position: relative;
}

.social-proof-mark {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}

.social-proof-quote blockquote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0.25rem 0 0.75rem;
}

.social-proof-attr {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 0.75rem 2rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.sticky-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.sticky-cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

/* Story Section - Clean editorial style */
.story-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.story-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.story-body .story-lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* Sound Familiar Section */
.familiar-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.familiar-container {
    max-width: 1000px;
    margin: 0 auto;
}

.familiar-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.familiar-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.15rem;
    max-width: 700px;
    margin: -2rem auto 3rem;
}

.familiar-cta-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

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

.familiar-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
}

.familiar-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.familiar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--heart) 0%, var(--heart-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
}

.familiar-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.familiar-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.text-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

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

/* Value Section - Clean layout */
.value-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.value-section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.value-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

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

.value-point h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-point p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* LinkedIn Insights Section */
.linkedin-insights {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.linkedin-insights-container h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.linkedin-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

.linkedin-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.linkedin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
}

.linkedin-topic {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.linkedin-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.linkedin-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    flex: 1;
}

.linkedin-read-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.linkedin-card:hover .linkedin-read-more {
    color: var(--primary);
}

.linkedin-follow {
    text-align: center;
}

.linkedin-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.linkedin-follow-link:hover {
    color: #0077b5;
    background: rgba(0, 119, 181, 0.08);
}

.linkedin-follow-link svg {
    color: #0077b5;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta .cta-button {
    background: white;
    color: #667eea;
}

.final-cta .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.assessment-preview-graphic {
    display: flex;
    justify-content: center;
}

.preview-quadrant {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(10px);
}

.preview-quadrant::before,
.preview-quadrant::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.3);
}

.preview-quadrant::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.preview-quadrant::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.pq-label {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.pq-label.top {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.pq-label.right {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.pq-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 30%;
    left: 65%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Crisis Categories Section */
.crisis-categories {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

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

.crisis-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.crisis-container .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.crisis-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.crisis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.crisis-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.crisis-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.crisis-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.crisis-card .solution {
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Privacy Policy Page */
.privacy-content {
    background: var(--bg-white);
}

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

.privacy-container .effective-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-container h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-container h2:first-of-type {
    margin-top: 0;
}

.privacy-container h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-container p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-container ul {
    color: var(--text-medium);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-container a {
    color: var(--accent);
    text-decoration: none;
}

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

/* To-Do Page */
.todo-section {
    background: var(--bg-white);
}

.todo-container {
    max-width: 600px;
    margin: 0 auto;
}

.todo-input-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.todo-input-row input[type="text"] {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.todo-input-row input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
}

.todo-input-row input[type="date"] {
    padding: 0.85rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-medium);
    background: var(--bg-white);
    min-width: 140px;
}

.todo-input-row input[type="date"]:focus {
    outline: none;
    border-color: var(--accent);
}

.todo-add-btn {
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.todo-add-btn:hover {
    background: var(--primary-light);
}

.todo-add-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.todo-loading {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    display: none;
}

.todo-status {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.todo-status.error {
    color: #e53e3e;
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-empty {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-size: 0.95rem;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.todo-item:last-child {
    border-bottom: none;
}

.todo-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.todo-text {
    flex: 1;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.todo-item.completed .todo-text {
    text-decoration: line-through;
    color: var(--text-light);
}

.todo-item-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.todo-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    white-space: nowrap;
}

.todo-date.today {
    color: var(--accent);
    background: rgba(49, 130, 206, 0.1);
}

.todo-date.overdue {
    color: var(--heart);
    background: rgba(229, 62, 62, 0.1);
}

.todo-delete-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
    opacity: 0;
}

.todo-item:hover .todo-delete-btn {
    opacity: 1;
}

.todo-delete-btn:hover {
    color: var(--heart);
}

.todo-done-section {
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.todo-done-toggle {
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    user-select: none;
}

.todo-done-toggle:hover {
    color: var(--text-medium);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

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

.testimonials-container h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem 2rem;
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.quote-mark {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 1.5rem;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.attribution-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.attribution-detail {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 90px;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-container {
        position: relative;
    }

    .hero {
        padding: 8rem 1.5rem 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-content .subtitle {
        font-size: 1.15rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .page-header {
        padding: 8rem 1.5rem 0.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .hero-content .tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphic {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        align-items: center;
    }

    .headshot {
        max-width: 160px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-stats .stat {
        flex: 1 1 calc(50% - 1rem);
        min-width: 140px;
    }

    .framework-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-connector {
        display: none;
    }

    .fq-grid {
        max-width: 320px;
    }

    .fq-cell {
        padding: 1rem 0.75rem;
    }

    .fq-label {
        font-size: 0.75rem;
    }

    .fq-icon {
        font-size: 1.4rem;
    }

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

    .modal-content {
        padding: 2rem;
    }

    .question-text {
        font-size: 1.25rem;
    }

    .assessment-preview {
        gap: 2rem;
    }

    .scores-display {
        gap: 2rem;
    }

    .assessment-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Social proof responsive */
    .social-proof-quote blockquote {
        font-size: 1.15rem;
    }

    /* Sticky CTA responsive */
    .sticky-cta-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sticky-cta-text {
        font-size: 0.85rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-container h2 {
        font-size: 1.85rem;
    }

    /* LinkedIn Insights responsive */
    .linkedin-grid {
        grid-template-columns: 1fr;
    }

    .linkedin-insights-container h2 {
        font-size: 1.85rem;
    }

    /* Refined hero responsive */
    .hero-refined-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-quote-card {
        max-width: 100%;
    }

    .hero-quote-card blockquote {
        font-size: 1.15rem;
    }

    /* Credibility bar responsive */
    .credibility-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cred-divider {
        width: 60px;
        height: 1px;
    }

    .cred-number {
        font-size: 1.75rem;
    }

    /* Heart & Head Difference responsive */
    .heart-head-difference {
        padding: 3rem 1.5rem;
    }

    .heart-head-difference-container h2 {
        font-size: 1.75rem;
    }

    /* Story section responsive */
    .story-intro h2 {
        font-size: 2rem;
    }

    .story-body p {
        font-size: 1.05rem;
    }

    .story-body .story-lead {
        font-size: 1.15rem;
    }

    /* Familiar section responsive */
    .familiar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .familiar-container h2 {
        font-size: 1.75rem;
    }

    /* Value section responsive */
    .value-points {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-header h2 {
        font-size: 1.85rem;
    }

    /* Final CTA responsive */
    .final-cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .final-cta-content h2 {
        font-size: 1.85rem;
    }

    .preview-quadrant {
        width: 160px;
        height: 160px;
    }

    /* Legacy styles responsive */
    .pain-points h2,
    .value-props h2,
    .crisis-container h2,
    .story-container h2 {
        font-size: 2rem;
    }

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

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hook-highlight blockquote {
        font-size: 1.5rem;
    }

    .story-content p {
        font-size: 1.05rem;
    }

    .story-content p.lead {
        font-size: 1.15rem;
    }

    .stressor-tags {
        gap: 0.5rem;
    }

    .stressor-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* To-do page responsive */
    .todo-input-row {
        flex-direction: column;
    }

    .todo-input-row input[type="date"] {
        min-width: unset;
    }

    .todo-delete-btn {
        opacity: 1;
    }
}
