@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===================================
   Premier Style Match
   =================================== */

:root {
    /* RTC Palette */
    --teal-primary: #79c8c3;
    --teal-dark: #1e8a8a;
    --teal-deep: #2a8b87;
    --gold-accent: #f2c94c;
    --teal-accent: #79c8c3;
    --primary-dark: #1f2f32;
    --primary-navy: #2a3c40;
    --white: #ffffff;
    --text-dark: #364e52;
    --text-strong: #1f2f32;
    --text-muted: #6f8286;
    --bg-light: #ecf0f0;
    --bg-section: #d8e5e5;
    --border-light: #d9e2e2;
    --gray-50: #f6f8f8;
    --gray-100: #edf1f1;
    --gray-200: #dfe5e5;
    --gray-300: #cfd7d7;
    --gray-400: #b7c2c2;
    --gray-500: #9aa8aa;
    --gray-600: #7b8c8f;
    --gray-700: #5f7276;
    --gray-800: #42575b;
    --gray-900: #2d3b3f;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 6px 18px rgba(30, 55, 60, 0.08);
    --shadow-md: 0 12px 24px rgba(30, 55, 60, 0.12);
    --shadow-lg: 0 18px 36px rgba(30, 55, 60, 0.16);

    /* Container */
    --container-max-width: 1200px;
}

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

html {
    font-size: 16px;
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 80px;
}

/* Improve rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-strong);
}

.page-hero h1,
.content-section h2,
.story-card h2,
.info-card h3,
.feature-box h3,
.platform-feature h3,
.news-card h3 {
    white-space: nowrap;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Buttons - RTC Style
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--teal-primary);
    color: var(--teal-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #8ad0cc;
    text-decoration: none;
}

.btn-primary::after {
    content: '↗';
    font-size: 0.95rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--teal-dark);
    padding: 0.5rem 0;
    border-radius: 0;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    color: #137173;
    text-decoration: none;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--teal-accent);
    color: var(--primary-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-teal::after {
    content: '↗';
}

.btn-teal:hover {
    background-color: var(--teal-dark);
}

/* ===================================
   Hero Section - RTC Style
   =================================== */

.hero {
    background: linear-gradient(rgba(16, 36, 38, 0.72), rgba(16, 36, 38, 0.72)),
                url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad?w=1920&q=80') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    max-width: 500px;
}

/* Stats Display */
.hero-stats {
    margin-bottom: 2rem;
}

.stat-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--teal-primary);
    line-height: 1;
}

.stat-percent {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-primary);
}

.stat-pa {
    font-size: 1.25rem;
    color: var(--white);
    margin-left: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}

.hero-actions .btn-primary {
    margin-bottom: 1rem;
}

.action-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.action-note::before {
    content: '⏱';
    font-size: 0.9rem;
}

.action-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.9rem;
}

.action-link:hover {
    color: var(--teal-accent);
}

/* Hero Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    height: 320px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-overlay-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
}

.hero-seal {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b4b10;
    flex-shrink: 0;
    font-weight: 700;
}

.hero-seal::before {
    content: 'P';
}

.hero-overlay-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
}

.hero-overlay-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===================================
   Value Props - Below Hero
   =================================== */

.value-props {
    background: var(--white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.value-prop {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.value-prop:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--border-light);
}

/* ===================================
   Section Labels - Badge Style
   =================================== */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-primary);
}

/* ===================================
   Content Sections
   =================================== */

.content-section {
    padding: 5rem 0;
}

.content-section.alt {
    background: var(--gray-50);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-content p {
    color: var(--gray-700);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: var(--radius-lg);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 1rem;
}

/* Best Performing Funds Badge */
.highlight-badge {
    display: inline-block;
    background: var(--teal-primary);
    color: var(--teal-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===================================
   Intro Cards (Homepage)
   =================================== */

.intro-cards {
    padding: 3.5rem 0 2rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.info-card .card-content {
    flex: 1;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.card-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-primary);
}

.info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-strong);
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--teal-dark);
    font-size: 0.9rem;
}

.card-link::after {
    content: '';
    font-size: 0.9rem;
}

