/* Course Page Specific Styles - Digital PR for Startups */

/* Color Variables */
:root {
    --startup-green: #87f4ab;
    --startup-blue: #193366;
    --light-green: #5ed68a;
    --dark-blue: #0f1f3d;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border-color: #e2e8f0;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--startup-green);
}

.breadcrumb i.fa-chevron-right {
    font-size: 0.75rem;
    color: var(--border-color);
}

.breadcrumb span {
    color: var(--startup-blue);
    font-weight: 600;
}

/* Section Hero */
.section-hero {
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    color: var(--bg-white);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(135, 244, 171, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(135, 244, 171, 0.15);
    border: 1px solid rgba(135, 244, 171, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--startup-green);
}

.section-badge i {
    color: var(--startup-green);
}

.section-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--bg-white);
}

.section-hero .section-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.section-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.section-meta .meta-item i {
    color: var(--startup-green);
    font-size: 1.1rem;
}

/* Section CTA Button */
.section-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn-start-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--startup-blue);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(135, 244, 171, 0.3);
    transition: all 0.3s ease;
}

.btn-start-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(135, 244, 171, 0.4);
}

.btn-start-section i {
    font-size: 1.3rem;
}

/* Section Navigation */
.section-navigation {
    background: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 40px 20px;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 400px;
}

.nav-btn:hover {
    border-color: var(--startup-green);
    background: rgba(135, 244, 171, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn i {
    font-size: 1.5rem;
    color: var(--startup-green);
}

.nav-btn div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-title {
    font-size: 1rem;
    color: var(--startup-blue);
    font-weight: 700;
}

.btn-back {
    justify-content: flex-start;
}

.btn-next {
    justify-content: flex-end;
    text-align: right;
}

/* Course Hero Section */
.course-hero {
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    color: var(--bg-white);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(135, 244, 171, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.course-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(135, 244, 171, 0.15);
    border: 1px solid rgba(135, 244, 171, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-badge i {
    color: var(--startup-green);
}

.course-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--startup-green);
    font-size: 1.1rem;
}

.course-cta {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

/* Course Outline Section */
.course-outline {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--startup-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Course Stats */
.course-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-number.green { color: #87f4ab; }
.stat-number.purple { color: #667eea; }
.stat-number.pink { color: #f093fb; }
.stat-number.teal { color: #43e97b; }

.stat-label {
    color: var(--text-gray);
}

/* Accordion */
.course-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.coming-soon {
    opacity: 0.7;
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.accordion-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon.green {
    background: linear-gradient(135deg, #87f4ab 0%, #68d99b 100%);
}

.accordion-icon.purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.accordion-icon.teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.accordion-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.accordion-icon.gray {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

.accordion-icon i {
    font-size: 1.5rem;
    color: white;
}

.accordion-text {
    flex: 1;
}

.accordion-text h3 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.accordion-meta {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.status-available {
    color: #87f4ab;
}

.status-coming-soon {
    color: #94a3b8;
}

.accordion-chevron {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 0 30px 30px 30px;
}

.accordion-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.module-list {
    margin-bottom: 20px;
}

.module-item {
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.module-item h4 {
    color: var(--startup-blue);
    font-size: 1.05rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.module-item .module-num {
    color: #10b981;
    margin-right: 8px;
    font-weight: 700;
}

.module-item .module-num.purple {
    color: #10b981;
}

.module-item .module-num.teal {
    color: #10b981;
}

.module-item .module-num.orange {
    color: #f97316;
}

.module-item .module-num.gray {
    color: #94a3b8;
}

.module-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.btn-start.green {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.btn-start.purple {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.btn-start.teal {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.btn-start.orange {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-locked {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: #e2e8f0;
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.outline-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #87f4ab 0%, #68d99b 100%);
    color: var(--startup-blue);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(135, 244, 171, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(135, 244, 171, 0.4);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--startup-blue);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid var(--startup-blue);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-secondary-large:hover {
    background: var(--startup-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.cta-note {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 0.95rem;
}

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

.outline-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.outline-card:hover {
    border-color: var(--startup-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.outline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.outline-card h3 {
    font-size: 1.5rem;
    color: var(--startup-blue);
    margin-bottom: 8px;
}

.outline-card p {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 1rem;
}

.outline-modules {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Course Section */
.course-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.course-section.section-alt {
    background: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--startup-blue);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Module */
.module {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 32px;
    overflow: hidden;
}

.module-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 24px 32px;
    color: var(--bg-white);
    border-radius: 12px 12px 0 0;
}

.module-header h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-number {
    background: rgba(135, 244, 171, 0.2);
    border: 1px solid var(--startup-green);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
}

.module-content {
    padding: 40px 32px;
}

.module-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.module-content h4 {
    font-size: 1.5rem;
    color: var(--startup-blue);
    margin: 32px 0 16px;
    font-weight: 700;
}

.module-content h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 20px 0 12px;
    font-weight: 600;
}

.module-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.module-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.1) 0%, rgba(94, 214, 138, 0.1) 100%);
    border-left: 4px solid var(--startup-green);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.highlight-box h4 {
    color: var(--startup-blue);
    font-size: 1.25rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box h4 i {
    color: var(--startup-green);
}

.highlight-box p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.comparison-table thead {
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    color: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table td strong {
    color: var(--startup-blue);
}

/* Video Wrapper */
.video-wrapper {
    margin: 32px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.benefit-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--startup-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.benefit-card h4 {
    font-size: 1.15rem;
    color: var(--startup-blue);
    margin: 0 0 8px;
}

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

/* Stat Showcase */
.stat-showcase {
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 32px 0;
    color: var(--bg-white);
}

.stat-showcase h4 {
    color: var(--bg-white);
    text-align: center;
    margin: 0 0 32px;
    font-size: 1.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--startup-green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Components Wrapper */
.components-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

@media (max-width: 1024px) {
    .components-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tactics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .components-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tactics-grid {
        grid-template-columns: 1fr;
    }
}

.component-card {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.component-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-white);
}

.component-content {
    padding-top: 16px;
}

.component-content h4 {
    font-size: 1.25rem;
    color: var(--startup-blue);
    margin: 0 0 8px;
}

.component-content p {
    color: var(--text-gray);
    margin: 0 0 16px;
    line-height: 1.6;
}

.component-content ul {
    margin: 0;
    padding-left: 20px;
}

.component-content li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

/* Integration Section - How Components Work Together */
.integration-section {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.05) 0%, rgba(94, 214, 138, 0.05) 100%);
    border: 2px solid var(--startup-green);
    border-radius: 20px;
    padding: 40px;
    margin: 48px 0;
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.integration-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.integration-text h3 {
    color: var(--startup-blue);
    font-size: 1.75rem;
    margin: 0 0 8px;
    font-weight: 800;
}

.integration-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.1rem;
}

/* Timeline Roadmap */
.timeline-roadmap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.roadmap-phase {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.phase-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--startup-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.roadmap-phase h4 {
    color: var(--startup-blue);
    font-size: 1.2rem;
    margin: 8px 0 16px;
    font-weight: 700;
}

.roadmap-tasks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.task-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.task-item i {
    color: var(--startup-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
    min-width: 0;
}

.task-content strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.task-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Quick Wins Box */
.quick-wins-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 32px;
}

.quick-wins-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-wins-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.quick-wins-header h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-win-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.win-number {
    width: 32px;
    height: 32px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}

.quick-win-item strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.quick-win-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.compounding-effect {
    background: white;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
}

.effect-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.effect-content h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0 0 12px;
    font-weight: 700;
}

.effect-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.timeline-growth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.growth-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--startup-green);
}

.growth-period {
    font-weight: 700;
    color: var(--startup-blue);
}

.growth-result {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Module 1.4 Trends Styles */
.trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 32px 0;
}

.trend-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
}

.trend-card:hover {
    border-color: var(--startup-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trend-card.featured {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03) 0%, rgba(255, 107, 107, 0.01) 100%);
}

.trend-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.trend-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.trend-card h3 {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0 0 12px;
    font-weight: 800;
}

.trend-intro {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.trend-details {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.trend-details h4 {
    color: var(--startup-blue);
    font-size: 1.2rem;
    margin: 24px 0 12px;
    font-weight: 700;
    word-wrap: break-word;
}

.trend-details ul {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.trend-details ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.strategy-list {
    margin: 20px 0;
}

.strategy-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid var(--startup-green);
    overflow: hidden;
}

.strategy-number {
    width: 32px;
    height: 32px;
    background: var(--startup-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--startup-blue);
    flex-shrink: 0;
}

.strategy-content {
    flex: 1;
    min-width: 0;
}

.strategy-content strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 4px;
    font-size: 1.05rem;
    word-wrap: break-word;
}

.strategy-content p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    margin: 24px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.stat-text {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-text strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.1rem;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.stat-source {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 4px;
}

.checklist-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.checklist-item i {
    color: var(--startup-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.checklist-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

.playbook-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    overflow-x: auto;
    padding: 20px 20px 20px 0;
    scroll-padding: 20px;
}

.playbook-steps::-webkit-scrollbar {
    height: 8px;
}

.playbook-steps::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.playbook-steps::-webkit-scrollbar-thumb {
    background: var(--startup-green);
    border-radius: 4px;
}

.playbook-step {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    min-width: 160px;
    flex-shrink: 0;
    text-align: center;
    word-wrap: break-word;
}

.step-badge {
    background: var(--startup-green);
    color: var(--startup-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
}

.playbook-step strong {
    display: block;
    color: var(--startup-blue);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.playbook-step p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.playbook-arrow {
    color: var(--startup-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.future-outlook {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid #667eea;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.outlook-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.outlook-header i {
    font-size: 2rem;
    color: #667eea;
}

.outlook-header h3 {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
}

.outlook-predictions {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.prediction-item {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    color: var(--text-dark);
    line-height: 1.6;
}

.prediction-item strong {
    color: #667eea;
}

.outlook-cta {
    background: white;
    padding: 20px;
    border-radius: 12px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.module-conclusion {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(15, 23, 42, 0.05) 100%);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 48px 0 32px;
}

.conclusion-content h3 {
    color: var(--startup-blue);
    font-size: 1.75rem;
    margin: 0 0 12px;
    font-weight: 800;
}

.conclusion-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Download CTA */
.download-cta {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.08) 0%, rgba(94, 214, 138, 0.05) 100%);
    border: 2px solid rgba(135, 244, 171, 0.3);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.download-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--startup-blue);
    flex-shrink: 0;
}

.download-content {
    flex: 1;
    min-width: 200px;
}

.download-content h4 {
    color: var(--startup-blue);
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
}

.download-content p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

.btn-download {
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--startup-blue);
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Next Section CTA */
.next-section-cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid #667eea;
    border-radius: 20px;
    padding: 0;
    margin: 48px 0;
    overflow: hidden;
}

.cta-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.cta-text h3 {
    color: white;
    margin: 0 0 8px;
    font-size: 1.75rem;
    font-weight: 800;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-content {
    padding: 32px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tactics-preview {
    margin-bottom: 32px;
}

.tactics-preview h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0 0 20px;
    font-weight: 700;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.tactic-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.tactic-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.tactic-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.tactic-icon i {
    font-size: 1.25rem;
    color: white;
}

.tactic-card h5 {
    color: var(--startup-blue);
    font-size: 1rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.tactic-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0 0 12px;
    line-height: 1.4;
}

.tactic-count {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--startup-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-button-wrapper {
    text-align: center;
}

.btn-continue-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-continue-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-continue-section i {
    font-size: 1.2rem;
}

.cta-button-wrapper .cta-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Progress Indicator */
.progress-indicator {
    background: var(--bg-white);
    padding: 32px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.progress-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Section Divider */
.section-divider {
    background: var(--bg-light);
    padding: 40px 20px;
}

.continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    color: var(--bg-white);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 600px;
}

.continue-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Section 2 Intro Module - Completely Restructured */
.intro-module {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.03) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    margin-bottom: 40px;
    padding: 0;
}

/* Intro Header Section */
.intro-header {
    padding: 40px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.intro-header h3 {
    color: var(--startup-blue);
    font-size: 1.75rem;
    margin: 0 0 16px;
    font-weight: 800;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Channels Section */
.channels-section {
    padding: 40px;
    background: white;
}

.section-title {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0 0 32px;
    font-weight: 800;
    text-align: center;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.channel-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.channel-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.channel-icon i {
    font-size: 1.75rem;
    color: white;
}

.channel-card h5 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    margin: 0 0 12px;
    font-weight: 700;
}

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

/* Comparison Section */
.comparison-section {
    padding: 40px;
    background: var(--bg-light);
}

/* Key Insight Box */
.key-insight-box {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.08) 0%, rgba(94, 214, 138, 0.05) 100%);
    border-top: 1px solid rgba(135, 244, 171, 0.2);
    border-radius: 0 0 16px 16px;
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    font-size: 1.75rem;
    color: white;
}

.insight-content {
    flex: 1;
}

.insight-content h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0 0 12px;
    font-weight: 700;
}

.insight-content p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Tactic Overview */
.tactic-overview {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.08) 0%, rgba(94, 214, 138, 0.05) 100%);
    border: 2px solid rgba(135, 244, 171, 0.3);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.tactic-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tactic-meta span {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.difficulty.easy {
    background: #d1fae5;
    color: #065f46;
}

.difficulty.medium {
    background: #fef3c7;
    color: #92400e;
}

.difficulty.hard {
    background: #fee2e2;
    color: #991b1b;
}

.time-investment {
    background: #dbeafe;
    color: #1e40af;
}

.link-value {
    background: #e0e7ff;
    color: #3730a3;
}

.link-value.high, .link-value.very-high {
    background: #dcfce7;
    color: #166534;
}

.link-value.medium, .link-value.medium-high {
    background: #fef3c7;
    color: #92400e;
}

.link-value.low {
    background: #f3f4f6;
    color: #374151;
}

/* Step by Step */
.step-by-step {
    margin: 32px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    color: var(--startup-blue);
    margin: 0 0 8px;
}

.step-content p {
    color: var(--text-gray);
    margin: 0 0 12px;
    line-height: 1.6;
}

.step-content ul {
    margin: 0;
    padding-left: 20px;
}

.step-content li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

/* Pro Tips */
.pro-tips {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.1) 0%, rgba(94, 214, 138, 0.1) 100%);
    border: 2px solid var(--startup-green);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.pro-tips h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-tips h4 i {
    color: var(--startup-green);
}

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

.tips-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-dark);
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--startup-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.tips-list strong {
    color: var(--startup-blue);
}

/* Platform/Item List */
.platform-list, .search-queries {
    margin: 24px 0;
}

.platform-item {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.platform-item h5 {
    color: var(--startup-blue);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.platform-item h5 i {
    color: var(--startup-green);
}

.platform-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Example Box */
.example-box {
    background: var(--bg-light);
    border-left: 4px solid var(--startup-blue);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.example-box h4 {
    color: var(--startup-blue);
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.example-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 12px;
}

.example-author {
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
}

/* Process Visual */
.process-visual {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Tactic Block Styling */
.tactic-block {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.03) 0%, rgba(94, 214, 138, 0.02) 100%);
    border: 2px solid rgba(135, 244, 171, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    transition: all 0.3s ease;
}

.tactic-block:hover {
    border-color: var(--startup-green);
    box-shadow: 0 8px 20px rgba(135, 244, 171, 0.15);
    transform: translateY(-2px);
}

.tactic-block h5 {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0 0 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tactic-number {
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
}

.tactic-block > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.tactic-block h6 {
    color: var(--startup-blue);
    font-size: 1.1rem;
    margin: 20px 0 12px;
    font-weight: 700;
}

/* Tactics vs Channels Section */
.tactics-vs-channels {
    margin: 40px 0;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
}

.tactics-vs-channels h4 {
    color: var(--startup-blue);
    font-size: 1.4rem;
    margin: 0 0 24px;
    font-weight: 700;
    text-align: center;
}

/* Enhanced Module Headers */
.module-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 24px 32px;
    border-radius: 12px 12px 0 0;
    margin: 0;
}

.module-header h3 {
    color: white;
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}

.module-header h3 .module-number {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Structured Example Box */
.structured-example {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.03) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-left: 6px solid #667eea;
    padding: 0;
    margin: 32px 0;
}

.example-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px 8px 0 0;
}

.example-header i {
    font-size: 1.5rem;
}

.example-header h6 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.example-content {
    padding: 28px;
}

.question-block {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.question-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--startup-blue);
    margin: 0;
    font-style: italic;
}

.structure-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0 0 20px;
}

.structure-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.structure-item {
    display: flex;
    gap: 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.structure-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.item-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-content strong {
    color: var(--startup-blue);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}

.item-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Citation Worthy Box */
.citation-worthy-box {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.05) 0%, rgba(94, 214, 138, 0.03) 100%);
    border: 2px solid rgba(135, 244, 171, 0.3);
    border-left: 6px solid var(--startup-green);
    padding: 0;
    margin: 32px 0;
    border-radius: 12px;
}

.citation-header {
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px 8px 0 0;
}

.citation-header i {
    font-size: 1.5rem;
}

.citation-header h6 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.citation-worthy-box .characteristics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 28px;
}

.citation-worthy-box .char-item {
    display: flex;
    gap: 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.citation-worthy-box .char-item:hover {
    border-color: var(--startup-green);
    box-shadow: 0 4px 12px rgba(135, 244, 171, 0.15);
}

.char-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.char-icon i {
    font-size: 1.4rem;
    color: white;
}

.char-content {
    flex: 1;
}

.char-content strong {
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.char-content p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Distribution Guide */
.distribution-guide {
    margin: 40px 0;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.guide-header i {
    font-size: 2rem;
    color: #667eea;
}

.guide-header h4 {
    color: var(--startup-blue);
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.guide-intro {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 24px;
}

.distribution-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.distribution-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.distribution-table th {
    color: white;
    font-weight: 700;
    text-align: left;
    padding: 16px 20px;
    font-size: 1rem;
}

.distribution-table tbody tr {
    transition: all 0.3s ease;
}

.distribution-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.distribution-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.distribution-table tbody tr:last-child td {
    border-bottom: none;
}

.distribution-table td strong {
    color: var(--startup-blue);
    font-weight: 700;
}

/* Enhanced Process Framework */
.process-framework {
    margin: 32px 0;
}

.process-step {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--startup-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--startup-blue);
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 1.5rem;
    color: var(--startup-blue);
    margin: 0;
    font-weight: 700;
}

.step-content > p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 16px;
}

.step-details p {
    font-weight: 600;
    color: var(--startup-blue);
    margin-bottom: 12px;
}

.step-details ul {
    margin: 12px 0 20px;
    padding-left: 24px;
}

.step-details ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.step-details ul li strong {
    color: var(--startup-blue);
}

.pro-tip {
    display: flex;
    gap: 12px;
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.1) 0%, rgba(94, 214, 138, 0.05) 100%);
    border-left: 4px solid var(--startup-green);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.pro-tip i {
    color: var(--startup-green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pro-tip p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 400;
}

.formula-box {
    background: var(--bg-white);
    border: 2px solid var(--startup-green);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.formula-box p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
}

.formula-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    display: flex;
    gap: 12px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
}

.warning-box i {
    color: #ef4444;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 400;
}

.metrics-table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.metrics-table thead {
    background: var(--startup-blue);
}

.metrics-table th {
    padding: 12px 16px;
    text-align: left;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.metrics-table td {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 400;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.metric-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--startup-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.metric-icon i {
    font-size: 1.25rem;
    color: var(--startup-blue);
}

.metric-card h5 {
    font-size: 1rem;
    color: var(--startup-blue);
    margin: 0 0 8px;
    font-weight: 700;
}

.metric-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0 0 8px;
    line-height: 1.5;
}

.metric-tool {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.process-arrow {
    text-align: center;
    margin: 16px 0;
}

.process-arrow i {
    font-size: 2rem;
    color: var(--startup-green);
}

.cycle-note {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 4px solid #667eea;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.cycle-note i {
    color: #667eea;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cycle-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--bg-white);
    margin: 0 auto 12px;
}

/* Search Queries */
.query-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.query-list code {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--startup-blue);
}

/* Template Box */
.pitch-template, .template-box {
    margin: 32px 0;
}

.template-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.template-content {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.template-content p {
    margin: 0 0 12px;
    color: var(--text-dark);
}

.template-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

/* Quality Checklist */
.quality-checklist, .prep-checklist {
    margin: 32px 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.checklist li {
    padding: 12px;
    padding-left: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.6;
    color: var(--text-dark);
}

.checklist li i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--startup-green);
    font-size: 1.2rem;
}

/* Case Study Box */
.case-study-box {
    background: linear-gradient(135deg, var(--startup-blue) 0%, var(--dark-blue) 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
    color: var(--bg-white);
}

.case-study-box h4 {
    color: var(--bg-white);
    margin: 0 0 20px;
    font-size: 1.5rem;
}

.case-study-content p {
    margin: 0 0 12px;
    color: #e2e8f0;
}

.case-study-content strong {
    color: var(--bg-white);
}

.case-study-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.case-study-content li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.case-study-takeaway {
    background: rgba(135, 244, 171, 0.1);
    border-left: 3px solid var(--startup-green);
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
    color: var(--bg-white) !important;
}

/* Tools Section */
.tools-section {
    margin: 32px 0;
}

.tools-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.tool-item-small {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.tool-item-small h5 {
    color: var(--startup-blue);
    margin: 0 0 6px;
    font-size: 1rem;
}

.tool-item-small p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.warning-box h4 {
    color: #92400e;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box h4 i {
    color: #f59e0b;
}

.warning-box ul {
    margin: 0;
    padding-left: 24px;
}

.warning-box li {
    color: #78350f;
    margin-bottom: 8px;
    line-height: 1.6;
}

.warning-box strong {
    color: #92400e;
}

/* Data Types */
.data-types {
    margin: 32px 0;
}

.data-type {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid var(--startup-green);
}

.data-type h5 {
    color: var(--startup-blue);
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.data-type p {
    color: var(--text-gray);
    margin: 0 0 8px;
    line-height: 1.6;
}

.example-link {
    font-style: italic;
    color: var(--text-dark);
}

/* Why It Works */
.why-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.reason-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--startup-green);
    margin-bottom: 12px;
}

.reason-card h5 {
    color: var(--startup-blue);
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.reason-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Distribution Options */
.distribution-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.distribution-tier {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.distribution-tier h5 {
    color: var(--startup-blue);
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.tier-cost {
    background: var(--bg-white);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--startup-green);
    margin: 0 0 16px;
    display: inline-block;
}

.distribution-tier ul {
    margin: 16px 0;
    padding-left: 20px;
}

.distribution-tier li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.tier-use {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-dark);
}

/* Structure Diagram (Press Release) */
.structure-diagram {
    margin: 32px 0;
}

.pyramid-section {
    padding: 16px 24px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.headline-section {
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--bg-white);
}

.subhead-section {
    background: rgba(135, 244, 171, 0.7);
    color: var(--dark-blue);
}

.lead-section {
    background: rgba(135, 244, 171, 0.5);
    color: var(--text-dark);
}

.body-section {
    background: rgba(135, 244, 171, 0.3);
    color: var(--text-dark);
}

.boiler-section {
    background: rgba(135, 244, 171, 0.2);
    color: var(--text-dark);
}

.contact-section {
    background: rgba(135, 244, 171, 0.1);
    color: var(--text-dark);
}

.pyramid-section h5 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.pyramid-section p {
    margin: 0;
    font-size: 0.9rem;
}

/* Example Press Release */
.example-press-release {
    margin: 32px 0;
}

.pr-example {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 32px;
    border-radius: 12px;
}

.pr-headline {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pr-subhead {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0 0 16px;
    line-height: 1.4;
}

.pr-date {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.pr-lead, .pr-body {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 16px;
}

/* Module 3.2 - Campaign Timeline Styles */
.campaign-timeline {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.timeline-block {
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-block:last-child {
    margin-bottom: 0;
}

.timeline-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 23, 42, 0.08) 100%);
    padding: 16px 24px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.2);
}

.timeline-header h6 {
    color: var(--startup-blue);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-header i {
    color: var(--startup-green);
    margin-right: 8px;
}

.timeline-content {
    padding: 24px;
}

.tactic-list {
    display: grid;
    gap: 20px;
}

.tactic-item {
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--startup-green);
}

.tactic-item strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1rem;
    margin-bottom: 12px;
}

.tactic-item ul {
    margin: 0;
    padding-left: 20px;
}

.tactic-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.expected-result {
    margin-top: 12px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-left: 3px solid var(--startup-green);
}

.expected-result i {
    color: var(--startup-green);
    margin-right: 8px;
}

/* Module 3.2 - Results Summary */
.results-summary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid #667eea;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

.results-summary h4 {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 0 0 28px;
    text-align: center;
    font-weight: 800;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.result-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.result-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 12px;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--startup-blue);
    margin: 8px 0;
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.result-detail {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Module 3.3 - FAQ Styles */
.faq-section {
    margin: 32px 0;
}

.faq-section h4 {
    color: var(--startup-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-section h4 i {
    color: var(--startup-green);
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--startup-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(15, 23, 42, 0.03) 100%);
    padding: 16px 20px;
    cursor: default;
}

.faq-question h6 {
    color: var(--startup-blue);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question i {
    color: var(--startup-green);
    margin-top: 2px;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    margin: 0 0 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--startup-blue);
}

.faq-answer ul,
.faq-answer ol {
    margin: 12px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.faq-answer code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #667eea;
}

.faq-answer em {
    display: block;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-left: 3px solid var(--startup-green);
    border-radius: 6px;
    font-style: italic;
    color: var(--text-gray);
}

/* SOSTAC Badge Variant */
.step-badge.sostac {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
}

/* Metrics Dashboard */
.metrics-dashboard {
    margin: 24px 0;
}

.metrics-dashboard h6 {
    color: var(--startup-blue);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

/* ========================================
   SECTION 3 ENHANCED STYLING - Digital PR Strategy
   ======================================== */

/* SOSTAC Introduction */
.sostac-intro {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 2px solid #d1fae5;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
}

.sostac-intro h4 {
    color: var(--startup-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sostac-intro h4 i {
    color: #10b981;
}

.sostac-intro p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* SOSTAC Overview Grid */
.sostac-overview {
    margin: 32px 0;
}

.sostac-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.sostac-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.sostac-letter {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.sostac-content {
    flex: 1;
}

.sostac-content strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sostac-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Framework Section */
.framework-section {
    margin: 40px 0;
}

.framework-section > h4 {
    color: var(--startup-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.framework-section > h4 i {
    color: #10b981;
}

/* Strategy Step Container */
.strategy-step {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin: 32px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.strategy-step .step-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(15, 23, 42, 0.05) 100%);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.strategy-step .step-header h5 {
    color: var(--startup-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.strategy-step .step-content {
    padding: 32px 28px;
}

.strategy-step .step-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

/* Content Box */
.content-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(5, 150, 105, 0.02) 100%);
    border: 2px solid #d1fae5;
    border-radius: 12px;
    padding: 24px;
}

.content-box h7 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.content-box ul {
    margin: 0;
    padding-left: 20px;
}

.content-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-box li strong {
    color: var(--startup-blue);
}

/* Situation Analysis */
.situation-analysis {
    margin: 28px 0;
}

.situation-analysis h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.situation-analysis h6 i {
    color: #10b981;
}

/* Competitive Analysis */
.competitive-analysis {
    margin: 28px 0;
}

.competitive-analysis h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competitive-analysis h6 i {
    color: #10b981;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

.analysis-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.analysis-card h7 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.analysis-card h7 i {
    color: #10b981;
}

.analysis-card ul {
    margin: 0;
    padding-left: 20px;
}

.analysis-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* SWOT Analysis */
.swot-analysis {
    margin: 28px 0;
}

.swot-analysis h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swot-analysis h6 i {
    color: #10b981;
}

.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.swot-item {
    border-radius: 12px;
    padding: 20px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.swot-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.swot-item.strengths {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
    border-color: #10b981;
}

.swot-item.weaknesses {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.03) 100%);
    border-color: #ef4444;
}

.swot-item.opportunities {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-color: #3b82f6;
}

.swot-item.threats {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.03) 100%);
    border-color: #f59e0b;
}

.swot-item h7 {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--startup-blue);
}

.swot-item ul {
    margin: 0;
    padding-left: 20px;
}

.swot-item li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Tool Recommendation */
.tool-recommendation {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 2px solid #e9d5ff;
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
}

.tool-recommendation h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-recommendation h6 i {
    color: #8b5cf6;
}

.tool-list {
    display: grid;
    gap: 12px;
}

.tool-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateX(4px);
    border-color: #8b5cf6;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.tool-item strong {
    color: var(--startup-blue);
    font-weight: 700;
}

/* Objectives Framework */
.objectives-framework {
    margin: 28px 0;
}

.objectives-framework h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.objectives-framework h6 i {
    color: #10b981;
}

/* Example Box Enhanced */
.example-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04) 0%, rgba(217, 119, 6, 0.02) 100%);
    border: 2px solid #fde68a;
    border-left-width: 4px;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.example-box h6 {
    color: var(--startup-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.example-box p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.example-box ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.example-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.example-box li strong {
    color: var(--startup-blue);
}

/* KPI Framework */
.kpi-framework {
    margin: 28px 0;
}

.kpi-framework h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kpi-framework h6 i {
    color: #10b981;
}

.kpi-table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kpi-table thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.kpi-table th {
    padding: 14px 16px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.kpi-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.kpi-table tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.03);
}

.kpi-table tbody tr:last-child {
    border-bottom: none;
}

.kpi-table td {
    padding: 12px 16px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.kpi-table td strong {
    color: var(--startup-blue);
    font-weight: 700;
}

/* Enhanced Highlight Box for Section 3 */
.strategy-step .highlight-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid #10b981;
    border-left-width: 4px;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.strategy-step .highlight-box h6 {
    color: var(--startup-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-step .highlight-box h6 i {
    color: #10b981;
}

.strategy-step .highlight-box ul {
    margin: 0;
    padding-left: 20px;
}

.strategy-step .highlight-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.strategy-step .highlight-box li strong {
    color: var(--startup-blue);
}

/* Strategy Section Styling - Enhanced */
.audience-strategy {
    margin: 28px 0;
}

.audience-strategy h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-strategy h6 i {
    color: #10b981;
}

.audience-strategy > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.audience-framework {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 20px 0;
}

.audience-type {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.audience-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.audience-type h7 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.audience-type ul {
    margin: 0;
    padding-left: 20px;
}

.audience-type li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.audience-type li strong {
    color: var(--startup-blue);
}

/* Positioning Strategy */
.positioning-strategy {
    margin: 32px 0;
}

.positioning-strategy h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.positioning-strategy h6 i {
    color: #10b981;
}

.positioning-framework {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 20px 0;
}

.positioning-framework .content-box {
    transition: all 0.3s ease;
}

.positioning-framework .content-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.positioning-framework .content-box p {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
}

/* Channel Strategy */
.channel-strategy {
    margin: 32px 0;
}

.channel-strategy h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-strategy h6 i {
    color: #10b981;
}

.channel-strategy > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Channel Prioritization Table */
.channel-prioritization {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.channel-prioritization thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.channel-prioritization th {
    padding: 14px 16px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.channel-prioritization tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.channel-prioritization tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.04);
}

.channel-prioritization tbody tr:last-child {
    border-bottom: none;
}

.channel-prioritization td {
    padding: 14px 16px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.channel-prioritization td:first-child {
    font-weight: 600;
    color: var(--startup-blue);
}

/* Priority Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.high {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.badge.medium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.badge.low {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(148, 163, 184, 0.3);
}

/* Channel Priority Rows */
.channel-prioritization tbody tr {
    transition: all 0.3s ease;
}

.channel-prioritization tbody tr.priority-1 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.channel-prioritization tbody tr.priority-1:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(5, 150, 105, 0.04) 100%);
}

.channel-prioritization tbody tr strong {
    color: var(--startup-blue);
    font-size: 1rem;
    display: block;
    margin-bottom: 6px;
}

.channel-prioritization tbody tr td {
    vertical-align: top;
    line-height: 1.7;
}

.badge.highest {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.4);
    font-weight: 800;
}

/* Channel Insight Box */
.channel-insight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.insight-icon i {
    color: white;
    font-size: 1.6rem;
}

.insight-content h7 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.insight-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.insight-content ul {
    margin: 0;
    padding-left: 20px;
}

.insight-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.insight-content li strong {
    color: var(--startup-blue);
}

/* Tactics Section Styling */
.tactics-by-channel {
    margin: 32px 0;
}

.tactics-by-channel h6 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tactics-by-channel h6 i {
    color: #10b981;
}

.tactics-by-channel > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-dark);
}

/* Channel Tactics Grid */
.channel-tactics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px;
    margin: 24px 0;
    max-width: 100%;
}

.channel-tactics-grid.priority-focus {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px;
}

/* Ensure 2x2 layout on all screen sizes above tablet */
@media (min-width: 769px) {
    .channel-tactics-grid,
    .channel-tactics-grid.priority-focus {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
    }
}

.tactic-channel-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tactic-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.tactic-channel-card.priority-1 {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.tactic-channel-card.priority-2,
.tactic-channel-card.priority-3 {
    border-color: #3b82f6;
}

.tactic-card-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(15, 23, 42, 0.05) 100%);
    padding: 20px 24px;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tactic-channel-card.priority-1 .tactic-card-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.tactic-card-header h7 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.tactic-card-body {
    padding: 24px;
}

.channel-why {
    font-weight: 600;
    color: var(--startup-blue);
    margin-bottom: 16px;
    font-size: 1rem;
}

.tactic-list {
    margin: 0 0 20px;
    padding-left: 20px;
}

.tactic-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tactic-list li strong {
    color: var(--startup-blue);
}

.tactic-timing,
.tactic-cost {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tactic-timing i,
.tactic-cost i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.tactic-cost {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
}

.tactic-cost i {
    color: #8b5cf6;
}

/* Timeline Badge */
.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Priority Table Enhanced */
.priority-table tbody tr {
    vertical-align: top;
}

.priority-table tbody tr td {
    padding: 16px;
    line-height: 1.7;
}

.priority-table tbody tr.priority-high {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.priority-table tbody tr.priority-medium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(217, 119, 6, 0.02) 100%);
}

.priority-table tbody tr.priority-low {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.03) 0%, rgba(100, 116, 139, 0.02) 100%);
}

/* Enhanced Section Introduction */
.intro-module.enhanced .module-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(5, 150, 105, 0.02) 100%);
    border-left: 4px solid #10b981;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 24px 0;
}

.hero-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}

.hero-highlight i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.section-promise {
    margin: 40px 0;
}

.section-promise h3 {
    color: var(--startup-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-promise h3 i {
    color: #10b981;
}

.promise-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.promise-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.promise-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.promise-content h4 {
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.promise-content > p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.promise-bullets {
    margin: 0;
    padding-left: 20px;
}

.promise-bullets li {
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-approach {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 2px solid #e9d5ff;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approach-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    color: white;
    font-size: 1.6rem;
}

.approach-content h4 {
    color: var(--startup-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-content p {
    line-height: 1.7;
    margin: 0;
}

/* Insight Grid for 3-channel focus */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.insight-item {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    padding: 20px;
}

.insight-item h8 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--startup-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.insight-item h8 i {
    color: #10b981;
}

.insight-item ul {
    margin: 0;
    padding-left: 18px;
}

.insight-item li {
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.insight-strategy {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #d1fae5;
    font-size: 1.05rem;
}

/* Tactics Introduction Styling */
.tactics-introduction {
    margin-bottom: 32px;
}

.tactics-intro-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06) 0%, rgba(15, 23, 42, 0.04) 100%);
    border: 2px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.intro-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-icon i {
    color: white;
    font-size: 1.6rem;
}

.intro-text h6 {
    color: var(--startup-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-text p {
    line-height: 1.7;
    margin: 0;
}

.focus-principle {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 2px solid #fde68a;
    border-radius: 12px;
    padding: 20px 24px;
}

.principle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.principle-badge i {
    font-size: 0.9rem;
}

.tactic-selection-framework .framework-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Enhanced Framework Header */
.framework-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(25, 51, 102, 0.03) 0%, rgba(135, 244, 171, 0.02) 100%);
    border: 2px solid #e2e8f0;
    border-left: 5px solid var(--startup-blue);
    border-radius: 12px;
}

.framework-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--startup-blue) 0%, #2d4a7d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.framework-icon i {
    color: white;
    font-size: 1.5rem;
}

.framework-title h6 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0 0 8px 0;
}

.framework-title p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Enhanced Criteria Cards */
.criteria-cards-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.criteria-card-enhanced {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.criteria-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
}

.criteria-card-enhanced.budget::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.criteria-card-enhanced.time::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.criteria-card-enhanced.goal::before {
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
}

.criteria-card-enhanced.roi::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.criteria-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--startup-green);
}

.criteria-header-enhanced {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.criteria-icon-large {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-card-enhanced.budget .criteria-icon-large {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.criteria-card-enhanced.time .criteria-icon-large {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.criteria-card-enhanced.goal .criteria-icon-large {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.criteria-card-enhanced.roi .criteria-icon-large {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.criteria-icon-large i {
    font-size: 1.8rem;
}

.criteria-card-enhanced.budget .criteria-icon-large i {
    color: #10b981;
}

.criteria-card-enhanced.time .criteria-icon-large i {
    color: #8b5cf6;
}

.criteria-card-enhanced.goal .criteria-icon-large i {
    color: #06b6d4;
}

.criteria-card-enhanced.roi .criteria-icon-large i {
    color: #f59e0b;
}

.criteria-header-enhanced h7 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0;
}

.criteria-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.criteria-tip {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-style: italic;
}

.criteria-icon.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Priority Focus Note */
.priority-focus-note {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(5, 150, 105, 0.04) 100%);
    border: 2px solid #d1fae5;
    border-left-width: 4px;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.priority-focus-note i {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.priority-focus-note p {
    line-height: 1.7;
    margin: 0;
}

/* Expansion Channels */
.expansion-channels {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.expansion-channels h7 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--startup-blue);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.expansion-channels h7 i {
    color: #8b5cf6;
}

.expansion-channels > p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.expansion-channels > p strong {
    color: var(--startup-blue);
}

/* Evaluation Options */
.evaluation-options {
    display: grid;
    gap: 20px;
    margin: 24px 0 28px;
}

.eval-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
}

.eval-option:hover {
    border-color: var(--startup-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.eval-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eval-icon.add {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.eval-icon.maintain {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.eval-icon.remove {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.eval-icon.add i {
    color: #10b981;
    font-size: 1.6rem;
}

.eval-icon.maintain i {
    color: #06b6d4;
    font-size: 1.6rem;
}

.eval-icon.remove i {
    color: #ef4444;
    font-size: 1.6rem;
}

.eval-content h8 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0 0 8px 0;
}

.eval-content p {
    line-height: 1.6;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.eval-content ul {
    margin: 0;
    padding-left: 20px;
}

.eval-content ul li {
    line-height: 1.7;
    margin-bottom: 6px;
    color: var(--text-gray);
}

.expansion-note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(217, 119, 6, 0.03) 100%);
    border: 2px solid #fef3c7;
    border-left-width: 4px;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 24px 0;
}

.expansion-note i {
    color: #f59e0b;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.expansion-note p {
    line-height: 1.7;
    margin: 0;
}

.expansion-list {
    display: grid;
    gap: 12px;
}

.expansion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.expansion-item strong {
    color: var(--startup-blue);
}

/* Potential Channels Header */
.potential-channels-header {
    margin: 28px 0 20px;
}

.potential-channels-header h8 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--startup-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.potential-channels-header h8 i {
    color: #8b5cf6;
    font-size: 1.1rem;
}

.potential-channels-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.expansion-details {
    flex: 1;
}

.expansion-details strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.expansion-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Action Framework (Step 5) */
.action-framework {
    margin: 24px 0 32px;
}

.action-framework .framework-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.resource-dimensions {
    display: grid;
    gap: 24px;
    margin-top: 20px;
}

.dimension-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
}

.dimension-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dimension-icon.financial {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.dimension-icon.financial i {
    color: #10b981;
    font-size: 1.8rem;
}

.dimension-icon.temporal {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.dimension-icon.temporal i {
    color: #8b5cf6;
    font-size: 1.8rem;
}

.dimension-icon.human {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.dimension-icon.human i {
    color: #06b6d4;
    font-size: 1.8rem;
}

.dimension-content {
    flex: 1;
}

.dimension-content h7 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0 0 8px 0;
}

.dimension-content > p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.dimension-details {
    margin-top: 16px;
}

.dimension-details p strong {
    color: var(--startup-blue);
}

.dimension-details ul {
    margin: 8px 0 16px;
    padding-left: 20px;
}

.dimension-details ul li {
    line-height: 1.7;
    margin-bottom: 6px;
}

.example-note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 12px;
}

/* Execution Models */
.execution-models {
    margin: 32px 0;
}

.execution-models > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.model-comparison {
    display: grid;
    gap: 24px;
}

.model-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--startup-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.model-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.model-card.diy .model-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
}

.model-card.hybrid .model-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
}

.model-card.agency .model-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(8, 145, 178, 0.03) 100%);
}

.model-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.model-card.diy .model-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.model-card.hybrid .model-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.model-card.agency .model-badge {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.model-header h7 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0;
}

.model-content {
    padding: 24px;
}

.model-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.model-fit,
.model-allocation,
.model-tactics {
    margin-bottom: 20px;
}

.model-fit strong,
.model-allocation strong,
.model-tactics strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.model-fit ul,
.model-allocation ul {
    margin: 0;
    padding-left: 20px;
}

.model-fit ul li,
.model-allocation ul li {
    line-height: 1.7;
    margin-bottom: 6px;
}

.tactic-pill {
    display: inline-block;
    background: #f1f5f9;
    color: var(--startup-blue);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    margin: 4px 6px 4px 0;
    border: 1px solid #e2e8f0;
}

/* Resource Optimization */
.resource-optimization {
    margin: 32px 0;
}

.optimization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.optimization-principle {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 16px;
}

.principle-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--startup-blue) 0%, #2d4a7d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.principle-content h8 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0 0 8px 0;
}

.principle-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-gray);
}

/* Action Warning */
.action-warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.03) 100%);
    border: 2px solid #fecaca;
    border-left-width: 4px;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 32px;
}

.action-warning i {
    color: #ef4444;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-content {
    line-height: 1.7;
}

.warning-content strong {
    display: block;
    color: #dc2626;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

/* Campaign Calendar Section */
.campaign-calendar-section {
    margin: 40px 0 0;
}

.calendar-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.calendar-note {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 2px solid #e0e7ff;
    border-left-width: 4px;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0 32px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.calendar-note i {
    color: #8b5cf6;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.calendar-note p {
    line-height: 1.7;
    margin: 0;
}

/* Master Calendar */
.master-calendar {
    margin: 32px 0;
}

.calendar-month {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
}

.month-header-full {
    background: linear-gradient(135deg, var(--startup-blue) 0%, #2d4a7d 100%);
    color: white;
    padding: 24px 28px;
}

.month-number {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.month-header-full h6 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 8px 0 6px;
}

.month-theme {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}

.month-channels {
    padding: 28px;
}

/* Channel Rows */
.channel-row {
    border-left: 4px solid #e2e8f0;
    padding: 20px 0 20px 24px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
}

.channel-row.press-release {
    border-left-color: #10b981;
}

.channel-row.ai-search {
    border-left-color: #8b5cf6;
}

.channel-row.journalist {
    border-left-color: #06b6d4;
}

.channel-row.blogger {
    border-left-color: #f59e0b;
}

.channel-row.infrastructure {
    border-left-color: #64748b;
}

.channel-label {
    min-width: 180px;
}

.channel-badge {
    display: inline-block;
    background: #f1f5f9;
    color: var(--startup-blue);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.channel-badge.setup {
    background: #f8fafc;
    color: #64748b;
}

.channel-details {
    flex: 1;
}

.tactics-row,
.activities-row,
.outcomes-row {
    margin-bottom: 16px;
}

.tactics-row strong,
.activities-row strong,
.outcomes-row strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.tactic-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.15) 0%, rgba(94, 214, 138, 0.1) 100%);
    color: #059669;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    margin: 4px 8px 4px 0;
    border: 1px solid #d1fae5;
    font-weight: 500;
}

.activities-row ul {
    margin: 0;
    padding-left: 20px;
}

.activities-row ul li {
    line-height: 1.8;
    margin-bottom: 8px;
}

.outcome-pill {
    display: inline-block;
    background: #f8fafc;
    color: #475569;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
    margin: 4px 8px 4px 0;
    border: 1px solid #e2e8f0;
}

/* Month Summary */
.month-summary {
    background: #f8fafc;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 2px solid #e2e8f0;
}

.summary-metric {
    display: flex;
    gap: 14px;
}

.summary-metric i {
    color: var(--startup-blue);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.summary-metric strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.summary-metric p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-gray);
}

/* Compact Calendar (Months 3-6) */
.calendar-compact {
    margin: 40px 0;
}

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

.compact-month {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.compact-header {
    padding: 16px 20px;
}

.compact-header.month3 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
}

.compact-header.month4 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
}

.compact-header.month5 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(8, 145, 178, 0.03) 100%);
}

.compact-header.month6 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.03) 100%);
}

.compact-number {
    display: inline-block;
    background: var(--startup-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.compact-header h7 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0;
}

.compact-content {
    padding: 20px;
}

.compact-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.compact-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.compact-content ul li {
    line-height: 1.7;
    margin-bottom: 6px;
}

.compact-outcome {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--startup-green);
    margin-top: 12px;
}

/* Execution Rhythms */
.execution-rhythms {
    margin: 40px 0;
}

.rhythm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rhythm-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.rhythm-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rhythm-card.daily .rhythm-header {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(249, 115, 22, 0.03) 100%);
}

.rhythm-card.weekly .rhythm-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
}

.rhythm-card.monthly .rhythm-header {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(8, 145, 178, 0.03) 100%);
}

.rhythm-header i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.rhythm-card.daily .rhythm-header i {
    color: #f97316;
}

.rhythm-card.weekly .rhythm-header i {
    color: #8b5cf6;
}

.rhythm-card.monthly .rhythm-header i {
    color: #06b6d4;
}

.rhythm-header h7 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--startup-blue);
    margin: 0;
    flex: 1;
}

.time-badge {
    background: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.rhythm-card ul {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.rhythm-card ul li {
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
    margin-bottom: 10px;
}

.rhythm-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--startup-green);
    font-weight: 700;
}

/* Calendar Tips */
.calendar-tips {
    margin: 40px 0 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
    border: 2px solid #fef3c7;
    border-radius: 12px;
    padding: 24px 28px;
}

.calendar-tips h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--startup-blue);
    margin-bottom: 20px;
}

.calendar-tips h6 i {
    color: #f59e0b;
}

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

.tip-card {
    display: flex;
    gap: 14px;
}

.tip-card i {
    color: #f59e0b;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-card strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

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

/* Calendar Execution Tables */
.calendar-table-section {
    margin: 32px 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
}

.calendar-table-section h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--startup-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.calendar-table-section h6 i {
    color: #8b5cf6;
}

.table-responsive {
    overflow-x: auto;
    margin: 0 -28px;
    padding: 0 28px;
}

.calendar-execution-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.calendar-execution-table thead {
    background: linear-gradient(135deg, var(--startup-blue) 0%, #2d4a7d 100%);
    color: white;
}

.calendar-execution-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #e2e8f0;
}

.calendar-execution-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.calendar-execution-table tbody tr:hover {
    background-color: #f8fafc;
}

.calendar-execution-table td {
    padding: 14px 16px;
    vertical-align: top;
    line-height: 1.7;
}

.calendar-execution-table td strong {
    color: var(--startup-blue);
}

.calendar-execution-table td small {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Channel-specific row colors */
.calendar-execution-table .channel-press {
    border-left: 4px solid #10b981;
}

.calendar-execution-table .channel-ai {
    border-left: 4px solid #8b5cf6;
}

.calendar-execution-table .channel-journalist {
    border-left: 4px solid #06b6d4;
}

.calendar-execution-table .channel-blogger {
    border-left: 4px solid #f59e0b;
}

.calendar-execution-table .channel-infra {
    border-left: 4px solid #64748b;
}

/* Total row styling */
.calendar-execution-table .total-row {
    background: linear-gradient(135deg, rgba(135, 244, 171, 0.1) 0%, rgba(94, 214, 138, 0.05) 100%);
    border-top: 2px solid var(--startup-green);
    font-weight: 600;
}

.calendar-execution-table .total-row td {
    color: var(--startup-blue);
    font-weight: 700;
}

/* Months 3-6 specific styling */
.calendar-execution-table.months-3-6 .month-row td:first-child {
    background: #f8fafc;
    border-right: 2px solid #e2e8f0;
}

.calendar-execution-table.months-3-6 .month-cell {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
    font-weight: 700;
    color: var(--startup-blue);
    text-align: center;
    vertical-align: middle;
    border-right: 3px solid #8b5cf6;
}

.calendar-execution-table.months-3-6 .subtotal-row {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-top: 2px solid #8b5cf6;
    font-weight: 600;
}

.calendar-execution-table.months-3-6 .subtotal-row td {
    font-weight: 600;
    color: #8b5cf6;
}

.calendar-execution-table.months-3-6 .spacer-row {
    height: 20px;
    background: transparent;
    border: none;
}

.calendar-execution-table.months-3-6 .spacer-row td {
    border: none;
    padding: 0;
    background: transparent;
}

/* Table notes */
.table-notes {
    background: #f8fafc;
    border-left: 4px solid var(--startup-green);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
}

.table-notes p {
    margin: 0 0 10px 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.table-notes p:last-child {
    margin-bottom: 0;
}

.table-notes strong {
    color: var(--startup-blue);
}

/* OKR Framework Styles */
.okr-framework-intro {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.okr-framework-intro h6 {
    color: var(--startup-blue);
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.okr-structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.okr-component {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #e2e8f0;
}

.okr-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.objective-label {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.kr-label {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.okr-label i {
    font-size: 1.1rem;
}

.okr-description p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.okr-description p:last-child {
    margin-bottom: 0;
}

.okr-example {
    padding: 10px 14px;
    background: #f8fafc;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
    font-size: 0.9rem;
    font-style: italic;
}

/* Business OKRs Section */
.business-okrs-section {
    margin: 32px 0;
}

.business-okrs-section h6 {
    color: var(--startup-blue);
    margin: 0 0 16px 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.business-obj-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 2px solid #dbeafe;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.business-obj-card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 12px;
    display: block;
}

.business-obj-card h7 {
    display: block;
    color: var(--startup-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.business-obj-card p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* PR OKRs Section */
.pr-okrs-section {
    margin: 32px 0 24px 0;
}

.pr-okrs-section h6 {
    color: var(--startup-blue);
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* OKR Set Styling */
.okr-set {
    margin-top: 24px;
}

.okr-objective {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.objective-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
    padding: 18px 24px;
    border-bottom: 2px solid #dbeafe;
    display: flex;
    align-items: center;
    gap: 14px;
}

.objective-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.objective-header h7 {
    color: var(--startup-blue);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

.key-results {
    padding: 20px 24px;
}

.kr-item {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #10b981;
    align-items: start;
}

.kr-item:last-child {
    margin-bottom: 0;
}

.kr-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
    align-self: start;
}

.kr-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.kr-tracking {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

/* OKR Best Practices */
.okr-best-practices {
    margin: 32px 0;
    padding: 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(124, 58, 237, 0.01) 100%);
    border-radius: 12px;
    border: 2px solid #e9d5ff;
}

.okr-best-practices h6 {
    color: var(--startup-blue);
    margin: 0 0 20px 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.practice-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.practice-card i {
    color: #8b5cf6;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.practice-card strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.practice-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* OKR vs SMART Comparison */
.okr-vs-smart {
    margin: 32px 0;
}

.okr-vs-smart h6 {
    color: var(--startup-blue);
    margin: 0 0 20px 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.comparison-table thead th {
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.6;
    font-size: 0.93rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

/* Timeline Phases Styling */
.timeline-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.timeline-icon i {
    color: white;
    font-size: 1.8rem;
}

.timeline-title h6 {
    color: var(--startup-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-title p {
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.timeline-phases {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.timeline-phase {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-phase:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.phase-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(15, 23, 42, 0.05) 100%);
    padding: 20px 24px;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-phase.phase-1 .phase-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.timeline-phase.phase-2 .phase-header {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.timeline-phase.phase-3 .phase-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.phase-badge.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.phase-badge.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.phase-badge.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.phase-header h7 {
    color: var(--startup-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.phase-content {
    padding: 24px 28px;
}

.phase-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.channel-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.channel-pill.high {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.channel-pill.medium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.phase-tactics {
    margin: 0 0 20px;
    padding-left: 20px;
}

.phase-tactics li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.phase-tactics li strong {
    color: var(--startup-blue);
}

.phase-results {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.result-item i {
    color: #10b981;
}

.phase-budget {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-radius: 8px;
    margin-top: 16px;
}

.phase-budget i {
    color: #8b5cf6;
}

/* Timeline Summary */
.timeline-summary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 28px 32px;
    margin: 32px 0;
    display: flex;
    gap: 20px;
}

.summary-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.summary-icon i {
    color: white;
    font-size: 1.8rem;
}

.summary-content h7 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.summary-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.summary-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #d1fae5;
    line-height: 1.7;
}

/* Strategy Principle Box */
.strategy-principle {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 2px solid #e9d5ff;
    border-left-width: 4px;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.strategy-principle i {
    color: #8b5cf6;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.strategy-principle p {
    line-height: 1.7;
    margin: 0;
}

/* Selected Channels Display */
.selected-channels {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.selected-channel {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.selected-channel:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.channel-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.channel-detail h8 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.channel-detail p {
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Why Not Others Box */
.why-not-others {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}

.why-not-others h8 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-not-others h8 i {
    color: #8b5cf6;
}

.why-not-others ul {
    margin: 0;
    padding-left: 20px;
}

.why-not-others li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.why-not-others li strong {
    color: var(--startup-blue);
}

.insight-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #d1fae5;
    font-style: italic;
    line-height: 1.7;
}

/* Tactics Selected Display */
.tactics-selected {
    margin: 20px 0;
}

.tactics-selected h8 {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.tactic-item {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.tactic-item:hover {
    border-color: #10b981;
    transform: translateX(4px);
}

.tactic-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.tactic-detail strong {
    display: block;
    color: var(--startup-blue);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tactic-detail p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-gray);
}

.tactic-note {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(5, 150, 105, 0.04) 100%);
    border: 2px solid #d1fae5;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 16px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tactic-note i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tactic-note p {
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Control/Measurement Section Styles */
.control-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.control-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 28px;
    font-style: italic;
}

.core-concept-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 32px;
}

.core-concept-box h6 {
    color: #059669;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.core-concept-box h6 i {
    color: #10b981;
    font-size: 1.3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.principle-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.principle-item > i {
    color: #10b981;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.principle-item strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 6px;
    font-size: 1rem;
}

.principle-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Metrics Hierarchy */
.metrics-hierarchy {
    margin-top: 28px;
}

.metric-tier {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.metric-tier.tier-1 {
    border-color: #3b82f6;
}

.metric-tier.tier-2 {
    border-color: #8b5cf6;
}

.metric-tier.tier-3 {
    border-color: #10b981;
}

.tier-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.metric-tier.tier-1 .tier-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.metric-tier.tier-2 .tier-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
}

.metric-tier.tier-3 .tier-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
}

.tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.metric-tier.tier-2 .tier-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.metric-tier.tier-3 .tier-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tier-description {
    margin: 8px 0 0 0;
    line-height: 1.6;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.metrics-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: white;
}

.metrics-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
    background: white;
}

.metric-category {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.metric-category h7 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--startup-blue);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 14px 0;
}

.metric-category h7 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.metric-tier.tier-2 .metric-category h7 i {
    color: #8b5cf6;
}

.metric-tier.tier-3 .metric-category h7 i {
    color: #10b981;
}

.metric-category ul {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.metric-category ul li {
    padding: 6px 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.metric-category ul li strong {
    color: var(--startup-blue);
}

.metric-use {
    margin: 12px 0 0 0;
    padding: 10px 12px;
    background: white;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.metric-tier.tier-2 .metric-use {
    border-left-color: #8b5cf6;
}

.metric-tier.tier-3 .metric-use {
    border-left-color: #10b981;
}

.measurement-callout {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.03) 100%);
    border: 2px solid #f59e0b;
    border-radius: 10px;
    margin-top: 28px;
}

.measurement-callout > i {
    color: #f59e0b;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.measurement-callout strong {
    display: block;
    color: #d97706;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.measurement-callout p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Measurement Tools Framework */
.measurement-tools-framework {
    margin-top: 32px;
}

.measurement-tools-framework h6 {
    color: var(--startup-blue);
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tools-stages {
    margin-top: 24px;
}

.tool-stage {
    margin-bottom: 24px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.stage-header {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.stage-header.scrappy {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.03) 100%);
    border-bottom: 2px solid #22c55e;
}

.stage-header.growing {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-bottom: 2px solid #3b82f6;
}

.stage-header.scaled {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-bottom: 2px solid #8b5cf6;
}

.stage-header i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.stage-header.scrappy i {
    color: #22c55e;
}

.stage-header.growing i {
    color: #3b82f6;
}

.stage-header.scaled i {
    color: #8b5cf6;
}

.stage-header strong {
    display: block;
    color: var(--startup-blue);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.stage-header p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.tools-list {
    padding: 24px;
    background: white;
}

.tool-item {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.tool-item:last-of-type {
    border-bottom: none;
}

.tool-item strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.tool-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-gray);
    font-size: 0.93rem;
}

.stage-note {
    margin: 16px 0 0 0;
    padding: 14px 16px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
    line-height: 1.6;
    font-size: 0.93rem;
}

.tools-recommendation {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 2px solid #10b981;
    border-radius: 10px;
    margin-top: 24px;
}

.tools-recommendation > i {
    color: #10b981;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tools-recommendation strong {
    display: block;
    color: #059669;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.tools-recommendation p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Reporting Cadence */
.reporting-cadence {
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%);
    border-radius: 12px;
    border: 2px solid #dbeafe;
}

.reporting-cadence h6 {
    color: var(--startup-blue);
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cadence-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #e2e8f0;
}

.cadence-frequency {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.cadence-content strong {
    display: block;
    color: var(--startup-blue);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cadence-content ul {
    list-style: disc;
    margin: 0 0 14px 18px;
    padding: 0;
}

.cadence-content ul li {
    padding: 4px 0;
    line-height: 1.5;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.cadence-action {
    margin: 0;
    padding: 10px 12px;
    background: #f1f5f9;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* KPI Table Enhancements */
.tier-1-row {
    background: rgba(59, 130, 246, 0.03);
}

.tier-2-row {
    background: rgba(139, 92, 246, 0.03);
}

.tier-3-row {
    background: rgba(16, 185, 129, 0.03);
}

.tier-1-row td,
.tier-2-row td,
.tier-3-row td {
    border-left: 3px solid #3b82f6;
}

.tier-2-row td {
    border-left-color: #8b5cf6;
}

.tier-3-row td {
    border-left-color: #10b981;
}

/* Section 3 Responsive Adjustments */
@media (max-width: 768px) {
    .two-column-grid,
    .analysis-grid,
    .audience-framework,
    .positioning-framework,
    .channel-tactics-grid,
    .promise-grid,
    .insight-grid,
    .summary-grid,
    .criteria-cards-enhanced,
    .optimization-grid {
        grid-template-columns: 1fr;
    }
    
    .dimension-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .dimension-icon {
        width: 48px;
        height: 48px;
    }
    
    .dimension-icon i {
        font-size: 1.5rem;
    }
    
    .dimension-content h7 {
        font-size: 1.1rem;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 20px;
    }
    
    .model-content {
        padding: 20px;
    }
    
    .optimization-principle {
        flex-direction: column;
        padding: 16px;
    }
    
    .principle-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .action-warning {
        flex-direction: column;
        padding: 16px 18px;
    }
    
    .channel-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .channel-label {
        min-width: auto;
    }
    
    .month-summary {
        grid-template-columns: 1fr;
    }
    
    .compact-grid {
        grid-template-columns: 1fr;
    }
    
    .rhythm-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .month-header-full {
        padding: 20px;
    }
    
    .month-channels {
        padding: 20px;
    }
    
    .month-header-full h6 {
        font-size: 1.3rem;
    }
    
    .calendar-table-section {
        padding: 20px;
    }
    
    .table-responsive {
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Ensure all tables can scroll horizontally on mobile */
    .table-responsive table {
        min-width: 600px; /* Minimum width to trigger horizontal scroll */
    }
    
    .calendar-execution-table {
        font-size: 0.85rem;
        min-width: 700px; /* Wider tables need more space */
    }
    
    .calendar-execution-table th,
    .calendar-execution-table td {
        padding: 10px 12px;
    }
    
    .calendar-execution-table th {
        font-size: 0.85rem;
    }
    
    .table-notes {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .framework-header {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .framework-icon {
        width: 44px;
        height: 44px;
    }
    
    .framework-title h6 {
        font-size: 1.2rem;
    }
    
    .framework-title p {
        font-size: 0.95rem;
    }
    
    .criteria-card-enhanced {
        padding: 20px 18px;
    }
    
    .criteria-icon-large {
        width: 48px;
        height: 48px;
    }
    
    .criteria-icon-large i {
        font-size: 1.5rem;
    }
    
    .criteria-header-enhanced h7 {
        font-size: 1.1rem;
    }
    
    .criteria-content p {
        font-size: 1rem;
    }
    
    .criteria-tip {
        font-size: 0.85rem;
    }
    
    .swot-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-insight,
    .section-approach,
    .tactics-intro-header,
    .timeline-header,
    .timeline-summary {
        flex-direction: column;
        padding: 20px;
    }
    
    .insight-icon,
    .approach-icon,
    .intro-icon,
    .timeline-icon,
    .summary-icon {
        width: 48px;
        height: 48px;
    }
    
    .insight-icon i,
    .approach-icon i,
    .intro-icon i,
    .timeline-icon i,
    .summary-icon i {
        font-size: 1.3rem;
    }
    
    .tactic-card-header,
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .channel-prioritization,
    .priority-table {
        font-size: 0.85rem;
    }
    
    .channel-prioritization th,
    .channel-prioritization td,
    .priority-table th,
    .priority-table td {
        padding: 10px 12px;
    }
    
    .promise-card {
        flex-direction: column;
    }
    
    .phase-results {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .phase-channels {
        flex-direction: column;
    }
    
    .selected-channel,
    .tactic-item {
        flex-direction: row;
    }
    
    .channel-number,
    .tactic-number {
        margin-bottom: 0;
    }
    
    .strategy-principle {
        flex-direction: column;
    }
    
    .sostac-item {
        padding: 20px;
    }
    
    .strategy-step .step-header,
    .strategy-step .step-content {
        padding: 20px;
    }
    
    .content-box,
    .analysis-card,
    .swot-item {
        padding: 18px;
    }
    
    .kpi-table {
        font-size: 0.85rem;
    }
    
    .kpi-table th,
    .kpi-table td {
        padding: 10px 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 12px 20px;
    }

    .breadcrumb {
        font-size: 0.85rem;
        gap: 8px;
    }

    .section-hero {
        padding: 40px 20px;
    }

    .section-hero h1 {
        font-size: 1.75rem;
    }

    .section-hero .section-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .section-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-cta {
        margin-top: 24px;
        width: 100%;
    }

    .btn-start-section {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .section-navigation {
        padding: 30px 20px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .nav-btn {
        max-width: 100%;
    }

    .nav-btn i {
        font-size: 1.2rem;
    }

    .nav-label {
        font-size: 0.8rem;
    }

    .nav-title {
        font-size: 0.9rem;
    }

    .course-hero {
        padding: 80px 20px 60px;
    }

    .course-hero h1 {
        font-size: 2rem;
    }

    .course-subtitle {
        font-size: 1.1rem;
    }

    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .course-cta {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .course-cta .btn-primary,
    .course-cta .btn-secondary,
    .course-cta .btn-primary-large,
    .course-cta .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .module-header {
        padding: 20px;
    }

    .module-header h3 {
        color: white;
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .module-content {
        padding: 24px 20px;
    }

    .step {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }

    .benefits-grid,
    .components-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .download-cta {
        flex-direction: column;
        text-align: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .process-visual {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .distribution-options {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 24px 20px;
    }

    .step-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-header h4 {
        font-size: 1.25rem;
    }

    .step-details {
        padding: 20px 16px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .metrics-table {
        font-size: 0.85rem;
        min-width: 500px; /* Ensure horizontal scroll on mobile */
    }

    .metrics-table th,
    .metrics-table td {
        padding: 10px 12px;
    }
    
    /* Additional table mobile responsiveness */
    .kpi-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    .kpi-table th,
    .kpi-table td {
        padding: 10px 12px;
    }
    
    .channel-prioritization {
        font-size: 0.85rem;
        min-width: 650px;
    }
    
    .channel-prioritization th,
    .channel-prioritization td {
        padding: 10px 12px;
    }
    
    .comparison-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
    
    .distribution-table {
        min-width: 650px;
        font-size: 0.85rem;
    }
    
    .distribution-table th,
    .distribution-table td {
        padding: 10px 12px;
    }
    
    /* Ensure table wrappers have smooth scrolling */
    .comparison-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    .formula-box {
        padding: 16px;
    }

    .pro-tip,
    .warning-box,
    .cycle-note {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }

    .pro-tip i,
    .warning-box i,
    .cycle-note i {
        font-size: 1.1rem;
    }

    .process-arrow {
        margin: 12px 0;
    }

    .process-arrow i {
        font-size: 1.5rem;
    }

    .next-section-cta {
        margin: 32px 0;
    }

    .cta-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .cta-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-content {
        padding: 24px 20px;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .tactics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }

    .btn-continue-section {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Section 2 Mobile Responsive */
    .intro-header {
        padding: 24px 20px;
    }

    .intro-header h3 {
        font-size: 1.4rem;
    }

    .intro-description {
        font-size: 1rem;
    }

    .channels-section {
        padding: 32px 20px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .channel-card {
        padding: 24px 20px;
    }

    .channel-icon {
        width: 56px;
        height: 56px;
    }

    .channel-icon i {
        font-size: 1.5rem;
    }

    .comparison-section {
        padding: 32px 20px;
    }

    .key-insight-box {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .insight-icon {
        width: 48px;
        height: 48px;
    }

    .insight-icon i {
        font-size: 1.5rem;
    }

    .insight-content h4 {
        font-size: 1.2rem;
    }

    .insight-content p {
        font-size: 0.95rem;
    }

    /* Control/Measurement Mobile Responsive */
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .metrics-grid-3col,
    .metrics-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .cadence-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .core-concept-box,
    .measurement-callout,
    .tools-recommendation,
    .reporting-cadence {
        padding: 20px;
    }

    .stage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tools-list {
        padding: 16px;
    }

    /* OKR Mobile Responsive */
    .okr-structure-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-objectives-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .okr-framework-intro,
    .okr-best-practices {
        padding: 20px;
    }

    .objective-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kr-item {
        flex-direction: column;
        gap: 10px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 12px;
    }

    .tactics-vs-channels {
        padding: 24px 20px;
    }

    .tactic-block {
        padding: 24px 20px;
    }

    .tactic-block h5 {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tactic-number {
        font-size: 0.9rem;
        padding: 4px 12px;
    }

    .tactic-meta {
        flex-direction: column;
        gap: 8px;
    }

    .tactic-meta span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .tactic-overview {
        padding: 20px 16px;
    }

    /* New Structured Sections Mobile */
    .example-content {
        padding: 20px;
    }

    .question-block {
        padding: 16px 20px;
    }

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

    .structure-item {
        flex-direction: row;
        padding: 12px;
    }

    .item-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .item-content strong {
        font-size: 0.95rem;
    }

    .item-content p {
        font-size: 0.85rem;
    }

    .citation-worthy-box .characteristics-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .char-icon {
        width: 40px;
        height: 40px;
    }

    .char-icon i {
        font-size: 1.2rem;
    }

    .char-content strong {
        font-size: 0.95rem;
    }

    .char-content p {
        font-size: 0.85rem;
    }

    .distribution-guide {
        padding: 20px;
    }

    .guide-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .guide-header h4 {
        font-size: 1.4rem;
    }

    .guide-intro {
        font-size: 0.95rem;
    }

    .distribution-table th,
    .distribution-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .integration-section {
        padding: 24px 20px;
    }

    .integration-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 24px;
    }

    .integration-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .integration-text h3 {
        font-size: 1.5rem;
    }

    .timeline-roadmap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .roadmap-phase {
        padding: 20px;
    }

    .quick-wins-box {
        padding: 24px 20px;
    }

    .quick-wins-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compounding-effect {
        flex-direction: column;
        padding: 24px 20px;
    }

    .timeline-growth {
        gap: 8px;
    }

    .growth-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .trend-card {
        padding: 24px 20px;
    }

    .trend-badge {
        right: 16px;
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .stat-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .playbook-steps {
        flex-direction: column;
        gap: 16px;
        overflow-x: visible;
        padding: 0;
    }

    .playbook-step {
        min-width: 100%;
    }

    .playbook-arrow {
        transform: rotate(90deg);
    }

    .future-outlook {
        padding: 24px 20px;
    }

    .outlook-header {
        flex-direction: column;
        text-align: center;
    }

    .module-conclusion {
        padding: 24px 20px;
    }

    .conclusion-content h3 {
        font-size: 1.5rem;
    }

    .intro-module .module-content {
        padding: 24px 20px;
    }

    .intro-module h3 {
        font-size: 1.5rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .channel-card {
        padding: 20px;
    }
}

/* Channels Overview */
.channels-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.channel-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.channel-item:hover {
    border-color: var(--startup-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-white);
    margin: 0 auto 16px;
}

.channel-item h5 {
    color: var(--startup-blue);
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.channel-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* AEO Tactics */
.aeo-tactics {
    margin: 32px 0;
}

.tactic-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
}

.tactic-number {
    position: absolute;
    top: -16px;
    left: 32px;
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
}

.tactic-card h5 {
    color: var(--startup-blue);
    font-size: 1.5rem;
    margin: 8px 0 12px;
}

.tactic-card h6 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 24px 0 12px;
    font-weight: 600;
}

.execution-steps {
    margin: 20px 0;
}

.exec-step {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 3px solid var(--startup-green);
}

.exec-step strong {
    color: var(--startup-blue);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.exec-step p {
    margin: 0 0 8px;
    color: var(--text-gray);
}

.exec-step ul {
    margin: 8px 0;
    padding-left: 24px;
}

.exec-step li {
    margin-bottom: 4px;
    color: var(--text-gray);
}

/* AI Data Benefits */
.ai-data-benefits {
    margin: 20px 0;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-point i {
    color: var(--startup-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-point p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Authority Criteria */
.authority-criteria {
    margin: 24px 0;
}

.criteria-item {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.criteria-item strong {
    color: var(--startup-blue);
    display: block;
    margin-bottom: 4px;
}

.criteria-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Framework Table */
.framework-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Entity Checklist */
.entity-checklist {
    margin: 24px 0;
}

.entity-checklist h6 {
    color: var(--startup-blue);
    margin: 20px 0 12px;
    font-size: 1.1rem;
}

/* Code Example */
.code-example {
    margin: 24px 0;
}

.code-example h6 {
    color: var(--startup-blue);
    margin: 0 0 12px;
}

.code-example code {
    display: block;
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Example Format */
.example-format {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
}

.example-format p {
    margin: 0 0 12px;
}

.example-format strong {
    color: var(--startup-blue);
}

/* Intro Module */
.intro-module .module-header {
    background: linear-gradient(135deg, var(--startup-green) 0%, var(--light-green) 100%);
}

@media (max-width: 768px) {
    .channels-overview {
        grid-template-columns: 1fr;
    }

    .tactic-card {
        padding: 24px 20px;
    }

    .tactic-number {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .course-hero h1 {
        font-size: 1.75rem;
    }

    .course-subtitle {
        font-size: 1rem;
    }

    .module-content > p,
    .module-content h4 {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .code-example code {
        font-size: 0.75rem;
        padding: 15px;
    }
}
