/* ==================== GLOBAL STYLES ==================== */
:root {
    /* KTCHP Brand Colors - Matching Mobile App */
    --primary: #E52D31;      /* Ketchup Red - main accent */
    --primary-dark: #C41E22;  /* Darker red for pressed states */
    --primary-light: #FF4D51; /* Lighter red for highlights */
    
    /* Background colors */
    --background: #449CAE;    /* Teal background */
    --background-dark: #3A8796; /* Darker teal */
    --background-light: #5AACBC; /* Lighter teal */
    
    /* Surface colors */
    --surface: #1e293b;
    --surface-light: #334155;
    
    /* Text colors */
    --text: #FFFFFF;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Status colors */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Other */
    --border: #334155;
    --gradient: linear-gradient(135deg, #E52D31 0%, #FF4D51 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(58, 135, 150, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.nav-cta {
    background: var(--gradient);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-light);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--surface);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--surface-light);
}

.phone-screen {
    background: var(--background);
    border-radius: 30px;
    height: 100%;
    padding: 1.5rem;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.app-logo {
    font-weight: 700;
    font-size: 1.25rem;
}

.app-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    background: var(--success);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-rating {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.card-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==================== SECTIONS ==================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== OWNERS SECTION ==================== */
.owners-section {
    padding: 6rem 2rem;
    background: var(--background-dark);
}

.owners-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.owner-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.owner-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text);
}

.owner-feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.owner-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-card {
    background: var(--background);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.step {
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    padding-top: 1rem;
}

/* ==================== PRICING ==================== */
.pricing {
    padding: 6rem 2rem;
    background: var(--background-dark);
}

.pricing-cards {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--background);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--success);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==================== DOWNLOAD ==================== */
.download {
    padding: 6rem 2rem;
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.store-btn:hover {
    background: var(--surface-light);
    border-color: var(--primary);
}

.store-btn i {
    font-size: 2rem;
}

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

.store-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.store-text strong {
    font-size: 1.125rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--background-dark);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--text);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .owners-content {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* ==================== SPECIFICATIONS PAGE ==================== */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.specs-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specs-category {
    margin-bottom: 4rem;
}

.specs-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.specs-category-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.specs-category-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

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

.spec-item {
    background: var(--surface);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.spec-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.spec-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-item ul {
    margin-top: 0.75rem;
}

.spec-item li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.spec-item li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* ==================== INVESTORS PAGE ==================== */
.investor-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.metric-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.monetization-section {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.monetization-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.monetization-card {
    background: var(--background);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.monetization-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.monetization-card h3 i {
    color: var(--primary);
}

.monetization-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.revenue-highlight {
    background: rgba(249, 115, 22, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.revenue-highlight span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.revenue-highlight small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.market-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.market-stat-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.market-stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.market-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.market-stat-item:last-child {
    border-bottom: none;
}

.market-stat-item span:first-child {
    color: var(--text-secondary);
}

.market-stat-item span:last-child {
    font-weight: 700;
    color: var(--text);
}

/* ==================== VERSION HISTORY ==================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 2px solid var(--border);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--background);
}

.timeline-date {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content {
    background: var(--surface);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-features {
    margin-top: 1rem;
}

.timeline-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-features li::before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.version-badge {
    display: inline-block;
    background: var(--success);
    color: var(--text);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .investor-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monetization-grid {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}
/* Privacy Policy Page Styles */
.policy-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.policy-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
}

.policy-toc h3 {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 16px;
}

.policy-toc ol {
    list-style: decimal;
    padding-left: 20px;
}

.policy-toc li {
    margin-bottom: 8px;
}

.policy-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.policy-toc a:hover {
    color: var(--primary);
}

.policy-article {
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-article h2 {
    color: var(--text);
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.policy-article h2:first-child {
    margin-top: 0;
}

.policy-article h3 {
    color: var(--text);
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-article ul, .policy-article ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.policy-article li {
    margin-bottom: 8px;
}

.info-box {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.info-box-highlight {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.info-box-warning {
    border-left-color: #eab308;
    background: rgba(234, 179, 8, 0.1);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.policy-table th, .policy-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.policy-table th {
    color: var(--text);
    font-weight: 600;
    background: var(--surface);
}

.policy-table a {
    color: var(--primary);
}

.contact-info {
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Partners/Affiliates Page Styles */
.partners-section {
    padding: 60px 0;
}

.partner-category {
    margin-bottom: 60px;
}

.partner-category h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 28px;
    margin-bottom: 24px;
}

.category-icon {
    font-size: 32px;
}

.category-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.partner-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.partner-featured {
    border: 2px solid var(--primary);
}

.partner-logo {
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.partner-logo svg {
    height: 48px;
    width: auto;
}

.partner-logo-text {
    font-size: 48px;
}

.partner-card h3 {
    color: var(--text);
    font-size: 20px;
    margin-bottom: 4px;
}

.partner-type {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.partner-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.partner-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-live .status-dot {
    background: #22c55e;
}

.status-live {
    color: #22c55e;
}

.status-pending .status-dot {
    background: #eab308;
}

.status-pending {
    color: #eab308;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #00796b 100%);
    padding: 80px 0;
    margin-top: 40px;
}

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

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Responsive for policy page */
@media (max-width: 900px) {
    .policy-content {
        grid-template-columns: 1fr;
    }
    
    .policy-toc {
        position: static;
    }
}

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