/* ==========================================================================
   RESET & PREMIUM STYLE VARIABLES (Soft-Organic Educational Theme)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sarabun', sans-serif;
    scroll-behavior: smooth;
}

:root {
    /* คลุมโทนสี Muted Pastel / Earth Tone แบบต้นฉบับพรีเมียม */
    --bg-organic-cream: #faf7f2;   /* พื้นหลังกระดาษอุ่นเนื้อนวล */
    --text-slate-dark: #2c3539;    /* ตัวหนังสือสีเทาถ่านเข้ม นุ่มกว่าสีดำสนิท */
    --text-muted-gray: #656e72;
    
    --brand-red: #c46851;          /* แดงอิฐตุ่นสไตล์พรีเมียม (เข้ากับธีมที่มีอยู่) */
    --brand-red-light: #fbf0ee;    /* แดงพาสเทลอ่อนละมุนสำหรับพื้นหลังซอฟต์ๆ */
    --brand-blue: #3b668a;         /* ฟ้าหม่นสไตล์หรู */
    --brand-blue-light: #eef4f8;
    --brand-green: #598067;        /* เขียวมะกอกออร์แกนิก */
    --brand-green-light: #eff5f1;
    --brand-terracotta: #c46851;   /* ส้มอิฐตุ่นระดับสากล */
    --brand-terracotta-light: #fbf0ee;
    --brand-gold: #bca057;         /* ทองหม่นหรูหรา */
    --brand-gold-light: #faf7ee;

    --white-pure: #ffffff;
    --card-radius: 24px;           /* ขอบมนสูงมากสไตล์ Soft-UI */
    --btn-radius: 100px;           /* ปุ่มโค้งมนสมบูรณ์ Fully Rounded */
}

h1, h2, h3, h4 {
    font-family: 'Noto Serif Thai', 'Sarabun', serif; /* หัวข้อใช้ฟอนต์ Serif พรีเมียมแบบหน้าหนังสือ */
    color: var(--text-slate-dark);
    font-weight: 800;
}

body {
    background-color: var(--bg-organic-cream);
    color: var(--text-slate-dark);
    line-height: 1.7;
    padding-bottom: 70px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* จัดการกล่องครอบโลโก้ */
.logo {
    display: flex;
    align-items: center;      /* บังคับให้รูปโลโก้และตัวหนังสืออยู่ตรงกลางแนวตั้งเท่ากันเป๊ะ */
    gap: 14px;                /* ระยะห่างที่เหมาะสมระหว่างรูปภาพกับตัวหนังสือ */
}

/* บังคับขนาดและมิติรูปภาพโลโก้ */
.logo-img {
    height: 96px;             /* บังคับความสูงคงที่เพื่อให้เข้ากับแถบเมนูด้านบน */
    width: 96px;              /* บังคับความกว้างเท่ากันเพื่อล็อกให้เป็นทรงจัตุรัส/วงกลมที่สมบูรณ์ */
    object-fit: contain;      /* บังคับไม่ให้รูปภาพโดนบีบแบน หรือสัดส่วนบิดเบี้ยว */
    display: block;
    border-radius: 50%;       /* ป้องกันเพิ่มเติม หากขอบรูปดั้งเดิมมีปัญหา ให้ตัดกระชับเป็นวงกลม */
}

/* จัดการตัวหนังสือข้างโลโก้ */
.logo-text {
    font-size: 1.25rem;       /* ขนาดตัวอักษรที่สมดุลกับความสูงของโลโก้ 52px */
    color: var(--text-slate-dark);
    line-height: 1;
}

/* สีแดงอิฐหม่น สอดคล้องกับโทนสีอุ่นในภาพ */
.brand-red {
    color: #b84a39; 
}

/* สีน้ำเงินครามอมเทา สอดคล้องกับลายเส้นเทคโนโลยีและเงาหยดน้ำ */
.brand-blue {
    color: #3b5973; 
}

/* สีเขียวปราชญ์/เขียวมะกอก สอดคล้องกับใบไม้ธรรมชาติในเนื้อหา */
.brand-green {
    color: #556b43; 
}

/* คงความหนาพรีเมียมของสองคำท้าย */
.text-bold {
    font-weight: 1000;
    margin-left: 4px; /* เว้นระยะห่างระหว่างคำเล็กน้อยให้คำไม่ติดกันเกินไป */
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-terracotta));
    padding-bottom: 0.25rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. ไล่เฉดสีแดง (สำหรับ RainbowOrcaKids) */
