/* ===========================
   BUNDLES SHARED CSS
   Loaded on /bundles and /bundle/* pages
   Variables, nav, footer, reset are in common.css
=========================== */

/* ===== HERO (shared between listing and detail) ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 52px 0 64px; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,100,44,0.07) 0%, transparent 70%); pointer-events: none; }
.breadcrumb { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb span { margin: 0 6px; }
.hero-split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 18px; }
.hero-sub { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; }

/* Listing page hero has different h1 size and hero-sub class */
/* Detail page hero has hero-subtitle and stat pills */
.hero-subtitle { font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 24px; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stat-pill { display: flex; align-items: center; gap: 7px; }
.hero-stat-pill svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hero-stat-pill span { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Listing hero: navigator card (dark glass) */
.hero-nav-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(8px); }
.hero-nav-card-header { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-nav-card-header span { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hero-nav-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); transition: background 0.2s; text-decoration: none; gap: 16px; }
.hero-nav-item:last-child { border-bottom: none; }
.hero-nav-item:hover { background: rgba(255,255,255,0.05); }
.hero-nav-item:hover .hero-nav-arrow { transform: translateX(4px); stroke: var(--orange); }
.hero-nav-item-left { flex: 1; min-width: 0; }
.hero-nav-item-label { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.hero-nav-count { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; color: var(--orange); background: rgba(232,100,44,0.15); padding: 2px 7px; border-radius: 4px; letter-spacing: 0.02em; flex-shrink: 0; }
.hero-nav-item-desc { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.45; }
.hero-nav-arrow { width: 18px; height: 18px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.2s, stroke 0.2s; }

/* Detail hero: quick-answer card */
.hero-qa-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(8px); }
.hero-qa-label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.hero-qa-text { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 20px; }
.hero-qa-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 18px; }
.hero-qa-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.hero-qa-row:last-child { margin-bottom: 0; }
.hero-qa-key { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.38); }
.hero-qa-val { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--white); }
.hero-qa-val.price { color: var(--orange); }

/* ===== SECTION COMMONS ===== */
.section { padding: 100px 0; }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.section-header p { font-family: var(--font-body); font-size: 1.05rem; color: var(--gray-600); max-width: 580px; margin: 0 auto; line-height: 1.65; }

/* ===== BUTTONS (bundle pages) ===== */
.btn-primary { font-family: var(--font-display); font-weight: 700; font-size: 1rem; padding: 15px 28px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.25s, transform 0.25s, box-shadow 0.25s; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,100,44,0.35); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.btn-outline-dark { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 13px 24px; border: 2px solid var(--navy); border-radius: var(--radius); color: var(--navy); background: transparent; display: inline-flex; align-items: center; justify-content: center; transition: background 0.25s, color 0.25s; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-outline { font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: 15px 30px; border: 2px solid rgba(255,255,255,0.35); color: var(--white); border-radius: var(--radius); background: transparent; display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.25s, background 0.25s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

/* ===== PACKAGE CARDS (listing page) ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; color: inherit; }
.bg-white .pkg-card { background: var(--off-white); }
.pkg-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-lg); }
.pkg-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pkg-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pkg-tag { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); background: var(--teal-light); padding: 4px 10px; border-radius: 6px; display: inline-block; align-self: flex-start; }
.pkg-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.pkg-subtitle { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; flex: 1; }
.pkg-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pkg-chip { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: var(--gray-400); background: var(--gray-50); padding: 3px 8px; border-radius: 4px; }
.pkg-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gray-100); margin-top: auto; }
.pkg-price { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--orange); }
.pkg-count { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; color: var(--gray-400); }
.pkg-link-row { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--orange); transition: gap 0.2s; }
.pkg-link-row svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.pkg-card:hover .pkg-link-row { gap: 10px; }
.pkg-card:hover .pkg-link-row svg { transform: translateX(4px); }
.pkg-card-header { display: flex; justify-content: space-between; align-items: flex-start; }

/* ===== HOW IT WORKS (listing page) ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 40px; }
.how-step-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.how-item h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.how-item p { font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; }
.how-note { border-left: 3px solid var(--orange); padding-left: 24px; font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; }

/* ===== OVERVIEW SECTION (detail page) ===== */
.overview-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.overview-body h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 20px; }
.overview-body p { font-family: var(--font-body); font-size: 1rem; color: var(--gray-800); line-height: 1.7; margin-bottom: 16px; }
.overview-body p:last-child { margin-bottom: 0; }
.designed-for { margin-top: 24px; border-left: 3px solid var(--orange); padding-left: 20px; }
.designed-for-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--orange); margin-bottom: 6px; }
.designed-for p { font-family: var(--font-body); font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 0; }

/* Sticky sidebar card */
.sidebar-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.sidebar-card-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-400); margin-bottom: 20px; }
.sidebar-price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-price-row:last-of-type { border-bottom: none; margin-bottom: 20px; }
.sidebar-team-size { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-600); }
.sidebar-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.sidebar-price.featured { color: var(--orange); font-size: 1.1rem; }
.sidebar-cta-note { font-family: var(--font-body); font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 10px; line-height: 1.5; }
.sidebar-cta-note a { color: var(--orange); }
.sidebar-divider { height: 1px; background: var(--gray-100); margin: 18px 0; }
.sidebar-meta { display: flex; flex-direction: column; gap: 8px; }
.sidebar-meta-row { display: flex; align-items: center; gap: 8px; }
.sidebar-meta-row svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.sidebar-meta-row span { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-600); }

