/* ============================================
   Morning Routine App - Businessplan Styling
   Brand Colors:
   - Primary: #059669
   - Accent: #10B981
   - Accent Light: #34D399
   - Background: #111111
   - Text: #F4F4F4
   Fonts: Inter (body), Titillium Web (headings)
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #059669;
    --accent: #10B981;
    --accent-light: #34D399;
    --accent-dark: #047857;
    --bg: #111111;
    --bg-white: #1A1A1A;
    --bg-card: #1A1A1A;
    --text: #F4F4F4;
    --text-light: #9CA3AF;
    --text-muted: #6B7280;
    --border: #333333;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', 'Inter', Arial, Helvetica, sans-serif;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Titillium Web', 'Inter', Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #F4F4F4;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-text:hover {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-links a:hover {
    background: #1A1A1A;
    color: var(--accent-light);
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #059669 0%, #034d38 40%, #047857 100%);
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(52, 211, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.2) 0%, transparent 40%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: drift 30s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-btn {
    font-size: 16px;
    padding: 14px 36px;
}

.hero-stats-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -24px;
    margin-bottom: 40px;
    font-style: italic;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   1. Samenvatting
   ============================================ */
.summary-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.summary-main .lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.summary-main p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.summary-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.summary-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-list strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.info-list span {
    font-size: 14px;
    color: var(--text);
}

/* ============================================
   2. Dienst / Product
   ============================================ */
.service-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.service-intro h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.service-intro p {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--accent-light);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Frameworks Section
   ============================================ */
.frameworks-section {
    margin-top: 56px;
}

.frameworks-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    text-align: center;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.framework-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.framework-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--accent-light);
}

.framework-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.framework-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.framework-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.framework-card p:last-child {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Tech Tags
   ============================================ */
.tech-stack-section {
    margin-top: 56px;
    text-align: center;
}

.tech-stack-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    background: var(--bg-card);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.tech-tag:hover {
    border-color: var(--accent);
    background: rgba(5, 150, 105, 0.1);
}

/* ============================================
   Pricing Card (single)
   ============================================ */
.service-pricing {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--accent);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    padding: 32px;
    text-align: center;
    color: white;
}

.pricing-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price {
    font-size: 48px;
    font-weight: 800;
}

.price-suffix {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 28px 32px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

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

.pricing-note {
    padding: 16px 32px 28px;
    font-size: 13px;
    color: var(--text-light);
    background: rgba(16, 185, 129, 0.08);
}

/* ============================================
   Pricing Tiers (3 columns)
   ============================================ */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.pricing-tier-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.pricing-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}

.pricing-tier-featured {
    border-color: var(--accent);
}

.pricing-tier-header {
    padding: 32px 24px;
    text-align: center;
}

.pricing-tier-featured .pricing-tier-header {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
}

.pricing-tier-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.pricing-tier-featured .pricing-tier-badge {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-tier-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
}

.pricing-tier-featured .pricing-tier-price {
    color: white;
}

.pricing-tier-period {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-tier-features {
    list-style: none;
    padding: 28px 24px;
}

.pricing-tier-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

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

.pricing-tier-cta {
    padding: 0 24px 28px;
    text-align: center;
}

.pricing-tier-cta .btn {
    width: 100%;
}

/* ============================================
   Pricing Progression
   ============================================ */
.pricing-progression {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-step {
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    border: 2px solid var(--border);
    transition: all var(--transition);
    min-width: 140px;
}

.pricing-step.pricing-step-current {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.pricing-step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pricing-step-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
}

.pricing-step.pricing-step-current .pricing-step-price {
    color: var(--accent-light);
}

.pricing-step-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-arrow {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-note-block {
    background: rgba(16, 185, 129, 0.08);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-note-block strong {
    color: var(--text);
}

/* ============================================
   Pricing Progression v2
   ============================================ */
.pricing-progression-v2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}

.pricing-phase-card {
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 2px solid var(--border);
    transition: all var(--transition);
    min-width: 160px;
    flex: 1;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

.pricing-phase-card.pricing-phase-active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
    background: var(--bg-white);
}

.pricing-phase-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    background: var(--accent);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.pricing-phase-card.pricing-phase-active .pricing-phase-badge {
    background: var(--primary);
}

.pricing-phase-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.pricing-phase-card.pricing-phase-active .pricing-phase-price {
    color: var(--accent-light);
}

.pricing-phase-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
}

.pricing-phase-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-connector {
    display: flex;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
}

.pricing-connector::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 2px;
}

.pricing-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--accent);
}

/* ============================================
   Tech Tags (breed-tags pattern, dark mode)
   ============================================ */
.target-breeds {
    text-align: center;
}

.target-breeds h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent);
}

