/* HERO */
.hero { min-height: 100vh; background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: 100px 5vw 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,92,26,0.18) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,179,48,0.08) 0%, transparent 60%); pointer-events: none; }
.speed-lines { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; overflow: hidden; opacity: 0.06; }
.sl { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent); animation: speedLine 3s linear infinite; }
.sl:nth-child(1) { top: 25%; width: 70%; animation-delay: 0s; }
.sl:nth-child(2) { top: 40%; width: 90%; animation-delay: 0.5s; }
.sl:nth-child(3) { top: 55%; width: 60%; animation-delay: 1s; }
.sl:nth-child(4) { top: 65%; width: 80%; animation-delay: 1.5s; }
.sl:nth-child(5) { top: 35%; width: 45%; animation-delay: 0.8s; }
@keyframes speedLine { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,92,26,0.15); border: 1px solid rgba(255,92,26,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; color: var(--orange-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; margin-top: 0; line-height: 1; animation: fadeUp 0.6s ease both; }@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-main-title { font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; margin-top: 0; animation: fadeUp 0.7s 0.1s ease both; }
.hero-main-title .accent { color: var(--orange); }
.hero-main-title .num { color: var(--amber); font-weight: 900; }
.hero-sub { font-size: clamp(0.97rem, 2vw, 1.13rem); color: #7a8aaa; max-width: 560px; line-height: 1.7; margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both; }
.compare-bar { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,92,26,0.2); border-radius: var(--radius); padding: 20px 24px; max-width: 520px; margin-bottom: 36px; animation: fadeUp 0.7s 0.25s ease both; }
.compare-row { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.compare-row:last-child { margin-bottom: 0; }
.compare-label { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); width: 70px; flex-shrink: 0; }
.compare-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.compare-fill { height: 100%; border-radius: 100px; }
.fill-slow { background: var(--red-bad); width: 95%; animation: fillAnim 1.2s 0.8s ease both; }
.fill-fast { background: linear-gradient(90deg, var(--orange), var(--amber)); width: 18%; animation: fillAnim 1.2s 1s ease both; }
@keyframes fillAnim { from{width:0} }
.compare-time { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.88rem; width: 60px; text-align: right; }
.time-bad { color: var(--red-bad); }
.time-good { color: var(--amber); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.35s ease both; }

/* COST SECTION */
.cost { background: var(--gray-50); padding: 96px 5vw; }
.cost-calc { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 32px; max-width: 640px; margin: 48px 0; box-shadow: 0 4px 24px rgba(12,14,19,0.08); }
.calc-title { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--gray-200); }
.calc-row:last-child { border-bottom: none; }
.calc-row.total { padding-top: 20px; margin-top: 4px; border-top: 2px solid var(--gray-200); border-bottom: none; }
.calc-concept { font-size: 0.85rem; color: var(--gray-600); }
.calc-value { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.95rem; }
.calc-value.bad { color: var(--red-bad); }
.calc-value.good { color: var(--green-ok); }
.calc-value.total-val { font-size: 1.3rem; color: var(--orange); }
.calc-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 12px; }

/* PACKAGES */
.packages { background: var(--white); padding: 96px 5vw; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 52px; }
.pkg-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; transition: all 0.25s; }
.pkg-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--orange); background: rgba(255,92,26,0.02); }
.pkg-badge { position: absolute; top: -12px; left: 24px; background: var(--orange); color: var(--white); font-size: 0.68rem; font-weight: 800; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.pkg-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.pkg-name-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 4px; }
.pkg-name { font-family: 'Manrope', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.pkg-profile { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.5; }
.pkg-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.pkg-specs li { display: flex; gap: 10px; font-size: 0.85rem; color: var(--gray-600); }
.pkg-specs li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pkg-time { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--gray-50); border-radius: 8px; font-size: 0.8rem; color: var(--gray-600); }
.pkg-time strong { color: var(--text-dark); font-weight: 700; }

/* PROCESS */
.process { background: var(--dark); padding: 96px 5vw; position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,92,26,0.12) 0%, transparent 65%); pointer-events: none; }
.process .section-label { color: var(--amber); }
.process .section-title { color: var(--white); }
.process .section-sub { color: var(--gray-400); }
.proc-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 52px; max-width: 720px; position: relative; z-index: 1; }
.pt-step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pt-step:last-child { border-bottom: none; }
.pt-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.pt-num { width: 44px; height: 44px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 1rem; color: var(--white); }
.pt-line { flex: 1; width: 2px; background: rgba(255,92,26,0.2); margin: 4px 0; }
.pt-step:last-child .pt-line { display: none; }
.pt-content h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 5px; }
.pt-content p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pt-tag { display: inline-block; margin-top: 8px; background: rgba(255,92,26,0.15); color: var(--orange-light); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

/* ELIGIBILITY */
.eligibility { background: var(--gray-50); padding: 96px 5vw; }
.elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
@media(max-width:640px){ .elig-grid { grid-template-columns: 1fr; } }
.elig-yes, .elig-no { border-radius: var(--radius-lg); padding: 32px; }
.elig-yes { background: var(--white); border: 1.5px solid var(--gray-200); }
.elig-no { background: rgba(239,68,68,0.04); border: 1.5px solid rgba(239,68,68,0.15); }
.elig-title { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.elig-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.elig-list li { display: flex; gap: 10px; font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }