﻿/**
 * About Us Page - Modern, Visually Rich Design
 * Resume Target
 * 
 * @version 4.2
 * @updated 2026-02
 * 
 * v4.2 Changes:
 * - Scoped typography rules to content sections only (fixes header styling)
 * - Removed global .about-us-page h1/h2/h3 that affected site header
 * 
 * v4.1 Changes:
 * - Added h2.hero-eyebrow reset styles (SEO: single H1 rule)
 * - Added p.hero-headline styles (SEO: single H1 rule)
 */

/* ============================================
   VARIABLES
   ============================================ */
.about-us-page {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --primary-bg: #ecfeff;
    --primary-bg-alt: #cffafe;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

.about-us-page {
    color: var(--text);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY - Scoped to content sections only
   Note: Don't use .about-us-page h1/h2/h3 as it affects the site header
   ============================================ */
.about-hero h1,
.about-hero p.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-problem h2,
.about-origin h2,
.about-method h2,
.about-transformation h2,
.about-writers h2,
.about-stories h2,
.about-values h2,
.about-cta h2,
.about-mid-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.flow-step h3,
.transform-card h3,
.story-content h3,
.value h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
}

.btn-text:hover {
    gap: 0.625rem;
}

.btn-text::after {
    content: '→';
}

.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.2s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 6rem 1.5rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
.about-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

/* SEO: Hero eyebrow as H2 - reset browser defaults */
h2.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

/* SEO: Hero headline as P - match original H1 styling */
p.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 1.5rem;
}

p.hero-headline em {
    font-style: normal;
    color: var(--primary-light);
    display: block;
}

.about-hero h1 {
    color: var(--white);
    margin: 0 0 1.5rem;
}

.about-hero h1 em {
    font-style: normal;
    color: var(--primary-light);
    display: block;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-ctas .btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-ctas .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.about-problem {
    padding: 6rem 1.5rem;
    background: var(--white);
}

.about-problem-inner {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-content h2 {
    margin: 0 0 1.5rem;
    color: var(--text);
}

.problem-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.problem-content p em {
    font-style: normal;
    color: var(--primary);
    font-weight: 500;
}

.problem-quotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.problem-quotes blockquote {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}

.problem-quotes blockquote p {
    font-size: 1.0625rem;
    color: var(--text);
    font-style: italic;
    margin: 0 0 0.5rem;
    line-height: 1.6;
}

.problem-quotes cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
}

.problem-solution {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* ============================================
   ORIGIN STORY SECTION
   ============================================ */
.about-origin {
    padding: 6rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.about-origin-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
}

.origin-image {
    position: relative;
}

.origin-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.origin-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary-bg-alt);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.origin-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.origin-content h2 {
    margin: 0 0 1.5rem;
}

.origin-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.origin-content p strong {
    color: var(--text);
}

.origin-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.origin-content a:hover {
    text-decoration: underline;
}

.origin-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.about-method {
    padding: 6rem 1.5rem;
    background: var(--white);
}

.about-method-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.method-header h2 {
    margin: 0 0 1rem;
}

.method-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.method-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.flow-step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.flow-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.flow-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.flow-step h3 {
    margin: 0 0 0.75rem;
    color: var(--text);
}

.flow-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary);
    padding-top: 3rem;
    font-weight: 300;
}

/* Method Links */
.method-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.method-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s ease;
}

.method-link:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: var(--shadow);
}

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

.method-link-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-link-text strong {
    color: var(--text);
    font-size: 1rem;
}

.method-link-text span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.method-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.method-quote blockquote {
    margin: 0;
}

.method-quote p {
    font-size: 1.375rem;
    color: var(--white);
    font-style: italic;
    margin: 0 0 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.method-quote cite {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   MID CTA SECTION
   ============================================ */
.about-mid-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.about-mid-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.mid-cta-content h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.mid-cta-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 2rem;
}

.mid-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mid-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.mid-cta-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.mid-cta-buttons .btn-text {
    color: rgba(255,255,255,0.9);
}

.mid-cta-buttons .btn-text:hover {
    color: var(--white);
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.about-transformation {
    padding: 6rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.about-transformation-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.transformation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.transformation-header h2 {
    margin: 0 0 1rem;
}

.transformation-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.transform-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.transform-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.transform-card blockquote {
    margin: 0 0 1.5rem;
}

.transform-card blockquote p {
    font-size: 1.0625rem;
    color: var(--text);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.transform-attribution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.transform-name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
}

.transform-result {
    font-size: 0.75rem;
    color: var(--white);
    background: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-weight: 600;
}

.transformation-insight {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   WRITERS SECTION
   ============================================ */
.about-writers {
    padding: 6rem 1.5rem;
    background: var(--white);
}

.about-writers-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.writers-content h2 {
    margin: 0 0 1.25rem;
}

.writers-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.writers-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.writers-facts li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.writers-facts li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.writers-facts li strong {
    color: var(--text);
}

.writers-facts li a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.writers-facts li a:hover {
    text-decoration: underline;
}

.writers-guarantee {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.guarantee-badge svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.guarantee-text strong {
    display: block;
    font-size: 1.0625rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.guarantee-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.writers-image {
    position: relative;
}

.writers-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   STORIES SECTION
   ============================================ */
.about-stories {
    padding: 6rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.about-stories-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.stories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-header h2 {
    margin: 0 0 0.5rem;
}

.stories-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.story-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.story-card:hover .story-play {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: var(--shadow-xl);
}

.story-play svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    margin-left: 3px;
}

.story-content {
    padding: 1.25rem;
}

.story-result {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.625rem;
}

.story-content h3 {
    font-size: 1.0625rem;
    margin: 0 0 0.375rem;
    color: var(--text);
}

.story-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.stories-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.about-values {
    padding: 6rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

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

.about-values h2 {
    text-align: center;
    margin: 0 0 3rem;
}

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

.value {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.value h3 {
    margin: 0 0 0.75rem;
    color: var(--text);
}

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

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.about-cta {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.about-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.about-cta h2 {
    font-size: 2.25rem;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.about-cta-inner > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 2rem;
}

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

.about-cta .btn-primary-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
    transition: all 0.2s ease;
}

.about-cta .btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5);
}

.about-cta .btn-primary-large .btn-main {
    font-size: 1.125rem;
    font-weight: 700;
}

.about-cta .btn-primary-large .btn-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.125rem;
}

.about-cta .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text);
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.about-cta .btn-secondary-large:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.cta-links {
    margin-bottom: 1.5rem;
}

.cta-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-links a:hover {
    text-decoration: underline;
}

.cta-divider {
    margin: 0 0.875rem;
    color: var(--gray-300);
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: var(--gray-50);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
}

.cta-guarantee svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.video-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

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

.video-modal-title {
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--gray-200);
}

.video-modal-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-origin-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .origin-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-writers-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .writers-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        padding: 0;
        text-align: center;
    }
    
    .method-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1.5rem 5rem;
    }
    
    .about-problem,
    .about-origin,
    .about-method,
    .about-transformation,
    .about-writers,
    .about-stories,
    .about-values,
    .about-cta {
        padding: 4rem 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        max-width: 280px;
    }
    
    .origin-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .transformation-quotes {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mid-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .btn-primary-large,
    .about-cta .btn-secondary-large {
        width: 100%;
        max-width: 280px;
    }
    
    .about-cta-inner {
        padding: 3rem 1.5rem;
    }
    
    .cta-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-divider {
        display: none;
    }
    
    .about-cta h2 {
        font-size: 1.75rem;
    }
    
    /* SEO: Hero headline mobile sizing */
    p.hero-headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}