.target-breeds > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.breed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.breed-tag {
    background: var(--bg-card);
    color: var(--text);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.breed-tag:hover {
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-light);
}

/* ============================================
   3. Operationeel Model
   ============================================ */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.op-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.op-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.op-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.op-card h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

.op-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Route Planning */
.route-section {
    margin-bottom: 56px;
}

.route-section h3,
.schedule-section h3,
.growth-model h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: center;
}

.route-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.route-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.route-card:hover {
    border-color: var(--accent);
}

.route-week {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.route-city {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.route-detail {
    font-size: 13px;
    color: var(--text-muted);
}

/* Timeline / Dagplanning */
.schedule-section {
    margin-bottom: 56px;
}

.timeline {
    max-width: 600px;
    margin: 28px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 12px 0;
    position: relative;
}

.timeline-time {
    width: 48px;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    padding-top: 4px;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px 20px;
    flex: 1;
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg);
}

.timeline-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text);
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-light);
}

/* Growth Model */
.growth-model {
    margin-bottom: 0;
}

.growth-model > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 8px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.growth-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.growth-phase {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.growth-phase.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.phase-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.growth-phase h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.growth-phase p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.phase-capacity {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
}

/* ============================================
   Tech Stack Detail Table
   ============================================ */
.tech-stack-detail {
    margin-top: 56px;
}

.tech-stack-detail h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

/* ============================================
   Revenue Mix
   ============================================ */
.revenue-mix {
    margin-top: 48px;
}

.revenue-mix h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   Scenario Analysis
   ============================================ */
.scenario-analysis {
    margin-top: 48px;
}

.scenario-analysis h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   4. Financieel
   ============================================ */
.finance-block {
    margin-bottom: 48px;
}

.finance-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.finance-block > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.finance-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.finance-table th {
    background: var(--primary);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finance-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.finance-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.highlight-row {
    background: rgba(5, 150, 105, 0.15) !important;
}

.highlight-row td {
    color: var(--text);
    font-weight: 600;
}

/* Result Cards */
.result-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    text-align: center;
}

.result-card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    color: white;
    border: none;
}

.result-card-highlight .result-label,
.result-card-highlight .result-sub {
    color: rgba(255, 255, 255, 0.8);
}

.result-card-highlight .result-amount {
    color: white;
}

.result-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.result-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.result-amount.negative {
    color: #EF4444;
}

.result-sub {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   5. Groeistrategie
   ============================================ */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.strategy-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
    border-color: var(--accent-light);
}

.strategy-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.strategy-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.strategy-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Market Analysis */
.market-analysis h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    text-align: center;
}

.market-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.market-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
}

.market-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.market-point strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text);
}

.market-point p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Feasibility Section (Scorecard)
   ============================================ */
.scorecard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.scorecard-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scorecard-label {
    font-size: 13px;
    color: var(--text-light);
    min-width: 140px;
    flex-shrink: 0;
}

