/* ============================================
   LAUNCHPAD FOR KIDS - SHARED STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #4ECDC4;
    --secondary-dark: #3DBDB5;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
    --gray-dark: #495057;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links .btn {
    padding: 10px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ============================================
   HOMEPAGE - HERO
   ============================================ */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, #E8F4F3 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   HOMEPAGE - CHALLENGE SECTION
   ============================================ */
.challenge {
    padding: 100px 0;
    background: var(--white);
}

.challenge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.challenge-problem h3,
.challenge-solution h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.challenge-problem p,
.challenge-solution > p {
    color: var(--gray);
    margin-bottom: 15px;
}

.challenge-problem ul {
    margin-top: 20px;
}

.challenge-problem li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.challenge-problem li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.skill-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.skill-card {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.skill-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.skill-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================
   HOMEPAGE - OPERATING SYSTEM SECTION
   ============================================ */
.operating-system {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.os-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.os-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.os-intro {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.os-formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.formula-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 25px;
}

.step-number {
    width: 25px;
    height: 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.formula-arrow {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: bold;
}

.os-text p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.os-text strong {
    color: var(--accent);
}

.os-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mindset-before,
.mindset-after {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
}

.mindset-before h4 {
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.mindset-after h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.mindset-before ul li,
.mindset-after ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

.mindset-arrow {
    font-size: 2rem;
    color: var(--secondary);
}

/* ============================================
   HOMEPAGE - WHY ENTREPRENEURSHIP
   ============================================ */
.why-entrepreneurship {
    padding: 100px 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
}

.why-card strong {
    color: var(--dark);
}

/* ============================================
   HOMEPAGE - TRANSFORMATION
   ============================================ */
.transformation {
    padding: 100px 0;
    background: var(--white);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.transform-item {
    text-align: center;
    padding: 30px 20px;
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.transform-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.transform-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.transformation-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transformation-quote blockquote {
    font-size: 1.4rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    border-left: 5px solid var(--primary);
}

.transformation-quote strong {
    color: var(--primary);
}

/* ============================================
   HOMEPAGE - CTA PATHS
   ============================================ */
.cta-paths {
    padding: 100px 0;
    background: var(--light);
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.path-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.path-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.path-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.path-card ul {
    text-align: left;
    margin-bottom: 30px;
}

.path-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.path-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.path-learn {
    border-top: 4px solid var(--secondary);
}

.path-program {
    border-top: 4px solid var(--primary);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 15px 30px;
}

.newsletter-note {
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   PAGE HERO (for internal pages)
   ============================================ */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, #E8F4F3 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.page-hero h1 span {
    color: var(--primary);
}

.page-hero .hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.page-hero .hero-buttons {
    justify-content: center;
}

/* ============================================
   PROGRAM PAGE STYLES
   ============================================ */
.program-overview {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

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

.overview-item {
    text-align: center;
    padding: 20px;
}

.overview-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.overview-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.overview-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* What Kids Learn */
.what-kids-learn {
    padding: 100px 0;
    background: var(--light);
}

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

.learn-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.learn-card:hover {
    transform: translateY(-5px);
}

.learn-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.learn-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.learn-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Curriculum */
.curriculum {
    padding: 100px 0;
    background: var(--white);
}

.curriculum-phases {
    max-width: 900px;
    margin: 0 auto;
}

.phase {
    margin-bottom: 40px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
}

.phase-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phase-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.phase-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.3rem;
}

.phase-weeks {
    font-size: 0.9rem;
    opacity: 0.9;
}

.phase-content {
    padding: 30px;
}

.phase-content > p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.phase-content ul {
    margin-bottom: 20px;
}

.phase-content li {
    padding: 10px 0;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.phase-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.phase-content li strong {
    color: var(--dark);
}

.phase-outcome {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
}

.phase-outcome strong {
    color: var(--secondary);
}

/* Market Day Feature */
.market-day-feature {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.market-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.market-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.market-intro {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.market-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.market-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.market-detail p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.market-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight .icon {
    font-size: 1.5rem;
}

.highlight span:last-child {
    font-weight: 500;
}

/* Expectations */
.expectations {
    padding: 100px 0;
    background: var(--light);
}

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

.expectation-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.expectation-card .expectation-number,
.expectation-card .number {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.expectation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.expectation-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Logistics */
.logistics {
    padding: 100px 0;
    background: var(--white);
}

.logistics-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.logistics-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logistics-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.logistics-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.logistics-card ul li {
    padding: 8px 0;
    color: var(--gray);
}

.logistics-card li strong {
    color: var(--dark);
}

.logistics-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
}

.sidebar-card h4 {
    margin-bottom: 15px;
}

.sidebar-card p {
    opacity: 0.95;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.sidebar-card p:last-child {
    margin-bottom: 0;
}

/* Sign Up Form */
.signup {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.signup .container {
    max-width: 800px;
}

.signup-content {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.signup-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.signup-content > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 50px;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
}

.success-message .success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.success-message p {
    color: var(--gray);
    margin-bottom: 10px;
}

form.hidden {
    display: none;
}

/* FAQ */
.faq-preview {
    padding: 100px 0;
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   RESOURCES PAGE STYLES
   ============================================ */
.resource-categories {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 25px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Featured Resource */
.featured-resource {
    padding: 60px 0;
    background: var(--white);
}

.featured-card {
    background: linear-gradient(135deg, var(--light) 0%, #E8F4F3 100%);
    padding: 50px;
    border-radius: 25px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content {
    max-width: 700px;
}

.resource-category-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.featured-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Articles Grid */
.articles-section {
    padding: 80px 0;
    background: var(--light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    display: flex;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 120px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-icon {
    font-size: 3rem;
}

.article-content {
    padding: 25px;
    flex: 1;
}

.article-content .resource-category-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
}

.article-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.article-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.article-link:hover {
    color: var(--primary-dark);
}

/* Quick Tips */
.quick-tips {
    padding: 100px 0;
    background: var(--white);
}

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

.tip-card {
    padding: 30px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.tip-card:hover {
    border-color: var(--secondary);
}

.tip-number {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
}

.tip-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.tip-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Recommended Reading */
.recommended-reading {
    padding: 100px 0;
    background: var(--light);
}

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

.book-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.book-cover {
    font-size: 4rem;
    margin-bottom: 20px;
}

.book-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.book-author {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.book-description {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.our-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.story-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-item p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Our Mission */
.our-mission {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-statement h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.mission-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    opacity: 0.95;
    border-left: 4px solid var(--primary);
    padding-left: 25px;
}

.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pillar {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
}

.pillar-number {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.pillar h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pillar p {
    opacity: 0.85;
    font-size: 0.95rem;
    margin: 0;
}

/* What We Believe */
.what-we-believe {
    padding: 100px 0;
    background: var(--light);
}

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

.belief-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.belief-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.belief-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Non-Profit Info */
.nonprofit-info {
    padding: 100px 0;
    background: var(--white);
}

.nonprofit-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.nonprofit-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.nonprofit-text > p {
    color: var(--gray);
    margin-bottom: 20px;
}

.nonprofit-text ul {
    margin-top: 15px;
}

.nonprofit-text li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.nonprofit-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.nonprofit-cta .cta-card {
    background: var(--secondary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.nonprofit-cta .cta-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.nonprofit-cta .cta-card p {
    opacity: 0.95;
    margin-bottom: 25px;
}

.nonprofit-cta .btn-primary {
    background: var(--white);
    color: var(--secondary);
}

.nonprofit-cta .btn-primary:hover {
    background: var(--light);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light);
}

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

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content > p {
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero .container,
    .challenge-content,
    .os-content,
    .market-content,
    .story-content,
    .mission-content,
    .nonprofit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .learn-grid,
    .expectations-grid,
    .beliefs-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .logistics-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 15px;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

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

    .os-visual {
        flex-direction: column;
    }

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

    .why-grid,
    .paths-grid,
    .articles-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .learn-grid,
    .expectations-grid,
    .transformation-grid,
    .beliefs-grid,
    .contact-grid,
    .tips-grid,
    .story-values {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-content {
        padding: 40px 25px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .article-card {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 100px;
    }

    .featured-card {
        padding: 30px;
    }

    .os-formula {
        flex-direction: column;
    }

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

    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero,
    .page-hero {
        padding: 120px 0 60px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

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

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

    .path-card {
        padding: 30px 25px;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
