/*
Theme Name: Clarity Pro
Theme URI: https://example.com/clarity-pro
Author: Your Studio
Author URI: https://example.com
Description: A clean, single-page-first WordPress theme built around progressive disclosure — sticky nav, a swappable hero (4 built-in styles), animated stats, a logo marquee, a bento-style "how it works" grid, swipeable challenge cards, a testimonial slider, an accordion FAQ, and a dark contact panel. All content areas are editable from the WordPress admin (Customizer + custom post types). Placeholder branding and copy included — replace via Appearance > Customize and the Services / Testimonials / Challenges / FAQ menus.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: clarity-pro
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* =========================================
   BASE DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --bg-main: #fbfbfd;
    --bg-card: #ffffff;
    --bg-section: #f5f5f7;
    --accent: #0066cc;
    --accent-grad-start: #cc5422;
    --accent-grad-end: #e58d4c;

    --charcoal: #111827;
    --off-white: #F5F5F7;
    --mid-gray: #6B7280;
    --border: rgba(17,24,39,0.1);

    --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
.screen-reader-text { position: absolute; left: -9999px; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent-grad-start) 0%, var(--accent-grad-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.global-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 3.5rem;
}

.v-section { padding: 8rem 10%; }
.v-h3 { font-weight: 600; letter-spacing: -0.03em; }
.v-p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }
.bg-gray { background-color: var(--bg-section); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

#services, #how-it-works, #testimonials, #faq { scroll-margin-top: 70px; }

.btn-primary {
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo-text { font-weight: 700; font-size: 18px; color: var(--text-main); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 15px; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-main); margin: 5px 0; }
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .navbar.nav-open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-main); padding: 20px 5%; gap: 16px; border-bottom: 1px solid rgba(0,0,0,0.05); }
}

/* =========================================
   HERO — SHARED BITS
   ========================================= */
.hero-eyebrow { display: inline-block; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1rem; }
.focus-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.tag-pill { background: var(--bg-section); border: 1px solid var(--border); padding: 8px 18px; border-radius: 980px; font-size: 0.85rem; font-weight: 500; color: var(--text-main); }

