﻿:root {
  --bg: #FAFAF8; --panel: #FFFFFF; --border: #E8E0D8;
  --text: #1A1A1A; --muted: #6B6459;
  --accent: #E8642A; --accent-2: #C44E1A;
  --green: #10b981; --red: #ef4444; --amber: #f59e0b;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; }
a { text-decoration: none; }

/* NAV */
.page-nav { background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.page-nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 58px; display: flex; align-items: center; justify-content: space-between; }
.page-brand { font-size: 17px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 8px; letter-spacing: -.02em; }
.page-brand span { color: var(--accent); }
.page-nav-links { display: flex; align-items: center; gap: 20px; }
.page-nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.page-nav-links a:hover { color: var(--text); }
.page-cta { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white !important; padding: 8px 16px; border-radius: 8px; font-weight: 700 !important; }
@media (max-width:600px) { .page-nav-links a:not(.page-cta) { display: none; } }

/* PAGE LAYOUT */
.page-main { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }
.page-container { max-width: 1100px; margin: 0 auto; }
.page-header { text-align: center; padding: 80px 24px 60px; max-width: 700px; margin: 0 auto; }
.page-tag { display: inline-block; background: rgba(232,100,42,.1); color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.page-header h1 { font-size: 46px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.15; }
.page-header p { font-size: 17px; color: var(--muted); line-height: 1.65; }
.page-header a { color: var(--accent); font-weight: 600; }
@media (max-width:600px) { .page-header h1 { font-size: 30px; } .page-header { padding: 50px 0 40px; } }

/* SECTIONS */
.page-section { padding: 80px 24px; }
.alt-section { background: linear-gradient(160deg, #FFF3E8 0%, #FFF3E8 100%); }
.page-section h2 { font-size: 36px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.section-p { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.6; margin-bottom: 48px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 10px; transition: opacity .15s, transform .08s; }
.btn-primary:hover { opacity: .92; transform: translateY(-1px); color: white; }
.btn-ghost { display: inline-flex; align-items: center; font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 10px; border: 1.5px solid var(--border); color: var(--text); transition: background .15s, border-color .15s; }
.btn-ghost:hover { background: var(--panel); border-color: var(--accent); color: var(--accent); }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 40px; }
.faq-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.faq-item summary { padding: 18px 20px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.faq-cta { text-align: center; padding: 80px 24px; background: linear-gradient(160deg, #FFF3E8, #FFF3E8); border-radius: 20px; margin-top: 60px; }
.faq-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.faq-cta p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.faq-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PRICING ── */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; }
.toggle-btn { background: var(--panel); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 18px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--muted); transition: all .15s; display: flex; align-items: center; gap: 6px; }
.toggle-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(232,100,42,.06); }
.save-badge { background: var(--green); color: white; font-size: 11px; padding: 2px 7px; border-radius: 999px; }

.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; }
.pricing-card { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 32px; position: relative; transition: box-shadow .2s; }
.pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,100,42,.2); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; }
.plan-price { font-size: 44px; font-weight: 800; letter-spacing: -.03em; color: var(--text); margin-bottom: 8px; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.45; }
.plan-btn { display: block; text-align: center; padding: 12px; border-radius: 10px; font-size: 14.5px; font-weight: 700; margin-bottom: 24px; transition: opacity .15s; }
.plan-btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; }
.plan-btn.outline { border: 1.5px solid var(--border); color: var(--text); }
.plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 8px; padding: 4px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.plan-features li::before { flex-shrink: 0; margin-top: 1px; }
.plan-features li.yes::before { content: "✓"; color: var(--green); font-weight: 700; }
.plan-features li.no::before { content: "✕"; color: var(--border); }

/* COMPARE TABLE */
.compare-section { margin-bottom: 60px; }
.compare-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th { background: var(--text); color: white; padding: 14px 16px; text-align: left; font-weight: 600; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border: none; }
.compare-table tr:hover td { background: rgba(232,100,42,.03); }
.table-section { background: rgba(232,100,42,.06); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }

