/* =========================================
   TECHFLOD | MASTER DESIGN SYSTEM
========================================= */

/* --- Variables & Reset --- */
:root {
    --primary: #0f172a; 
    --primary-hover: #1e293b; 
    --accent-red: #D32F2F;
    
    /* Product Brand Colors */
    --color-leads: #3daf57;
    --color-reach: #1578f5;
    --color-reflect: #e53935;

    --gradient-text: linear-gradient(135deg, #10b981 0%, #3b82f6 33%, #8b5cf6 66%, #D32F2F 100%);
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #94a3b8;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --radius: 12px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-gray);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .nav-links a, .badge, .btn, .btn-link, .stat-number, .team-name {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

/* --- Core Layout --- */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.125rem; }

/* --- Reusable UI Components --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.3);
    color: white;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.btn-link span { display: inline-block; margin-left: 0.4rem; transition: transform 0.3s ease; }
.btn-link:hover { color: #616267; }
.btn-link:hover span { transform: translateX(4px); }

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); }

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.icon-box {
    width: auto; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: flex-start;
    margin-bottom: 1.5rem; /*overflow: hidden;*/ flex-shrink: 0; 
}
.icon-box img { /*width: 100%;*/ height: 100%; object-fit: contain; }

/* --- Navigation --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem; max-width: 1200px; margin: 0 auto;
    position: absolute; top: 0; left: 0; right: 0; z-index: 100;
}
.logo img { height: 36px; width: auto; object-fit: contain; opacity: 0.9; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 500; color: var(--text-gray); font-size: 1rem; }
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); font-weight: 700; }

/* --- Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }

/* --- Homepage Specific --- */
.hero {
    text-align: center; padding: 9rem 2rem 5rem; position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%);
}
.hero h1 { font-size: 4.5rem; font-weight: 700; max-width: 900px; margin: 0 auto 1.5rem; letter-spacing: -0.03em; }
.hero h1 span.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; max-width: 650px; margin: 0 auto 3rem; color: var(--text-gray); }
.hero-buttons { display: flex; justify-content: center; align-items: center; gap: 1.5rem; }

.about-home { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-home h2, .about-grid h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.about-image { border-radius: var(--radius); height: 400px; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }

.about-grid p { margin-bottom: 1.5rem; }
.about-grid p:last-of-type { margin-bottom: 2.5rem; }

.values, .products, .testimonials { padding: 6rem 0; }
.values, .testimonials { background-color: var(--bg-gray); }

.card {
    background-color: var(--bg-light); border-radius: var(--radius);
    border: 1px solid var(--border-color); padding: 2.5rem;
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-img { height: 200px; object-fit: cover; width: 100%; border-bottom: 1px solid var(--border-color); border-radius: var(--radius) var(--radius) 0 0; }
.product-card { padding: 0; box-shadow: var(--shadow-sm); }
.product-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-content h3 { font-size: 1.5rem; margin: 1rem 0 0.5rem; font-weight: 700; }
.product-subtitle { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 1.2rem; }

.product-list, .feature-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.product-list li { font-size: 0.95rem; margin-bottom: 0.6rem; position: relative; padding-left: 1.2rem;}
.product-list li::before { content: "•"; color: var(--text-gray); position: absolute; left: 0; font-weight: bold; }
.feature-list li { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.feature-list li svg { width: 22px; height: 22px; flex-shrink: 0; }

.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 2rem; line-height: 1.6; flex-grow: 1; }
.author-wrapper { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-info { display: flex; flex-direction: column; }
.author-title { font-size: 0.85rem; color: var(--text-gray); }

/* --- Inner Pages (Shared) --- */
.minimal-header { padding: 11rem 2rem 5rem; max-width: 900px; margin: 0 auto; text-align: center; background:radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%)}
.minimal-header h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.minimal-header p { font-size: 1.25rem; color: var(--text-gray); line-height: 1.6; }

.split-section { padding: 2rem 0 6rem; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 8rem; }
.split-grid:last-child { margin-bottom: 0; }
.split-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.split-content p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.8; }
.split-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; }

