:root {
    --navy-primary: #0f1f3d;
    --navy-dark: #0a1628;
    --navy-secondary: #243b67;
    --gold-accent: #FFCA28;
    --gold-hover: #F9B915;
    --bg-light: #faf9f7;
    --bg-cream: #f5f3ef;
    --text-muted: #4a6491;
    --text-light: #6b82a6;
    --border-light: #e8e5e0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lora', serif; background: var(--bg-light); }

/* Logo with bouncing star */
.logo {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-primary);
    text-decoration: none;
}
.logo-o-wrapper {
    position: relative;
    display: inline-block;
}
.bouncing-star {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5em;
    color: var(--gold-accent);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

/* Nav */
.nav {
    background: rgba(250, 249, 247, 0.95);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem max(2rem, calc((100vw - 1100px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-secondary);
    text-decoration: none;
}
.nav-links a.active {
    color: var(--gold-accent);
}
.btn-signin {
    background: var(--navy-primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}

/* Hero */
.hero {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}
.hero-logo {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}
.hero-logo .bouncing-star {
    font-size: 0.35em;
    top: -8px;
}
.hero-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.rotating-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    overflow: hidden;
    height: 2.5rem;
}
.rotating-text span {
    display: block;
    transition: transform 0.5s ease;
}
.hero-description {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: var(--navy-dark);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    margin: 0 auto;
}
.cta-box h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}
.cta-box p {
    color: #9aabbd;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold-accent);
    color: var(--navy-dark);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9aabbd;
    font-family: 'Nunito Sans', sans-serif;
}
.hero-feature svg {
    flex-shrink: 0;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy-primary);
    transition: 0.3s;
}

/* Flat icon styles */
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.icon-wrapper.gold { background: #FFF8E1; }
.icon-wrapper.blue { background: #E3F2FD; }
.icon-wrapper.green { background: #E8F5E9; }
.icon-wrapper.purple { background: #F3E5F5; }
.icon-wrapper.orange { background: #FFF3E0; }
.icon-wrapper.teal { background: #E0F2F1; }
.icon-wrapper.navy { background: var(--navy-dark); }

/* Section styles */
.section {
    padding: 3rem 2rem;
    background: var(--bg-light);
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-label {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-hover);
    background: #FFF8E1;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.75rem;
    color: var(--navy-dark);
}

/* Page header */
.page-header {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-cream);
}
.page-header h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}
.page-header .lead {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing */
.pricing-intro {
    text-align: center;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 16px;
    margin: 0 auto 2rem;
    max-width: 500px;
}
.pricing-intro h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.pricing-intro p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.pricing-choose {
    text-align: center;
    margin: 2rem 0 1rem;
}
.pricing-choose h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--navy-dark);
}
.pricing-choose p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 2px solid var(--border-light);
}
.pricing-card.featured {
    border-color: var(--navy-primary);
}
.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--navy-dark);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.pricing-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--navy-dark);
}
.pricing-price {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
}
.pricing-price span { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.pricing-features li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-features li svg {
    color: var(--gold-accent);
    flex-shrink: 0;
}
.btn-primary {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: var(--navy-primary);
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
}
.btn-outline {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--navy-primary);
    border: 2px solid var(--border-light);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
}
.btn-secondary {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: var(--gold-accent);
    color: var(--navy-dark);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
}

/* Free plan card */
.free-plan-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    border: 2px solid var(--border-light);
}
.free-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}
.free-plan-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
}
.free-plan-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.free-plan-price {
    text-align: right;
}
.free-plan-price .amount {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
}
.free-plan-price .period {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.free-plan-features {
    list-style: none;
}
.free-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.free-plan-features li svg {
    color: var(--gold-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}
.benefit-card .icon-wrapper {
    margin: 0 auto 0.75rem;
}
.benefit-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.benefit-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* About page content */
.about-content {
    padding: 2rem;
    background: var(--bg-light);
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
}
.about-text h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.signature-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}
.signature-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8b87d, #c9a0dc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.signature-info .name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy-dark);
}
.signature-info .title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

/* Values grid */
.values-section {
    background: white;
    padding: 3rem 2rem;
}

/* Legal pages */
.legal-content {
    padding: 2rem;
    background: var(--bg-light);
}
.legal-text {
    max-width: 700px;
    margin: 0 auto;
}
.legal-text h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin: 2rem 0 0.75rem;
}
.legal-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-text ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.legal-text li {
    margin-bottom: 0.5rem;
}
.legal-text a {
    color: var(--gold-hover);
    text-decoration: none;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.values-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}