.card-media {
    width: 160px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card {
    margin-top: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.about-card .card-media {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

/* ===================================
   Diversify + Top Performers
   =================================== */

.diversify-section {
    background: var(--bg-section);
    padding: 4rem 0;
}

.diversify-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.diversify-content h2 {
    margin-bottom: 1rem;
    color: var(--text-strong);
}

.diversify-content p {
    color: var(--text-muted);
    max-width: 520px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 500;
}

.check-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: var(--teal-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.top-performers-card {
    background: var(--teal-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.top-performers-card .card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.top-performers-card .card-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-primary);
}

.top-performers-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.top-performers-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.top-performers-card .range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    font-weight: 600;
}

.top-performers-card .range .value {
    font-size: 1.35rem;
    color: var(--white);
}

.top-performers-card .range .divider {
    color: rgba(255, 255, 255, 0.5);
}

.top-performers-card .note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* ===================================
   Diverse Funds Section
   =================================== */

.diverse-funds {
    padding: 5rem 0;
    text-align: center;
}

.diverse-funds .section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.diverse-funds h2 {
    margin-bottom: 1rem;
}

.asset-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asset-type {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.asset-type:hover {
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-sm);
}

.asset-type h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

/* ===================================
   Top Performers Section
   =================================== */

.top-performers {
    background: var(--gray-50);
    padding: 5rem 0;
    text-align: center;
}

.top-performers .section-header {
    max-width: 700px;
    margin: 0 auto;
}

.return-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 1.125rem;
}

.return-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.return-stats .label {
    color: var(--gray-600);
}

.return-stats .value {
    font-weight: 700;
    color: var(--primary-dark);
}

.return-stats .divider {
    color: var(--gray-400);
    font-size: 1.5rem;
}

.performance-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
    max-width: 500px;
    margin: 1rem auto 2rem;
}

/* ===================================
   Unlock Wealth Section
   =================================== */

.wealth-potential {
    background: transparent;
    color: var(--text-dark);
    padding: 4rem 0 3rem;
    text-align: center;
}

.wealth-potential h2 {
    color: var(--text-strong);
    margin-bottom: 1rem;
}

.wealth-potential p {
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ===================================
   Three Column Features
   =================================== */

.features-three {
    padding: 2rem 0 4rem;
}

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

.feature-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    border-color: rgba(121, 200, 195, 0.6);
    box-shadow: var(--shadow-md);
}

.feature-media {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-media img {
    transform: scale(1.05);
}

.feature-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(121, 200, 195, 0.9);
    color: var(--teal-dark);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-body {
    padding: 1.5rem;
}

.feature-box h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-strong);
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===================================
   Support Section
   =================================== */

.support-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.support-header {
    text-align: left;
    max-width: 520px;
}

.support-header h2 {
    margin-bottom: 1rem;
}

.support-header p {
    color: var(--text-muted);
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.support-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-box {
    background: var(--white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.question-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-strong);
    line-height: 1.6;
    margin: 0;
}

.question-box p {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.question-box::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ===================================
   Modal Styles
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

.close:hover {
    color: var(--gray-900);
}

.modal-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal-accent);
}

.form-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.125rem;
}

/* ===================================
   Utilities
   =================================== */

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

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p {
        max-width: 100%;
    }
    

    .hero-visual {
        justify-content: center;
    }

    .hero-overlay-card {
        position: static;
        margin-top: 1.5rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

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

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

    .info-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-media {
        width: 100%;
        height: 180px;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

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

    .top-performers-card {
        margin-top: 2rem;
    }
    
    .asset-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-questions {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .return-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .return-stats .divider {
        display: none;
    }

    .page-hero h1,
    .content-section h2,
    .story-card h2,
    .info-card h3,
    .feature-box h3,
    .platform-feature h3,
    .news-card h3 {
        white-space: normal;
    }

    .hero-image {
        height: 240px;
    }

    .feature-media {
        height: 140px;
    }

    .top-performers-card {
        padding: 1.5rem;
    }
}

/* ===================================
   Page Hero - RTC Style
   =================================== */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #4ecdc4 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(78, 205, 196, 0.1) 10px,
        rgba(78, 205, 196, 0.1) 20px
    );
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--teal-accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Story Card - RTC Style
   =================================== */

.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.story-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-card p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

/* ===================================
   Mission Section - RTC Style
   =================================== */

.mission-section {
    background: var(--teal-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mission-card {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
}

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

.mission-section .btn-primary:hover {
    background: var(--primary-navy);
}

/* ===================================
   Content Cards - General
   =================================== */

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-dark);
    display: inline-block;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   Stats Grid
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .mission-card h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Platform Page Styles
   =================================== */

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.platform-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.platform-feature:hover {
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-md);
}

.platform-feature .icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-dark);
}

.platform-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.platform-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .platform-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ Accordion
   =================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   Contact Page
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   News/Articles
   =================================== */

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-date {
    font-size: 0.8125rem;
    color: var(--teal-accent);
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.news-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