.text-gradient_red {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. ไล่เฉดสีเขียว (สำหรับ Center) */
.text-gradient_green {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

/* 3. ไล่เฉดสีน้ำเงิน (สำหรับ Research) */
.text-gradient_blue {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-terracotta { color: var(--brand-terracotta) !important; }
.text-blue { color: var(--brand-blue) !important; }
.bg-blue { background-color: var(--brand-blue) !important; color: var(--white-pure) !important; }
.bg-terracotta { background-color: var(--brand-terracotta) !important; color: var(--white-pure) !important; }

/* สีเฉพาะจุดไอคอน */
.icon-color-blue { color: var(--brand-blue); }
.icon-color-green { color: var(--brand-green); }
.icon-color-terracotta { color: var(--brand-terracotta); }
.icon-color-gold { color: var(--brand-gold); }

/* ARTWORK CONTROL (ฟิตภาพ AI ให้อ่อนละมุน เข้ากับผิวเว็บ) */
.premium-artwork {
    width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px rgba(44, 53, 57, 0.06);
    mix-blend-mode: multiply; /* ละลายขอบรูปเข้ากับพื้นผิวครีมของเว็บ */
    transition: transform 0.4s ease;
}
.premium-artwork:hover {
    transform: scale(1.02);
}

/* BUTTONS (ปรับโค้ดให้แคปซูลขอบมน เส้นบางเบา ตามภาพตัวอย่าง) */
.btn-primary {
    background-color: var(--text-slate-dark);
    color: var(--bg-organic-cream);
    padding: 14px 32px;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 102, 138, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-slate-dark);
    padding: 13px 32px;
    border: 1px solid rgba(44, 53, 57, 0.3);
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-secondary:hover {
    background-color: rgba(44, 53, 57, 0.05);
    border-color: var(--text-slate-dark);
}

/* SECTION HEADER GENERAL */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-header.text-left {
    text-align: left;
    margin-left: 0;
}
.section-header h2 {
    font-size: 2.1rem;
    line-height: 1.4;
    margin: 18px 0;
}
.section-tagline {
    color: var(--text-muted-gray);
    font-size: 1.05rem;
}
.step-badge {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
}

/* ==========================================================================
   SECTION CSS BY COMPONENT
   ========================================================================== */

/* NAVBAR */
.navbar {
    background-color: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(44, 53, 57, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
}
.logo {
    font-size: 1.25rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}
.icon-rainbow {
    color: var(--brand-blue);
    font-size: 1.4rem;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-slate-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--brand-blue);
}

/* HERO SECTION (2 Columns Responsive Layout) */
.hero-section {
    padding: 80px 0 60px 0;
}
.hero-wrapper-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--white-pure);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--brand-blue);
    border: 1px solid rgba(59, 102, 138, 0.15);
    margin-bottom: 25px;
}
.hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-gray);
    margin-bottom: 40px;
}
.hero-btns {
    display: flex;
    gap: 16px;
}

/* WORKFLOW 7 CARDS GRID */
.section-workflow { padding: 60px 0; }
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.workflow-card {
    background-color: var(--white-pure);
    padding: 35px 30px;
    border-radius: var(--card-radius);
    position: relative;
    border: 1px solid rgba(44, 53, 57, 0.03);
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.02);
    transition: all 0.3s ease;
}
.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 53, 57, 0.05);
}
.step-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(59, 102, 138, 0.08);
    position: absolute;
    top: 15px;
    right: 25px;
}
.workflow-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-slate-dark);
}
.workflow-card p {
    color: var(--text-muted-gray);
    font-size: 0.95rem;
}

/* PROBLEM SOLVER MINDSET (2 Columns with Stack List) */
.section-mindset { padding: 60px 0; }
.mindset-wrapper-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.warning-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    background-color: var(--white-pure);
    padding: 8px 20px;
    border-radius: 12px;
    border: 1px solid rgba(196, 104, 81, 0.2);
    margin: 20px 0;
    font-size: 0.9rem;
}
.mindset-description {
    color: var(--text-muted-gray);
    margin-bottom: 30px;
}
.lens-stack-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lens-item {
    background-color: var(--white-pure);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.02);
}
.lens-item.border-blue { border-left: 4px solid var(--brand-blue); }
.lens-item.border-terracotta { border-left: 4px solid var(--brand-terracotta); }

.lens-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.lens-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.lens-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
}
.lens-item p {
    font-size: 0.9rem;
    color: var(--text-muted-gray);
    padding-left: 18px;
}