.scorecard-bar-bg {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.scorecard-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.scorecard-value {
    font-size: 14px;
    font-weight: 700;
    min-width: 28px;
    text-align: right;
    flex-shrink: 0;
}

.score-red .scorecard-bar-fill { background: #EF4444; }
.score-red .scorecard-value { color: #EF4444; }
.score-amber .scorecard-bar-fill { background: #F59E0B; }
.score-amber .scorecard-value { color: #F59E0B; }
.score-green .scorecard-bar-fill { background: #10B981; }
.score-green .scorecard-value { color: #10B981; }
.score-blue .scorecard-bar-fill { background: var(--accent-light); }
.score-blue .scorecard-value { color: var(--accent-light); }

.scorecard-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.scorecard-overall-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.scorecard-overall-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-light);
}

/* ============================================
   Risk Analysis Table
   ============================================ */
.risk-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.risk-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.risk-table th {
    background: var(--primary);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-table td {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.risk-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.risk-high { color: #EF4444; font-weight: 700; }
.risk-medium { color: #F59E0B; font-weight: 700; }
.risk-low { color: #10B981; font-weight: 700; }

/* ============================================
   6. To-Do / Actieplan Section
   ============================================ */
.todo-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.todo-progress {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: #333333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
}

/* View Toggle */
.todo-view-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    background: #333333;
    border-radius: 50px;
    padding: 4px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.view-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.view-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.view-btn:not(.active):hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

/* Timeline Phase Groups */
.todo-timeline {
    /* Container for timeline view */
}

.timeline-phase-group {
    margin-bottom: 32px;
}

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

.timeline-phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
}

.timeline-phase-header .milestone-phase-badge {
    flex-shrink: 0;
}

.timeline-phase-header h3 {
    font-size: 16px;
    font-weight: 700;
    flex: 1;
    color: var(--text);
}

.timeline-phase-header .milestone-phase-period {
    flex-shrink: 0;
}

.timeline-phase-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.timeline-phase-list {
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}

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

/* Todo Category */
.todo-category {
    margin-bottom: 32px;
}

.todo-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius) var(--radius) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    user-select: none;
    transition: background var(--transition);
}

.todo-category-header:hover {
    background: #222222;
}

.category-icon {
    font-size: 22px;
}

.todo-category-header h3 {
    font-size: 16px;
    font-weight: 700;
    flex: 1;
    color: var(--text);
}

.category-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Todo List */
.todo-list {
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}

.todo-item {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

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

.todo-item:hover {
    background: rgba(16, 185, 129, 0.04);
}

.todo-item label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
}

.todo-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    margin-top: 2px;
    background: var(--bg);
}

.todo-item input[type="checkbox"]:checked ~ .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.todo-item input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.todo-item input[type="checkbox"]:checked ~ .todo-text {
    opacity: 0.5;
}

.todo-item input[type="checkbox"]:checked ~ .todo-text strong {
    text-decoration: line-through;
}

.todo-text {
    flex: 1;
    transition: opacity var(--transition);
}

.todo-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text);
    transition: all var(--transition);
}

.todo-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Todo Actions */
.todo-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* ============================================
   Person Badges
   ============================================ */
.person-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.person-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    margin-top: 56px;
}

.team-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-align: center;
}

.team-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.team-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.team-nickname {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 8px;
}

.team-role {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.team-contribution {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   Milestone Roadmap
   ============================================ */
.milestone-roadmap {
    margin-top: 56px;
}

.milestone-roadmap > h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-align: center;
}

.milestone-roadmap > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Milestone Progress Bar */
.milestone-progress {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.milestone-progress-bar {
    height: 10px;
    background: var(--border);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.milestone-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4A017, #E6B422, #F0C850);
    border-radius: 5px;
    width: 0%;
    transition: width 0.6s ease;
}

.milestone-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #D4A017;
}

/* Milestone Phase */
.milestone-phase {
    margin-bottom: 40px;
}

.milestone-phase:last-child {
    margin-bottom: 0;
}

.milestone-phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.milestone-phase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.milestone-phase-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.milestone-phase-period {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Milestone Track */
.milestone-track {
    position: relative;
    padding-left: 40px;
}

.milestone-track::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    border-radius: 2px;
}

/* Milestone Node */
.milestone-node {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.milestone-node:last-child {
    margin-bottom: 0;
}

/* Milestone Checkbox */
.milestone-checkbox {
    position: absolute;
    left: -40px;
    top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    flex-shrink: 0;
}

.milestone-checkbox:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.milestone-checkbox.checked {
    background: #D4A017;
    border-color: #D4A017;
}

.milestone-checkbox.checked::after {
    content: '';
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

/* Milestone Card */
.milestone-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.milestone-node.completed .milestone-card {
    opacity: 0.6;
}

.milestone-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.milestone-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.milestone-reward {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 5px 14px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #E6B422;
}

/* Milestone Celebration Glow */
@keyframes milestoneGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
    50% { box-shadow: 0 0 20px 8px rgba(212, 160, 23, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

@keyframes milestoneGlowGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.6); }
    50% { box-shadow: 0 0 30px 12px rgba(212, 160, 23, 0.3); }
    100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

.milestone-card.glow-small {
    animation: milestoneGlow 1s ease-out;
}

.milestone-card.glow-medium {
    animation: milestoneGlowGold 1.2s ease-out;
    border-color: #D4A017;
}

.milestone-card.glow-large {
    animation: milestoneGlowGold 1.5s ease-out;
    border-color: #D4A017;
}

/* Confetti */
.confetti-piece {
    position: fixed;
    top: -10px;
    width: 10px;
    height: 10px;
    z-index: 99998;
    pointer-events: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Celebration Banner */
.celebration-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #D4A017, #F0C850);
    color: white;
    padding: 32px 48px;
    border-radius: var(--radius-lg);
    font-family: 'Titillium Web', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    z-index: 99999;
    box-shadow: 0 8px 40px rgba(212, 160, 23, 0.4);
    animation: bannerPop 0.5s ease forwards, bannerFade 0.5s ease 3s forwards;
}

@keyframes bannerPop {
    0% { transform: translate(-50%, -50%) scale(0); }
    60% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes bannerFade {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* ============================================
   Transparante Inkomensberekening
   ============================================ */
.calc-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

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

.calc-method-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.calc-method-card .result-amount {
    font-size: 28px;
}

.calc-method-card .result-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.calc-method-card .result-sub {
    font-size: 12px;
    margin-top: 8px;
}

.calc-method-card.calc-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    border-color: transparent;
    color: white;
}

.calc-method-card.calc-highlight .result-label,
.calc-method-card.calc-highlight .result-sub {
    color: rgba(255, 255, 255, 0.8);
}

.calc-method-card.calc-highlight .result-amount {
    color: white;
}

.calc-download-section {
    text-align: center;
    margin-top: 32px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-download:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

.btn-download svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

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

.footer-links li {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .nav-toggle,
    .todo-actions,
    .todo-view-toggle,
    .hero-btn,
    .calc-download-section {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 24px;
        page-break-after: always;
    }

    .section {
        padding: 32px 0;
        page-break-inside: avoid;
    }

    body {
        font-size: 12px;
        background: white;
        color: #2D2D2D;
    }

    .feature-card,
    .op-card,
    .strategy-card,
    .route-card,
    .milestone-card,
    .team-card,
    .framework-card,
    .pricing-tier-card {
        box-shadow: none;
        border: 1px solid #ddd;
        background: white;
    }

    .finance-table {
        background: white;
    }

    .finance-table td {
        color: #2D2D2D;
    }

    .summary-card,
    .result-card {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .todo-item:hover {
        background: none;
    }

    .confetti-piece,
    .celebration-banner {
        display: none !important;
    }

    .section-alt {
        background: #F9F9F9;
    }

    .section-header h2,
    .milestone-card-title,
    .todo-text strong {
        color: #2D2D2D;
    }

    .result-amount {
        color: #047857;
    }

    .highlight-row {
        background: #ECFDF5 !important;
    }

    .scorecard-bar-bg {
        background: #E5E7EB;
    }

    .scorecard-value {
        color: #047857 !important;
    }
}

/* ============================================
   Animations (Intersection Observer)
   ============================================ */
.animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-target:nth-child(2) { transition-delay: 0.08s; }
.animate-target:nth-child(3) { transition-delay: 0.16s; }
.animate-target:nth-child(4) { transition-delay: 0.24s; }
.animate-target:nth-child(5) { transition-delay: 0.32s; }
.animate-target:nth-child(6) { transition-delay: 0.40s; }

/* Active nav link */
.nav-links a.active-link {
    color: var(--accent-light);
    background: rgba(16, 185, 129, 0.1);
}

/* Collapsed category header */
.todo-category-header.collapsed {
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
}

/* Hamburger animation */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Responsive - Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 20px var(--shadow);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

    .growth-phases {
        grid-template-columns: 1fr;
    }

    .pricing-progression {
        flex-direction: column;
    }

    .pricing-arrow {
        transform: rotate(90deg);
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .calc-comparison-grid {
        grid-template-columns: 1fr;
    }

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

    .market-points {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Pricing v2 responsive */
    .pricing-progression-v2 {
        flex-direction: column;
        align-items: center;
    }

    .pricing-phase-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-connector {
        width: auto;
        height: 32px;
        justify-content: center;
    }

    .pricing-connector::before {
        width: 3px;
        height: 100%;
    }

    .pricing-connector::after {
        right: auto;
        bottom: -4px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        border-top: 8px solid var(--accent);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: none;
    }

    /* Team grid responsive */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Scorecard responsive */
    .scorecard-grid {
        grid-template-columns: 1fr;
    }

    /* Milestone track responsive */
    .milestone-track {
        padding-left: 36px;
    }

    .milestone-checkbox {
        left: -36px;
        width: 28px;
        height: 28px;
    }

    /* View toggle responsive */
    .todo-view-toggle {
        max-width: 280px;
    }

    .view-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Tech tags responsive */
    .tech-tags {
        gap: 8px;
    }

    .tech-tag {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* ============================================
   Responsive - Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

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

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

    .section {
        padding: 48px 0;
    }

    .hero {
        padding: 80px 16px 48px;
    }

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

    .pricing-tiers {
        gap: 16px;
    }

    .framework-grid {
        gap: 16px;
    }

    .result-cards {
        gap: 12px;
    }

    .result-amount {
        font-size: 26px;
    }

    .milestone-phase-header {
        flex-wrap: wrap;
    }

    .milestone-phase-period {
        width: 100%;
        margin-top: 4px;
    }

    .todo-item label {
        padding: 12px 16px;
    }

    .finance-table th,
    .finance-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .container {
        padding: 0 16px;
    }

    .summary-card {
        padding: 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .calc-method-card {
        padding: 20px 16px;
    }

    .calc-method-card .result-amount {
        font-size: 24px;
    }

    .btn-download {
        padding: 12px 24px;
        font-size: 14px;
    }

    .scorecard-label {
        min-width: 100px;
        font-size: 12px;
    }
}