/* Hero: Split (text left / portrait right) */
.hero-split { max-width: 1200px; margin: 0 auto; padding: 80px 20px 60px; }
.hero-split .hero-main { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-split .hero-text { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.main-heading { line-height: 1.05; color: var(--text-main); }
.gradient-text-main { font-size: clamp(56px, 6.5vw, 90px); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 4px; }
.heading-sub { display: block; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.03em; }
.motto-text { font-size: clamp(20px, 2vw, 24px); line-height: 1.4; color: #515154; font-weight: 500; letter-spacing: -0.01em; max-width: 600px; border-left: 2px solid #d2d2d7; padding-left: 24px; }
.hero-split .hero-visual { flex: 1; display: flex; justify-content: center; }
.hero-split .visual-container { position: relative; width: 100%; max-width: 420px; }
.hero-split .image-box { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.12); aspect-ratio: 4/5; background: var(--bg-section); }
.hero-split .image-box img { width: 100%; height: 100%; object-fit: cover; }
.tag-identity { position: absolute; left: 20px; right: 20px; bottom: 20px; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); border-radius: 16px; padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; }
.identity-name { font-weight: 700; font-size: 15px; color: var(--text-main); }
.identity-title { font-size: 13px; color: var(--text-muted); }
@media (max-width: 900px) { .hero-split .hero-main { flex-direction: column; } .hero-split .hero-text { align-items: center; text-align: center; } .motto-text { border-left: none; padding-left: 0; } .focus-tags { justify-content: center; } }

/* Hero: Centered */
.hero-centered { max-width: 900px; margin: 0 auto; padding: 100px 20px 70px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-centered .motto-text { border-left: none; padding-left: 0; margin: 0 auto; }
.hero-centered .focus-tags { justify-content: center; }
.hero-centered .hero-actions { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.btn-secondary { background: none; border: 1px solid var(--border); color: var(--text-main); padding: 12px 24px; border-radius: 980px; font-size: 15px; font-weight: 500; text-decoration: none; transition: background 0.2s ease; }
.btn-secondary:hover { background: var(--bg-section); }

/* Hero: Video / full-bleed background */
.hero-video { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 40px 20px; }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 100%); z-index: 1; }
.hero-video .hero-content { position: relative; z-index: 2; max-width: 800px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero-video .main-heading, .hero-video .motto-text { color: #fff; }
.hero-video .motto-text { border-left-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.hero-video .hero-eyebrow { color: rgba(255,255,255,0.7); }
.hero-video .tag-pill { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

/* Hero: Minimal */
.hero-minimal { max-width: 1000px; margin: 0 auto; padding: 140px 20px 100px; }
.hero-minimal .main-heading { font-size: clamp(40px, 6vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
.hero-minimal .motto-text { margin-top: 32px; font-size: clamp(18px, 1.8vw, 22px); }
.hero-minimal .hero-actions { margin-top: 40px; display: flex; gap: 14px; }

/* =========================================
   STATS
   ========================================= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin: 0 auto; padding: 3rem 5% 5rem; gap: 2rem; }
.stat-box { text-align: center; }
.stat-number { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--text-main); letter-spacing: -0.02em; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================
   LOGO MARQUEE
   ========================================= */
#trusted-by { padding: 4rem 0; }
#trusted-by h3 { text-align: center; }
.logo-slider { width: 100%; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.logo-track { display: flex; width: max-content; animation: scroll-logos 30s linear infinite; align-items: center; }
.logo-track img { height: 32px; margin: 0 2.5rem; opacity: 0.5; filter: grayscale(100%); flex-shrink: 0; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   SERVICES GRID
   ========================================= */
#services { padding: 8rem 10%; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.service-card { text-align: center; }
.service-image { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-section); margin-bottom: 14px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-caption { font-weight: 600; font-size: 0.95rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================
   HOW IT WORKS — BENTO GRID
   ========================================= */
#how-it-works { padding: 8rem 10%; background: var(--bg-section); }
.about-container { max-width: 1100px; margin: 0 auto; }
.hiw-bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.info-box { background: var(--bg-card); border-radius: 24px; padding: 32px; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease; border: 1px solid var(--border); }
.info-box:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.box-span-4 { grid-column: span 4; }
.box-span-5 { grid-column: span 5; }
.box-span-3 { grid-column: span 3; }
.box-span-9 { grid-column: span 9; }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-section); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--text-main); }
.info-box svg { width: 22px; height: 22px; }
.info-box p { font-size: 1rem; line-height: 1.5; color: var(--text-main); }
@media (max-width: 900px) { .box-span-4, .box-span-5, .box-span-3, .box-span-9 { grid-column: span 12; } }

/* =========================================
   PAIN POINTS / CHALLENGES — HORIZONTAL SCROLL
   ========================================= */
#challenges { padding: 8rem 0; }
#challenges .container { margin-bottom: 3rem; }
.c-eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1rem; display: block; }
.pain-scroll-wrap { overflow-x: auto; scrollbar-width: none; cursor: grab; padding: 0 5%; }
.pain-scroll-wrap.dragging { cursor: grabbing; }
.pain-scroll-wrap::-webkit-scrollbar { display: none; }
.pain-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr); gap: 24px; }
.pain-card { background: var(--charcoal); color: #fff; border-radius: 28px; padding: 40px; cursor: pointer; transition: transform 0.25s ease; user-select: none; }
.pain-card:hover { transform: translateY(-4px); }
.pain-number { font-size: 0.85rem; font-weight: 700; opacity: 0.4; margin-bottom: 12px; }
.pain-level { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pain-card h3 { font-size: 1.5rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.pain-card p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.65); font-weight: 300; }
.scroll-hint { display: none; align-items: center; gap: 8px; color: var(--text-muted); font-size: 12px; margin-top: 20px; padding: 0 5%; }
@media (max-width: 900px) { .pain-track { grid-auto-columns: 80vw; } .scroll-hint { display: flex; } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================
   MODALS
   ========================================= */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 20000; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 24px; max-width: 600px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 44px; position: relative; animation: modal-in 0.22s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--mid-gray); transition: background 0.15s; }
.modal-close:hover { background: var(--off-white); }
.modal-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 12px; }
.modal h3 { font-size: 24px; margin-bottom: 16px; letter-spacing: -0.5px; color: var(--charcoal); }
.modal p { color: #555; font-weight: 400; line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.modal-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; padding: 0; }
.modal-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #444; line-height: 1.6; font-weight: 400; }
.modal-check { width: 20px; height: 20px; background: rgba(0,102,204,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 11px; margin-top: 1px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-slider { width: 100%; overflow: hidden; position: relative; padding: 1rem 0; margin-top: 2rem; }
.testimonial-slider::before, .testimonial-slider::after { content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.testimonial-slider::before { left: 0; background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%); }
.testimonial-slider::after { right: 0; background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%); }
.testimonial-track { display: flex; width: max-content; animation: scroll-testimonials 55s linear infinite; }
.testimonial-slider:hover .testimonial-track, .testimonial-slider:active .testimonial-track { animation-play-state: paused; }
.track-inner { display: flex; gap: 2rem; padding-right: 2rem; align-items: stretch; }
.slider-item { width: 380px; flex-shrink: 0; }
.video-wrapper { border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); background: #000; display: block; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; aspect-ratio: 16/9; }
.video-wrapper:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.video-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s ease; }
.video-wrapper:hover img { opacity: 0.85; }
.play-button-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.3s ease, transform 0.3s ease; }
.video-wrapper:hover .play-button-overlay { background: var(--accent); transform: translate(-50%, -50%) scale(1.05); }
.quote-card { background: var(--bg-section); border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 10; user-select: none; -webkit-user-select: none; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
.quote-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.quote-icon { font-family: Georgia, serif; font-size: 4.5rem; color: #d2d2d7; line-height: 0.6; margin-bottom: 1.5rem; display: block; }
.quote-card p { font-size: 1.15rem; color: var(--text-main); margin-bottom: 2.5rem; font-weight: 400; line-height: 1.5; letter-spacing: -0.01em; }
.author-block { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: #e5e5ea; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 0.95rem; color: var(--text-main); }
.author-role { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
@keyframes scroll-testimonials { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .slider-item { width: 300px; } }

/* =========================================
   FAQ ACCORDION
   ========================================= */
#faq { padding: 8rem 10%; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e5ea; }
.faq-item:last-child { border-bottom: none; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 2rem 0; background: none; border: none; font-size: 1.25rem; font-weight: 600; color: var(--text-main); cursor: pointer; text-align: left; font-family: inherit; transition: color 0.2s ease; }
.faq-btn:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content p { padding-bottom: 2rem; margin: 0; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   CONTACT BENTO
   ========================================= */
#contact { background-color: #0a0a0a; padding: 80px 20px; }
.services-bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; min-height: 360px; }
.bento-card { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); background-color: #1a1a1a; }
.card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; z-index: 0; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0,0,0,0.5) 100%); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); mask-image: linear-gradient(to bottom, transparent 40%, black 75%); -webkit-mask-image: linear-gradient(to bottom, transparent 40%, black 75%); pointer-events: none; z-index: 2; }
.card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; box-sizing: border-box; z-index: 3; }
.card-content.no-image { justify-content: center; align-items: center; background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%); }
.card-header { text-align: left; color: #ffffff; margin-bottom: 2em; }
.card-content.no-image .card-header, .box-contact .card-header { text-align: center; }
.card-title { margin: 0; font-size: 2.2rem; font-weight: 500; letter-spacing: -0.03em; text-shadow: 0 2px 10px rgba(0,0,0,0.15); line-height: 1.1; }
.card-title.small { font-size: 1.5rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.card-footer.left-btn { justify-content: flex-start; }
.card-content.no-image .card-footer { justify-content: center; }
.profile-info { color: #ffffff; display: flex; flex-direction: column; gap: 2px; }
.info-primary { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; }
.info-secondary { font-size: 0.85rem; opacity: 0.75; font-weight: 400; line-height: 1.4; }
.btn-contact { display: inline-flex; align-items: center; gap: 6px; background-color: #ffffff; color: #000000; border: none; padding: 14px 22px; border-radius: 18px; font-size: 0.95rem; font-weight: 600; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.12); transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; font-family: inherit; }
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.16); }
.mobile-name { display: none; }
@media (max-width: 600px) {
    .services-bento-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; min-height: 0; }
    .bento-card .card-content { flex-direction: row !important; justify-content: space-between !important; align-items: flex-end !important; padding: 20px 24px !important; }
    .bento-card .card-header { margin-bottom: 0 !important; flex: 1; padding-right: 16px; text-align: left !important; }
    .bento-card .card-title { font-size: 1.15rem !important; }
    .box-contact .card-header { display: none !important; }
    .box-contact .card-footer { width: 100% !important; justify-content: space-between !important; }
    .mobile-name { display: inline !important; }
    .box-contact .info-primary { font-size: 1.15rem !important; }
    .box-contact .info-secondary { display: none !important; }
}

/* =========================================
   SITE FOOTER
   ========================================= */
.site-footer { background-color: #0a0a0a; padding: 24px 5% 32px; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer p { color: #86868b; font-size: 13px; letter-spacing: -0.01em; }

/* =========================================
   STANDARD PAGE / SINGLE POST CONTENT
   ========================================= */
.page-content-wrap { max-width: 760px; margin: 0 auto; padding: 6rem 5%; }
.page-content-wrap h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.page-content-wrap .entry-content { font-size: 1.05rem; line-height: 1.75; color: #333; }
.page-content-wrap .entry-content h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.page-content-wrap .entry-content p { margin-bottom: 1.2rem; }
.page-content-wrap .entry-content img { border-radius: 16px; margin: 1.5rem 0; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .v-section { padding: 5rem 5%; }
    #services, #how-it-works, #challenges, #faq { padding: 5rem 5%; }
    .logo-track img { margin: 0 1.5rem; height: 28px; }
}