.stats { padding: 4rem 0 6rem; border-bottom: 1px solid var(--border-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1; }
.stat-label { font-size: 1rem; font-weight: 600; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.05em; }

.bottom-cta { text-align: center; padding: 6rem 2rem; background-color: var(--bg-gray); border-top: 1px solid var(--border-color); }

/* --- Support & FAQ Page Specific --- */
.support-search { position: relative; max-width: 600px; margin: 2rem auto 0; }
.support-search input { width: 100%; padding: 1.25rem 1.5rem 1.25rem 3.5rem; border-radius: 999px; border: 1px solid var(--border-color); font-size: 1.1rem; font-family: 'DM Sans', sans-serif; color: var(--text-dark); box-shadow: var(--shadow-sm); transition: all 0.2s ease; }
.support-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08); }
.support-search svg { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; fill: var(--text-gray); }
.faq-link { transition: color 0.2s ease; }
.faq-link:hover { color: #3b82f6; }

/* --- Footer --- */
footer { background-color: var(--bg-dark); color: var(--text-light); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
footer h4 { color: white; margin-bottom: 1.2rem; font-size: 1.1rem; font-weight: 600; }
footer ul li { margin-bottom: 0.8rem; }
footer ul li a { font-size: 0.95rem; }
footer ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.legal-links { font-size: 0.75rem; opacity: 0.4; }
.legal-links a { margin-right: 0.5rem; }
.legal-links a:hover { opacity: 1; }
/* --- Updated Footer Social Icons --- */
.social-icons { 
    display: flex; 
    gap: 1.5rem; /* Increased gap since there's no circular border */
}

.social-icons a { 
    color: var(--text-light); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: auto; /* Remove fixed width */
    height: auto; /* Remove fixed height */
    background-color: transparent; /* Removed round background */
    transition: transform 0.2s ease, color 0.2s ease;
    opacity: 0.8;
}

.social-icons a:hover { 
    color: white;
}

.social-icons svg { 
    width: 20px; /* Slightly larger since there is no container */
    height: 20px; 
    fill: currentColor; 
}

/* =========================================
   MOBILE RESPONSIVE OVERRIDES
========================================= */
@media (min-width: 769px) {
    .split-grid.reverse .split-content { order: 2; }
    .split-grid.reverse .split-image { order: 1; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    nav { padding: 1.25rem; }
    .nav-links { display: none; }
    .hero { padding-top: 7rem; padding-bottom: 4rem; }
    .hero h1 { font-size: 2.75rem; line-height: 1.1; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .minimal-header { padding: 7rem 1.25rem 3rem; }
    .minimal-header h1 { font-size: 2.25rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-grid, .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .split-grid { margin-bottom: 4rem; }
    .about-image { height: 250px; order: -1; }
    
    /* Reset order for reversed split grids */
    .split-grid.reverse .split-content,
    .split-grid.reverse .split-image { order: initial; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .footer-bottom { flex-direction: column-reverse; gap: 1.5rem; text-align: left; align-items: flex-start; }
    
    .contact-section { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .contact-form-card { padding: 2rem; }
    
    .product-hero-split { padding-top: 8rem; overflow: hidden; }
    .product-hero-split h1 { font-size: 2.5rem; }
    .product-hero-split p { font-size: 1.1rem; }
    .hero-dashboard-img { width: 100%; }
    .step-card { margin-top: 2rem; padding: 2.5rem 2rem 2rem; }
    .step-number { left: 2rem; }
    
    .pricing-trust-footer { grid-template-columns: 1fr; gap: 2rem; }
    .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pricing-card.popular { margin-top: 1rem; }
}

/* --- Contact Page Hub --- */
/* --- Modern Contact Hub (No Form) --- */
.contact-section { padding: 0 2rem 8rem; max-width: 1000px; margin: 0 auto; }

/* Top Wide Address Card */
.contact-wide-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: border-color 0.3s ease;
}

.contact-wide-card:hover { border-color: var(--primary); }

/* Bottom 3-Column Grid */
.contact-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover { transform: translateY(-5px); border-color: var(--primary); }

/* Icons & Typography */
.contact-icon { width: 48px; height: 48px; fill: var(--primary); margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700; }
.contact-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.6; }
.contact-link { font-weight: 600; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.contact-link:hover { text-decoration: underline; }

.social-links-wrap { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
.social-icon-link svg { width: 24px; height: 24px; fill: var(--text-dark); transition: fill 0.2s; }
.social-icon-link:hover svg { fill: var(--primary); }

@media (max-width: 850px) {
    .contact-wide-card { flex-direction: column; text-align: center; padding: 2rem; }
}

/* =========================================
   INDIVIDUAL PRODUCT PAGES
========================================= */

/* --- Split Hero Layout --- */
.product-hero-split { padding: 11rem 0 6rem; background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.product-hero-split .split-grid { margin-bottom: 0; align-items: center; }
.product-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.25rem; border-radius: 999px; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem; font-family: 'Outfit', sans-serif; }
.product-hero-logo { height: 45px; width: auto; margin-bottom: 1.5rem; display: block; }
.badge-leads { color: var(--color-leads); background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-reach { color: var(--color-reach); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.badge-reflect { color: var(--color-reflect); background: rgba(229, 57, 53, 0.1); border: 1px solid rgba(229, 57, 53, 0.2); }
.product-hero-split h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.03em; line-height: 1.1; }
.product-hero-split p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2.5rem; line-height: 1.6; }
.hero-dashboard-img { width: 130%; max-width: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }

/* --- How it Works (Step Grid) --- */
.steps-section { padding: 6rem 0; background-color: var(--bg-gray); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.step-card { padding: 3rem 2.5rem 2.5rem; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-color); position: relative; box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-number { position: absolute; top: -20px; left: 2.5rem; width: 44px; height: 44px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 50%; font-family: 'Outfit', sans-serif; font-size: 1.25rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.step-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

/* --- Pricing Trust Footer (Safety Net) --- */
.pricing-trust-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 4rem auto 0; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.trust-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.trust-item svg { width: 32px; height: 32px; flex-shrink: 0; }
.trust-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-dark); }
.trust-item p { font-size: 0.95rem; color: var(--text-gray); margin: 0; line-height: 1.6; }

/* --- Product Pricing Section --- */
.pricing-section { padding: 6rem 0; background-color: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1050px; margin: 0 auto; }
.pricing-card { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 3rem 2rem; background: var(--bg-light); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Highlighted "Popular" Tiers for Products */
.pricing-card.popular.pricing-leads { border-color: var(--color-leads); box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.2); }
.pricing-card.popular.pricing-reach { border-color: var(--color-reach); box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2); }
.pricing-card.popular.pricing-reflect { border-color: var(--color-reflect); box-shadow: 0 10px 30px -10px rgba(229, 57, 53, 0.2); }

.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); color: white; padding: 0.3rem 1.2rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.pricing-price { font-size: 3.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; font-family: 'Outfit', sans-serif; line-height: 1; }
.pricing-price span { font-size: 1.1rem; color: var(--text-gray); font-weight: 400; }
.pricing-desc { color: var(--text-gray); font-size: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2.5rem; flex-grow: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 1rem; color: var(--text-dark); }
.pricing-features svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.1rem; }

/* =========================================
   SUPPORT PAGE SPECIFIC
========================================= */
.icon-box.light-reach { background-color: rgba(59, 130, 246, 0.1); color: var(--color-reach); font-size: 1.5rem; }
.icon-box.light-leads { background-color: rgba(16, 185, 129, 0.1); color: var(--color-leads); font-size: 1.5rem; }
.icon-box.light-reflect { background-color: rgba(229, 57, 53, 0.1); color: var(--color-reflect); font-size: 1.5rem; }

.support-article-list { max-width: 800px; margin: 0 auto; list-style: none; padding: 0; }
.support-article-item { border-bottom: 1px solid var(--border-color); }
.support-article-link { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 1.5rem 0; font-size: 1.15rem; font-weight: 600; 
    color: var(--text-dark); transition: color 0.2s ease; 
}
.support-article-link:hover { color: #3b82f6; }
.support-article-link svg { width: 20px; height: 20px; fill: currentColor; transition: transform 0.2s ease; }
.support-article-link:hover svg { transform: translateX(4px); }

/* =========================================
   UTILITY CLASSES (To replace inline HTML styles)
========================================= */

/* Typography & Colors */
.text-leads { color: var(--color-leads) !important; }
.text-reach { color: var(--color-reach) !important; }
.text-reflect { color: var(--color-reflect) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }
.text-primary { color: var(--primary) !important; }
.text-underline { text-decoration: underline !important; }
.text-center { text-align: center !important; }
.fw-600 { font-weight: 600 !important; }

.fs-2xl { font-size: 2.5rem !important; }
.fs-lg { font-size: 1.2rem !important; }
.fs-sm { font-size: 0.85rem !important; }

/* SVG Fills */
.fill-lead { fill: var(--color-leads) !important; }
.fill-reach { fill: var(--color-reach) !important; }
.fill-reflect { fill: var(--color-reflect) !important; }
.fill-primary { fill: var(--primary) !important; }

/* Backgrounds & Borders */
.bg-lead { background-color: var(--color-leads) !important; }
.bg-reach { background-color: var(--color-reach) !important; }
.bg-reflect { background-color: var(--color-reflect) !important; }
.bg-transparent { background-color: transparent !important; }
.bg-white { background-color: var(--bg-light) !important; }
.bg-gray-section { background-color: var(--bg-gray); border-radius: var(--radius); }

.border-none { border: none !important; }
.border-top-none { border-top: none !important; }
.shadow-none { box-shadow: none !important; }

/* Layout & Spacing */
.w-100 { width: 100% !important; }
.justify-start { justify-content: flex-start !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-1-5 { margin-bottom: 1.5rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-6 { padding-top: 6rem !important; }
.py-4 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.mt-auto { margin-top: auto !important; }

/* Buttons */
.btn-full { width: 100%; display: block; text-align: center; }
.btn-outline { border: 1px solid var(--border-color); background: transparent; color: var(--text-dark); }
.btn-outline:hover { background: var(--bg-gray); }

/* Forms */
.form-select { appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23475569%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; background-position: right 1rem top 50%; background-size: 0.65rem auto; }

/* FAQ System */
.faq-container { max-width: 800px; margin: 0 auto 6rem; padding: 0 2rem; }
.faq-category { font-size: 1.75rem; font-weight: 700; margin: 4rem 0 1.5rem; color: var(--text-dark); padding-bottom: 0.5rem; border-bottom: 2px solid var(--border-color); }
.faq-details { border-bottom: 1px solid var(--border-color); }
.faq-summary { list-style: none; padding: 1.5rem 0; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.2s ease; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { width: 24px; height: 24px; transition: transform 0.3s ease; fill: currentColor; flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-content { padding-bottom: 1.5rem; color: var(--text-gray); line-height: 1.7; font-size: 1.05rem; padding-right: 2rem; }

/* Narrative Container (From About Page) */
.narrative-container { max-width: 800px; margin: 0 auto; text-align: left; }
.narrative-container strong { color: var(--text-dark); font-weight: 700; }
.narrative-container em { font-style: normal; color: var(--primary); font-weight: 600; }