/* ==========================================
   Global Styles & Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft Yahei', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefdfb;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6b4d3d;
    letter-spacing: 0.5px;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav a:hover {
    color: #8b6f47;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #d4a574 0%, #c8956f 100%);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

.nav-cta::after {
    display: none;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #c8956f 100%);
    color: white;
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.35);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fefdfb 0%, #f5f0e8 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #d4a574;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-subtext {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Sections
   ========================================== */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #999;
    margin-bottom: 3rem;
}

/* ==========================================
   Section 1: Why Grid
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.why-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.15);
    border-color: #d4a574;
}

.why-number {
    font-size: 3rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-item p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.why-impact {
    color: #d4a574;
    font-weight: 600;
    font-size: 1rem;
}

/* ==========================================
   Section 2: Three Aspects
   ========================================== */
.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.three-aspects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.aspect-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
    text-align: center;
    transition: all 0.3s ease;
}

.aspect-card:hover {
    transform: translateY(-4px);
    border-color: #d4a574;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.aspect-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c8956f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.aspect-card h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.aspect-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.aspect-context {
    background: linear-gradient(135deg, #f5ede1 0%, #ede5d9 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.context-label {
    color: #8b6f47;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.context-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.important-note {
    background: linear-gradient(135deg, #fff9f5 0%, #f5ede1 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d4a574;
    text-align: center;
}

.important-note h4 {
    color: #8b6f47;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.important-note p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================
   Section 3: Before & After
   ========================================== */
.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.before-column,
.after-column {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
}

.before-column h3,
.after-column h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.ba-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ba-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ba-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.ba-item p {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.ba-desc {
    color: #999;
    font-size: 0.85rem;
}

.arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #d4a574;
    font-weight: 700;
}

/* ==========================================
   Section 4: Stories
   ========================================== */
.stories-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4a574;
}

.story-header {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5ede1 0%, #ede5d9 100%);
    align-items: center;
}

.story-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c8956f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.story-meta h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0;
}

.story-role {
    color: #999;
    font-size: 0.85rem;
    margin: 0.2rem 0 0 0;
}

.story-body {
    padding: 1.5rem;
}

.story-body h4 {
    color: #8b6f47;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.story-challenge,
.story-turning,
.story-result {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-footer {
    padding: 1rem 1.5rem;
    background: #fefdfb;
    text-align: center;
    color: #8b6f47;
    font-size: 0.9rem;
    border-top: 1px solid #f0e8dc;
}

.stories-note {
    background: linear-gradient(135deg, #fff9f5 0%, #f5ede1 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* ==========================================
   Section 5: Changes Grid
   ========================================== */
.changes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.change-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
    text-align: center;
    transition: all 0.3s ease;
}

.change-card:hover {
    transform: translateY(-6px);
    border-color: #d4a574;
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.15);
}

.change-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.change-card h3 {
    color: #1a1a1a;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.change-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   Section 6: Journey Grid
   ========================================== */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: center;
}

.journey-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #f0e8dc;
    text-align: center;
    transition: all 0.3s ease;
}

.journey-card:hover {
    border-color: #d4a574;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.15);
    transform: translateY(-4px);
}

.journey-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c8956f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.journey-card h3 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.journey-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.journey-icon {
    font-size: 1.5rem;
    color: #d4a574;
    text-align: center;
    font-weight: 700;
}

/* ==========================================
   Section 7: Safety Grid
   ========================================== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.safety-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0e8dc;
}

.safety-item:hover {
    border-color: #d4a574;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.1);
}

.safety-item h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.safety-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   Section 8: FAQ
   ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #f0e8dc;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5ede1 0%, #ede5d9 100%);
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ede5d9 0%, #e5dccf 100%);
}

.faq-question::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #d4a574;
}

.faq-item.open .faq-question {
    border-bottom: 1px solid #f0e8dc;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    display: none;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Section 9: Final CTA
   ========================================== */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f5ede1 0%, #ede5d9 100%);
    padding: 3rem;
    border-radius: 16px;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cta-subtext {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem !important;
}

.cta-secondary {
    margin-top: 1rem;
}

.cta-secondary a {
    color: #d4a574;
    font-weight: 600;
    text-decoration: underline;
}

.cta-secondary a:hover {
    color: #8b6f47;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #2c2c2c;
    color: #ddd;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #999;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-section p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.85rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 0;
    }

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

    .three-aspects {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-container {
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        gap: 0.8rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .why-grid,
    .three-aspects,
    .changes-grid,
    .stories-container,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 1.8rem;
    }

    .aspect-card {
        padding: 1.5rem;
    }

    .aspect-context {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .context-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .context-text {
        font-size: 0.85rem;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .arrow-divider {
        transform: rotate(90deg);
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .before-column h3,
    .after-column h3 {
        font-size: 1.1rem;
    }

    .ba-list {
        gap: 1rem;
    }

    .ba-item {
        gap: 0.8rem;
    }

    .ba-icon {
        font-size: 1.2rem;
    }

    .story-card {
        padding: 0;
        overflow: visible;
    }

    .story-header {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .story-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .story-body {
        padding: 1.2rem;
    }

    .story-body h4 {
        font-size: 0.95rem;
    }

    .story-footer {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .stories-note {
        padding: 1.2rem;
        font-size: 0.9rem;
    }

    .change-card {
        padding: 1.5rem;
    }

    .change-icon {
        font-size: 2.5rem;
    }

    .change-card h3 {
        font-size: 1.05rem;
    }

    .change-card p {
        font-size: 0.9rem;
    }

    .journey-card {
        padding: 1.5rem 1.2rem;
        border-radius: 10px;
    }

    .journey-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .journey-card h3 {
        font-size: 0.95rem;
    }

    .journey-card p {
        font-size: 0.8rem;
    }

    .journey-icon {
        font-size: 1.3rem;
    }

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

    .safety-item {
        padding: 1.5rem;
    }

    .safety-item h3 {
        font-size: 1rem;
    }

    .safety-item p {
        font-size: 0.9rem;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        border-radius: 6px;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .final-cta {
        padding: 2rem;
        border-radius: 12px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .final-cta > p {
        font-size: 1rem;
    }

    .cta-subtext {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }
}

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

    .header {
        padding: 0.7rem 0;
    }

    .logo {
        font-size: 0.85rem;
    }

    .nav {
        gap: 0.6rem;
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .hero-cta {
        gap: 0.6rem;
    }

    .btn-primary.btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-subtext {
        font-size: 0.8rem;
        margin: 0;
    }

    .section {
        padding: 1.8rem 0;
    }

    .section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .why-grid,
    .three-aspects,
    .changes-grid,
    .stories-container,
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-item {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .why-number {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .why-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .why-item p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .why-impact {
        font-size: 0.85rem;
    }

    .intro-text {
        margin: 0 auto 2rem;
    }

    .intro-text p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .aspect-card {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .aspect-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin: 0 auto 0.8rem;
    }

    .aspect-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .aspect-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .aspect-context {
        padding: 0.7rem;
        margin-top: 0.7rem;
        border-radius: 6px;
    }

    .context-label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .context-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .important-note {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .important-note p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow-divider {
        font-size: 1.3rem;
        padding: 0.3rem;
    }

    .before-column,
    .after-column {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .before-column h3,
    .after-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .ba-list {
        gap: 0.8rem;
    }

    .ba-item {
        gap: 0.6rem;
    }

    .ba-icon {
        font-size: 1rem;
        margin-top: 0.1rem;
    }

    .ba-item p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .ba-desc {
        font-size: 0.75rem;
    }

    .story-card {
        border-radius: 10px;
        margin: 0;
    }

    .story-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        background-size: 100%;
    }

    .story-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin: 0 auto;
    }

    .story-meta h3 {
        font-size: 0.9rem;
    }

    .story-role {
        font-size: 0.75rem;
    }

    .story-body {
        padding: 1rem;
    }

    .story-body h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .story-challenge,
    .story-turning,
    .story-result {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }

    .story-footer {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .stories-note {
        padding: 1rem;
        border-radius: 8px;
        font-size: 0.8rem;
    }

    .change-card {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .change-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .change-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .change-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .journey-card {
        padding: 1rem 0.8rem;
        border-radius: 8px;
    }

    .journey-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 auto 0.6rem;
    }

    .journey-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .journey-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .journey-icon {
        font-size: 1.2rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .safety-item {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .safety-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .safety-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        border-radius: 6px;
        margin-bottom: 0.6rem;
        overflow: hidden;
    }

    .faq-question {
        padding: 0.8rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .faq-question::after {
        font-size: 0.65rem;
    }

    .faq-answer {
        padding: 0.8rem;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .faq-answer p {
        margin-bottom: 0.5rem;
    }

    .final-cta {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .final-cta h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .final-cta > p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .cta-subtext {
        font-size: 0.8rem;
        margin-bottom: 1rem !important;
    }

    .btn-primary.btn-large {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .footer {
        padding: 1.8rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        text-transform: none;
        letter-spacing: normal;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 0.5rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }
}