.value-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}
.value-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Full Footer */
.footer {
    background: var(--navy-dark);
    padding: 3rem max(2rem, calc((100vw - 1100px) / 2)) 2rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 2rem;
}
.footer-brand .logo { 
    color: white; 
    font-size: 1.25rem; 
    display: block;
    margin-bottom: 0.75rem;
}
.footer-brand p {
    color: #9aabbd;
    font-size: 0.8rem;
    max-width: 350px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: #9aabbd;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: var(--gold-accent);
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}
.footer-newsletter {
    text-align: right;
}
.footer-newsletter p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}
.footer-newsletter form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}
.footer-newsletter input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
}
.footer-newsletter button {
    padding: 0.6rem 1.25rem;
    background: var(--gold-accent);
    color: var(--navy-dark);
    border: none;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.footer-links a {
    color: var(--gold-accent);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}
.footer-bottom p {
    color: #9aabbd;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}
.footer-bottom a {
    color: var(--gold-accent);
    text-decoration: none;
}
.made-in {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* How it works page */
.hiw-hero {
    background: var(--navy-dark);
    padding: 4rem 2rem;
    text-align: center;
}
.hiw-hero .section-label {
    background: rgba(255, 202, 40, 0.15);
    color: var(--gold-accent);
}
.hiw-hero h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.25rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.hiw-hero .lead {
    color: #9aabbd;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Problem/Solution cards */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.problem-card, .solution-card {
    padding: 2rem;
    border-radius: 16px;
}
.problem-card {
    background: white;
    border: 1px solid var(--border-light);
}
.solution-card {
    background: var(--navy-dark);
}
.problem-card h3, .solution-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.problem-card h3 { color: var(--navy-dark); }
.solution-card h3 { color: white; }
.problem-card p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.solution-card p { color: #9aabbd; margin-bottom: 1rem; font-size: 0.95rem; }
.checklist {
    list-style: none;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.problem-card .checklist li { color: var(--text-muted); }
.solution-card .checklist li { color: #9aabbd; }
.checklist li svg { flex-shrink: 0; }

/* Steps */
.steps-section {
    padding: 3rem 2rem;
    background: var(--bg-cream);
}
.steps-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.steps-line {
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--border-light);
}
.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--navy-dark);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.step-content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.step-example {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold-accent);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}
.feature-card .icon-wrapper {
    margin: 0 auto 0.75rem;
}
.feature-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
}
.final-cta h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.75rem;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}
.final-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Local Experts page */
.le-hero {
    background: var(--navy-dark);
    padding: 4rem 2rem;
    text-align: center;
}
.le-hero .section-label {
    background: rgba(255, 202, 40, 0.15);
    color: var(--gold-accent);
}
.le-hero h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.25rem;
    color: white;
    max-width: 700px;
    margin: 0 auto 1rem;
}
.le-hero .lead {
    color: #9aabbd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Question pills */
.question-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    margin: 2rem auto 0;
}
.question-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #9aabbd;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
}

/* Who can apply */
.who-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.who-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}
.who-card .icon-wrapper {
    margin: 0 auto 0.5rem;
    width: 40px;
    height: 40px;
}
.who-card h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}
.who-card p {
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.4;
}

/* Why cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.why-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}
.why-card .icon-wrapper {
    margin: 0 auto 1rem;
    width: 56px;
    height: 56px;
}
.why-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Apply CTA */
.apply-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
}
.apply-box {
    background: var(--navy-dark);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}
.apply-box p {
    color: #9aabbd;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Partnership message */
.partnership-message {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}
.partnership-message p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Blog styles */
.blog-header {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-cream);
}
.blog-header h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.blog-header .lead {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--text-muted);
}
.blog-content {
    padding: 3rem 2rem;
    background: var(--bg-light);
}
.blog-post {
    max-width: 700px;
    margin: 0 auto;
}
.post-meta {
    margin-bottom: 2rem;
}
.post-category {
    display: inline-block;
    background: #FFF8E1;
    color: var(--gold-hover);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.post-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.post-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.post-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}
.post-body h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin: 2rem 0 1rem;
}
.post-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.author-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8b87d, #c9a0dc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.author-info .name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--navy-dark);
}
.author-info .bio {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Blog CTA */
.blog-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-cream);
    flex-wrap: wrap;
}
.blog-cta .btn-secondary {
    background: var(--gold-accent);
    color: var(--navy-dark);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}
.blog-cta .btn-outline {
    background: white;
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

/* Share section */
.blog-share {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}
.blog-share p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}
.blog-share-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.blog-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--navy-primary);
    text-decoration: none;
    transition: background 0.2s;
}
.blog-share-links a:hover {
    background: var(--gold-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .nav { 
        padding: 1rem;
        background: var(--bg-light);
    }
    .hamburger {
        display: flex;
    }
    .nav-links { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links.open { display: flex; }
    .nav-links a { 
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links .btn-signin { 
        margin-top: 0.5rem;
        text-align: center;
    }
    .hero-logo { font-size: 3rem; }
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    .rotating-text { font-size: 1.5rem; height: 2rem; }
    .problem-solution { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .values-section .value-card { margin-bottom: 1rem; }
    .values-grid, .values-grid-4 { grid-template-columns: 1fr !important; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .footer-right { align-items: flex-start; }
    .footer-newsletter { text-align: left; }
    .signature-section { flex-direction: column; text-align: center; }
}