/* LAYOFF SUPPORT BANNER */
.support-banner { background: linear-gradient(135deg, rgba(232,100,42,.08), rgba(196,78,26,.08)); border: 1px solid rgba(232,100,42,.2); border-radius: 18px; padding: 32px 40px; display: flex; align-items: center; gap: 32px; margin-bottom: 60px; flex-wrap: wrap; }
.sb-icon { font-size: 48px; flex-shrink: 0; }
.support-banner h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.support-banner p { font-size: 15px; color: var(--muted); margin-bottom: 12px; line-height: 1.55; }
.sb-link { color: var(--accent); font-weight: 700; font-size: 14px; }

/* ── SUPPORT PAGE ── */
.support-hero { background: linear-gradient(160deg, #9B2D0A 0%, #E8642A 50%, #C44E1A 100%); color: white; padding: 100px 24px 80px; }
.support-hero-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.support-hero .page-tag { background: rgba(255,255,255,.2); color: white; border: 1px solid rgba(255,255,255,.3); }
.support-hero h1 { font-size: 46px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.03em; }
.support-hero p { font-size: 18px; opacity: .85; margin-bottom: 32px; line-height: 1.6; }
.support-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width:600px) { .support-hero h1 { font-size: 30px; } }

.layoff-banner { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: -40px 24px 0; box-shadow: 0 8px 32px rgba(0,0,0,.1); position: relative; z-index: 1; }
@media (max-width:700px) { .layoff-banner { grid-template-columns: 1fr; } }
.layoff-banner h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.layoff-banner p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.lb-form { display: flex; flex-direction: column; gap: 10px; }
.lb-form input { padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 10px; font: inherit; font-size: 14px; color: var(--text); background: var(--bg); }
.lb-form input:focus { outline: none; border-color: var(--accent); }
.form-success { color: var(--green); font-size: 13.5px; font-weight: 600; }

.steps-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.support-step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.ss-num { font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: .08em; margin-bottom: 10px; }
.support-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.support-step p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.step-link { font-size: 13px; color: var(--accent); font-weight: 700; }

.tools-showcase { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.tool-show-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: transform .2s, box-shadow .2s; }
.tool-show-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,100,42,.1); border-color: var(--accent); }
.tool-show-card span { font-size: 28px; display: block; margin-bottom: 10px; }
.tool-show-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.tool-show-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.tool-show-card a { font-size: 13px; color: var(--accent); font-weight: 700; }

.coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 24px; }
.coach-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; }
.coach-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: white; flex-shrink: 0; }
.coach-info { flex: 1; }
.coach-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.coach-title { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.coach-bio { font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 10px; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.coach-tags span { background: rgba(232,100,42,.1); color: var(--accent); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.coach-footer { display: flex; align-items: center; justify-content: space-between; }
.coach-price { font-size: 16px; font-weight: 800; color: var(--text); }
.coach-btn { background: var(--accent); color: white; font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 8px; transition: opacity .15s; }
.coach-btn:hover { opacity: .9; color: white; }
.coaching-note { background: var(--panel-2, #f3f4f6); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; font-size: 14px; color: var(--muted); }
.coaching-note strong { color: var(--text); }
.coaching-note a { color: var(--accent); font-weight: 700; margin-left: 6px; }

.pro-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pro-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.pro-card.popular-pro { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,100,42,.15); }
.pro-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pro-price { font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.pro-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; }

.mental-section { background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(232,100,42,.06)); border-radius: 20px; }
.mental-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.mental-section > .page-container > p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.mental-resources { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.mental-link { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 4px; color: var(--text); font-weight: 700; font-size: 14.5px; transition: border-color .15s, box-shadow .15s; }
.mental-link:hover { border-color: var(--accent); box-shadow: 0 4px 12px rgba(232,100,42,.1); color: var(--accent); }
.mental-link span { font-size: 12.5px; color: var(--muted); font-weight: 400; }

/* FOOTER */
.page-footer { background: var(--text); color: rgba(255,255,255,.5); padding: 28px 24px; }
.page-footer .page-nav-inner { height: auto; padding: 0; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.4); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: white; }