/* STORY CASE STUDY SECTION */
.section-story-case { padding: 60px 0; }
.story-wrapper-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
    background-color: var(--white-pure);
    padding: 50px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(44, 53, 57, 0.03);
}
.warning-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-terracotta-light);
    color: var(--brand-terracotta);
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.story-wrapper-grid h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.story-content-box {
    margin-bottom: 25px;
}
.story-text {
    font-size: 1.05rem;
    color: var(--text-muted-gray);
    border-left: 3px solid var(--brand-terracotta);
    padding-left: 20px;
}
.analysis-box {
    background-color: var(--brand-blue-light);
    padding: 25px;
    border-radius: 16px;
}
.analysis-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.story-image-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.story-footer-note {
    font-size: 0.95rem;
    color: var(--text-muted-gray);
    border-top: 1px solid rgba(44, 53, 57, 0.1);
    padding-top: 20px;
}

/* MISSION LIBRARY (Clean UI Soft Cards) */
.section-missions { padding: 60px 0; }
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.mission-card {
    background-color: var(--white-pure);
    padding: 40px 25px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid rgba(44, 53, 57, 0.02);
    transition: all 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 53, 57, 0.06);
}
.mission-icon-wrap {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.mission-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.mission-card p {
    font-size: 0.9rem;
    color: var(--text-muted-gray);
}

/* RAINBOWORCA ACADEMY */
.section-academy { padding: 60px 0; }
.academy-wrapper-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.academy-card {
    background-color: var(--white-pure);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(44, 53, 57, 0.02);
}
.academy-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.academy-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.academy-card .subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted-gray);
}
.academy-card p {
    font-size: 0.85rem;
    color: var(--text-muted-gray);
}

/* GAMIFICATION ROADMAP (จัดวางรูป Roadmap แผ่นใหญ่อย่างภูมิฐาน) */
.section-gamification { padding: 60px 0; }
.roadmap-graphic-container {
    width: 100%;
    background-color: var(--white-pure);
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px rgba(44, 53, 57, 0.02);
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.roadmap-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
.timeline-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}
.timeline-text-item {
    background-color: var(--white-pure);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 53, 57, 0.02);
}
.lvl-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    background-color: #f0f4f8;
    color: var(--brand-blue);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.timeline-text-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.timeline-text-item p {
    font-size: 0.8rem;
    color: var(--text-muted-gray);
    line-height: 1.3;
}
.highlight-label {
    border: 2px dashed var(--brand-terracotta);
}

/* PHILOSOPHY MANIFESTO */
.section-manifesto {
    background-color: var(--text-slate-dark);
    color: var(--bg-organic-cream);
    padding: 80px 0;
    text-align: center;
    border-radius: var(--card-radius);
}
.section-manifesto h2 {
    color: var(--bg-organic-cream);
    font-size: 2rem;
    margin-bottom: 50px;
    padding: 0 20px;
}
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 40px;
    text-align: left;
}
.m-card h4 {
    color: var(--brand-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.m-card p {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.75);
}

/* FOOTER & STICKY FLOATING BANNER */
.footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: var(--text-muted-gray);
}



/* ==========================================================================
   STICKY FLOATING BANNER (สไตล์แท็บครีเอทีฟ ชิดขวา ปลายมน โดดเด่นพรีเมียม)
   ========================================================================== */
.sticky-banner {
    position: fixed;
    bottom: 20px;               /* ลอยขึ้นมาจากขอบล่างเล็กน้อยให้ดูมีมิติ */
    right: 0;                   /* บังคับชิดขวาแนบขอบจอ */
    width: 55%;                 /* แสดงผลครึ่งเดียวของหน้าจอพอดี */
    max-width: 600px;           /* จำกัดขนาดไม่ให้แผ่กว้างเกินไปบนจอ Desktop */
    
    /* ใช้สีส้มอ่อนที่เข้มกว่าพื้นหลัง (ผสมระหว่างสี Terracotta และสีครีมเบจให้พรีเมียม) */
    background-color: #f7e6e0;  
    
    /* ทำปลายมนเฉพาะด้านซ้าย (บน-ล่าง) เพื่อให้ฝั่งขวากลืนเรียบไปกับขอบหน้าจอ */
    border-radius: 30px 0 0 30px; 
    
    border: 1px solid rgba(196, 104, 81, 0.25);
    border-right: none;         /* เอาเส้นขอบฝั่งที่แนบชิดหน้าจอออก */
    padding: 12px 24px;
    z-index: 2000;
    box-shadow: -5px 5px 25px rgba(196, 104, 81, 0.12);
    transition: all 0.3s ease;
}