/* ===== COURSE TABLE ===== */
.course-table { width: 100%; border-collapse: collapse; }
.course-table th { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); padding: 0 16px 14px; text-align: left; border-bottom: 2px solid var(--gray-100); }
.course-table th:last-child { text-align: right; }
.course-table td { font-family: var(--font-body); font-size: 0.92rem; color: var(--gray-800); padding: 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.course-table tr:last-child td { border-bottom: none; }
.course-table tr:hover td { background: var(--off-white); }
.course-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--gray-400); width: 28px; }
.course-name { font-weight: 500; color: var(--navy); }
.course-runtime { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--gray-400); white-space: nowrap; }
.course-lang { text-align: right; }
.lang-badge { display: inline-block; font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; color: var(--teal); background: var(--teal-light); padding: 2px 7px; border-radius: 4px; letter-spacing: 0.03em; }
.course-table-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 16px 0; margin-top: 4px; }
.course-table-total { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--gray-400); }
.course-table-note { font-family: var(--font-body); font-size: 0.82rem; color: var(--gray-400); }

/* ===== REGULATORY CONTEXT ===== */
.reg-block { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 32px; }
.reg-block h3 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--orange); margin-bottom: 16px; }
.reg-block p { font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.reg-block p + p { margin-top: 12px; }
.reg-cfr { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: var(--navy); background: var(--gray-50); padding: 2px 6px; border-radius: 4px; white-space: nowrap; }

/* ===== PRICING TABLE ===== */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); padding: 0 20px 14px; text-align: left; border-bottom: 2px solid var(--gray-100); }
.pricing-table th:nth-child(2), .pricing-table th:nth-child(3) { text-align: right; }
.pricing-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-800); vertical-align: middle; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.featured-row td { background: var(--orange-light); }
.pricing-table td:nth-child(2), .pricing-table td:nth-child(3) { text-align: right; }
.price-cell { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.price-cell.featured { color: var(--orange); font-size: 1.05rem; }
.example-cell { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-400); }
.custom-quote-cell { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--orange); }
.savings-callout { margin-top: 20px; background: var(--navy); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.savings-callout-text { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.savings-callout-text strong { color: var(--white); font-family: var(--font-display); }
.savings-badge { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--orange); white-space: nowrap; flex-shrink: 0; }
.pricing-note { font-family: var(--font-body); font-size: 0.85rem; color: var(--gray-400); margin-top: 14px; padding: 0 4px; }

/* ===== ENROLL WIDGET ===== */
.enroll-widget { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 36px; max-width: 560px; margin: 0 auto; box-shadow: var(--shadow-md); }
.enroll-widget h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.enroll-widget-sub { font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-600); margin-bottom: 28px; }
.enroll-field-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 8px; }
.enroll-input-row { display: flex; gap: 12px; margin-bottom: 20px; }
.enroll-input { flex: 1; font-family: var(--font-body); font-size: 1rem; color: var(--navy); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 12px 16px; transition: border-color 0.2s; outline: none; }
.enroll-input:focus { border-color: var(--orange); }
.enroll-price-display { background: var(--off-white); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
.enroll-price-label { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-600); }
.enroll-price-total { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.enroll-price-per { font-size: 0.8rem; font-weight: 400; color: var(--gray-400); margin-left: 4px; }
.enroll-alt { text-align: center; font-family: var(--font-body); font-size: 0.85rem; color: var(--gray-400); margin-top: 12px; }
.enroll-alt a { color: var(--orange); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; user-select: none; }
.faq-question:hover { background: var(--off-white); }
.faq-icon { width: 20px; height: 20px; stroke: var(--gray-400); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; transition: transform 0.25s, stroke 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); stroke: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); background: var(--orange-light); }
.faq-answer { font-family: var(--font-body); font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ===== CROSS-SELL ===== */
.crosssell-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 28px; }
.crosssell-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px; transition: all 0.3s ease; }
.crosssell-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-lg); }
.crosssell-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); }
.crosssell-card-desc { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-600); line-height: 1.55; flex: 1; }
.crosssell-card-link { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--orange); margin-top: 4px; transition: gap 0.2s; }
.crosssell-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.crosssell-card:hover .crosssell-card-link { gap: 10px; }
.crosssell-card:hover .crosssell-card-link svg { transform: translateX(4px); }
.crosssell-browse { text-align: center; font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-400); }
.crosssell-browse a { color: var(--orange); font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,100,44,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 64px; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-banner p { font-family: var(--font-body); color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.6; }
.cta-banner-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.cta-phone-line { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.45); text-align: right; }
.cta-phone-line a { color: rgba(255,255,255,0.85); font-weight: 700; transition: color 0.2s; }
.cta-phone-line a:hover { color: var(--orange); }

/* ===== QUICK ANSWER (between hero and overview) ===== */
.quick-answer { background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.quick-answer .container { padding-top: 24px; padding-bottom: 24px; }
.quick-answer p { font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; max-width: 860px; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.10s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.20s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.30s; }
.delay-7 { transition-delay: 0.35s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .hero-split { grid-template-columns: 1fr 320px; gap: 40px; }
  .overview-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .cta-phone-line { text-align: left; align-self: center; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-nav-card { display: none; }
  .hero-qa-card { display: none; }
  .crosssell-grid { grid-template-columns: 1fr; }
  .enroll-input-row { flex-direction: column; }
  .pricing-table td, .pricing-table th { padding: 12px 14px; }
  .btn-primary, .btn-outline-dark { width: 100%; }
  .hero-stats { gap: 14px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 10px; }
}
