* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a2332;
    background: #ffffff;
}

:root {
    --rocket-orange: #ff6b35;
    --rocket-yellow: #f7931e;
    --rocket-red: #dc2626;
    --accent-blue: #3B82F6;
    --space-black: #0a0a0a;
    --text-dark: #1a2332;
    --text-medium: #2d3748;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

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

header {
    border-bottom: 1px solid #e5e7eb;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo svg {
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: rotate(-45deg) translateY(-2px);
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--rocket-orange);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #fef3c7;
    border-left-color: var(--rocket-orange);
    color: #1a2332;
}

.hero {
    padding: 48px 24px 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff0e5 30%, #ffe8d6 50%, #fff0e5 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--rocket-orange) 0%, var(--rocket-yellow) 100%);
    opacity: 0.12;
    border-radius: 50%;
    transform: translate(40%, -40%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: normal;
    position: relative;
}

.hero .intro {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 768px;
    margin: 0 auto 32px;
    position: relative;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--rocket-orange), var(--rocket-red));
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px) translateX(2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    padding-right: 50px;
}

.btn:hover::before {
    opacity: 1;
    right: 20px;
}

.btn-secondary {
    background: white;
    color: var(--rocket-orange);
    border: 2px solid var(--rocket-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--rocket-orange), var(--rocket-red));
    color: white;
    border-color: transparent;
    transform: translateY(-2px) translateX(2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.section-gray {
    background: #f9fafb;
    padding: 48px 24px;
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(229, 231, 235, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(229, 231, 235, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.section-white {
    background: white;
    padding: 48px 24px;
    position: relative;
}

/* Problem Recognition Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 48px 0 32px;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-item {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

.problem-item:hover {
    border-color: var(--rocket-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.problem-item-1::before {
    background-image: url('/images/icons/users.svg');
}

.problem-item-2::before {
    background-image: url('/images/icons/eye-off.svg');
}

.problem-item-3::before {
    background-image: url('/images/icons/copy.svg');
}

.problem-item-4::before {
    background-image: url('/images/icons/shield-off.svg');
}

.problem-item-5::before {
    background-image: url('/images/icons/trending-down.svg');
}

.problem-item-6::before {
    background-image: url('/images/icons/clock.svg');
}

.problem-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.problem-closing {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a2332;
    letter-spacing: -0.01em;
    position: relative;
}

h2.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rocket-orange), var(--rocket-red));
    margin: 16px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.text-lg {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-wrapper {
    margin-top: 32px;
    text-align: center;
}

.course-grid {
    display: grid;
    gap: 32px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .course-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-grid-two-col {
    display: grid;
    gap: 32px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .course-grid-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-grid {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.testimonial {
    background: white;
    border-left: 4px solid var(--rocket-orange);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    flex: 0 0 380px;
    scroll-snap-align: start;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 72px;
    color: #fef3c7;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--rocket-orange);
    display: block;
}

.testimonial-name {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.testimonial-name::after {
    content: " • ";
    color: #718096;
    font-weight: 400;
}

.testimonial-role {
    display: inline;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #718096;
    margin: 0 0 20px 0;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    text-align: left;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.testimonial-attribution {
    font-size: 14px;
    font-weight: 600;
    color: var(--rocket-orange);
    position: relative;
    z-index: 1;
}

.cta-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 50%, #FFF7ED 100%);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 19px;
    color: #2d3748;
    max-width: 680px;
    margin: 0 auto 32px;
    position: relative;
}

footer {
    background: #1a2332;
    color: white;
    text-align: center;
    padding: 32px 24px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer strong {
    color: var(--rocket-orange);
}

.about-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 50%, #ffffff 100%);
    padding: 48px 24px 40px;
}

.about-header {
    text-align: center;
}

.about-header .subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rocket-orange);
    margin-bottom: 16px;
}

.about-header h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-header p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.story-section {
    padding: 48px 24px;
}

.story-content {
    display: grid;
    gap: 48px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .story-content {
        grid-template-columns: 300px 1fr;
    }
}

.profile-image-wrapper {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
}

.link-accent {
    color: var(--rocket-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.link-accent:hover {
    color: var(--rocket-red);
    text-decoration: underline;
}

.feature-section {
    padding: 48px 24px;
}

.feature-grid {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.feature-row {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-row.reverse {
        direction: rtl;
    }
    
    .feature-row.reverse > * {
        direction: ltr;
    }
}

.feature-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-list {
    list-style: disc;
    padding-left: 24px;
    margin-top: 16px;
}

.feature-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 8px;
}

.course-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--gray-200);
}

.course-card-enhanced {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--rocket-orange);
}

.course-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.course-instructor {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-weight: 500;
}

.course-card-content p {
    color: var(--text-medium);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.course-meta {
    margin-top: auto;
}

.course-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.course-stat {
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-sidebar-column {
    position: sticky;
    top: 100px;
}

.course-sidebar {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
}

.course-sidebar h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.course-info-list {
    list-style: none;
    margin-bottom: 24px;
}

.course-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.info-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-size: 15px;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--text-medium);
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
}

.bg-white {
    background: white;
}

.bg-gray {
    background: var(--gray-50);
}

.bg-blue-light {
    background: #EFF6FF;
}

.section-padding {
    padding: 48px 24px;
}

.section-padding-lg {
    padding: 64px 24px;
}

.max-w-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.course-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 48px;
}

.feature-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }

.badge-static {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
}

.list-unstyled {
    list-style: disc;
    padding-left: 24px;
}

.list-item-spaced {
    margin-bottom: 12px;
    color: #2d3748;
}

.list-bullets {
    list-style: disc;
    padding-left: 32px;
    margin-left: 0;
}

.list-bullets-lg {
    list-style: disc;
    padding-left: 32px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.8;
}

.pricing-list {
    list-style: none;
    padding-left: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.pricing-list li {
    margin-bottom: 12px;
}

.addon-list {
    list-style: none;
    padding-left: 24px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.addon-list li {
    margin-bottom: 8px;
}

.course-detail-layout {
    display: grid;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .course-detail-layout {
        grid-template-columns: 1fr 380px;
    }
}

.course-main-content {
    min-width: 0;
}

/* Course page hero titles */
.hero-title-large {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Course page hero descriptions */
.hero-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-description-centered {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.hero-description-index {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 16px auto 48px;
    line-height: 1.6;
}

/* Session headings for course detail pages */
.session-heading {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Section header layout (e.g., "Other Courses" sections) */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-header-row h2 {
    margin: 0;
}

/* Pricing highlight */
.pricing-highlight {
    font-size: 32px;
    font-weight: 700;
    color: var(--rocket-orange);
}

/* Profile placeholder (about page) */
.profile-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-placeholder svg {
    width: 150px;
    height: 150px;
}

/* Pricing */
.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.pricing-card h3 {
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--rocket-orange);
    margin-bottom: 24px;
}

.addons {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.addons h4 {
    margin-bottom: 16px;
}

.addons ul {
    list-style: none;
}

.addons li {
    padding: 8px 0;
    color: var(--text-medium);
}

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

/* Result Callout Box */
.result-callout {
    background: #fef3c7;
    border-left: 4px solid var(--rocket-orange);
    padding: 24px 32px;
    border-radius: 8px;
    margin: 48px 0;
}

.result-callout h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.result-callout p {
    color: var(--text-medium);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Testimonial */
.sidebar-testimonial {
    margin-top: 32px;
    padding: 24px;
    background: #fef3c7;
    border-left: 4px solid var(--rocket-orange);
    border-radius: 8px;
}

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

.sidebar-testimonial-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rocket-orange);
    flex-shrink: 0;
}

.sidebar-testimonial-info {
    flex: 1;
}

.sidebar-testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.sidebar-testimonial-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--rocket-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* FAQ Accordion Styles */
.faq-item {
    margin-bottom: 16px;
}

.faq-item details {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item details:hover {
    border-color: var(--rocket-orange);
}

.faq-item details[open] {
    border-color: var(--rocket-orange);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.faq-item summary {
    padding: 24px 28px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 400;
    color: var(--rocket-orange);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-item summary:hover {
    background: #fef3c7;
}

.faq-item details[open] summary {
    background: #fef3c7;
    border-bottom: 1px solid var(--gray-200);
}

.faq-answer {
    padding: 24px 28px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Utilities */
.text-lg-bold {
    font-size: 19px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.7;
}

.text-xl {
    font-size: 18px;
}

.fine-print {
    color: #2d3748;
    font-size: 14px;
}

/* Section Subheading */
.section-subheading {
    margin-top: 48px;
    margin-bottom: 16px;
}

/* CTA Box */
.cta-box {
    margin-top: 48px;
    padding: 32px;
    background: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 16px;
}

/* Callout Box (Yellow) */
.callout-box {
    margin-top: 32px;
    padding: 24px;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #d97706;
}

.callout-heading {
    margin-bottom: 12px;
}

/* Pricing Utilities */
.pricing-detail {
    color: #2d3748;
    margin-bottom: 16px;
}

.pricing-detail-sm {
    color: #2d3748;
    margin-bottom: 8px;
}

.pricing-container {
    margin-left: -32px;
    margin-right: -32px;
    padding: 48px 32px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.momentum-heading {
    margin-bottom: 16px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 22px; }
    .hero .intro { font-size: 18px; }
    h2 { font-size: 32px; }
    .btn { padding: 14px 32px; font-size: 16px; }
    .about-header h1 { font-size: 36px; }
    .story-text h2 { font-size: 32px; }
    .feature-content h3 { font-size: 26px; }
    .course-sidebar { position: static; }
    .course-detail-layout { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }

    .faq-item summary {
        padding: 20px 24px;
        font-size: 18px;
        padding-right: 52px;
    }

    .faq-item summary::after {
        right: 24px;
    }

    .faq-answer {
        padding: 20px 24px;
        font-size: 17px;
    }
}