.banner-content {
    display: flex;
    justify-content: flex-start; /* จัดคอนเทนต์ในแท็บให้เรียงจากซ้ายไปขวา */
    align-items: center;
    gap: 10px;
    width: 100%;
}

.banner-text {
    font-weight: 600;
    font-size: 1.2rem;
    /* ใช้สีส้มอิฐตุ่นตัวหลักเพื่อให้ข้อความอ่านง่าย คมชัด และโดดเด่น */
    color: var(--brand-blue); 
    white-space: nowrap;        /* บังคับให้อยู่บรรทัดเดียวสไตล์ตัววิ่ง/ข้อความแท็บ */
    overflow: hidden;
    text-overflow: ellipsis;    /* หากหน้าจอเล็กเกินไป จะใส่ ... ท้ายข้อความให้อย่างสวยงาม */
}

/* ปรับแต่งความลื่นไหลสำหรับหน้าจอมือถือ */
@media (max-width: 768px) {
    .sticky-banner {
        width: 75%;             /* บนมือถือขยับให้กว้างขึ้นเล็กน้อยเพื่อให้เห็นข้อความครบถ้วน */
        bottom: 15px;
        padding: 10px 16px;
    }
    .banner-text {
        font-size: 0.8rem;
    }
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile Friendly Fixes)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-wrapper-grid, .mindset-wrapper-grid, .story-wrapper-grid, .academy-wrapper-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-box, .mindset-image-box, .story-image-box, .academy-image-box {
        order: -1; /* สลับเอารูปภาพขึ้นไปไว้ด้านบนเนื้อหาเมื่ออยู่ในมือถือ */
    }
    .hero-section h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; } /* ซ่อนเมนูเมื่อจอบนมือถือขนาดเล็ก */
    .story-wrapper-grid { padding: 25px; }
    .manifesto-grid { padding: 0 10px; }
    .banner-content { flex-direction: column; text-align: center; gap: 5px; }
}


/* ==========================================================================
   THE RAINBOW BRIDGE SECTION (My Dream)
   ========================================================================== */
.section-rainbow-bridge {
    padding: 10px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #f5ede6 100%);
}

.rainbow-bridge-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.rainbow-bridge-content {
    padding: 20px 0;
}

.rainbow-bridge-content .step-badge {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #a29bfe);
    color: #fff;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.rainbow-bridge-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

.bridge-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted-gray);
    margin-bottom: 30px;
    font-family: 'Sarabun', sans-serif;
}

.bridge-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white-pure);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(44, 53, 57, 0.04);
    border: 1px solid rgba(44, 53, 57, 0.04);
}

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

.pillar-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-slate-dark);
    min-width: 60px;
}

.pillar-arrow {
    color: var(--brand-terracotta);
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 4px;
}

.bridge-message {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(72, 219, 251, 0.08));
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(44, 53, 57, 0.06);
    margin-bottom: 30px;
}

.bridge-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-slate-dark);
    font-weight: 500;
    text-align: center;
}

.quote-mark {
    font-size: 2rem;
    color: var(--brand-terracotta);
    font-weight: 800;
    opacity: 0.5;
}

.rainbow-bridge-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rainbow-bridge-image img {
    max-width: 100%;
    border-radius: var(--card-radius);
}

/* Bridge Tagline in Hero */
.bridge-tagline {
    margin: 20px 0 30px 0;
}

.bridge-line {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-slate-dark);
    display: block;
    margin-bottom: 12px;
}

.bridge-pairs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.pair {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 14px 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(44, 53, 57, 0.06);
}

.pair .from {
    color: var(--brand-blue);
    font-weight: 500;
}

.pair .to {
    color: var(--brand-terracotta);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .rainbow-bridge-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rainbow-bridge-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .bridge-pillars {
        gap: 12px;
    }
    .pillar {
        padding: 12px 16px;
        flex-wrap: wrap;
    }
    .pillar-label {
        min-width: 40px;
        font-size: 0.9rem;
    }
    .rainbow-bridge-content h2 {
        font-size: 1.6rem;
    }
    .bridge-message p {
        font-size: 1rem;
    }
    .bridge-pairs {
        gap: 6px 10px;
    }
    .pair {
        font-size: 0.85rem;
        padding: 3px 10px 3px 8px;
    }
}