/* ============================================================
   Contractor's Choice AI — Main Stylesheet
   Design: Premium light theme, charcoal + red accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #f5e6e9;
  --charcoal: #1a1a1a;
  --charcoal-mid: #2d2d2d;
  --gray-dark: #4a4a4a;
  --gray-mid: #6b6b6b;
  --gray-light: #9a9a9a;
  --gray-border: #e5e5e5;
  --gray-bg: #f8f8f8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --container: 1200px;
  --transition: 0.25s ease;
}

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; font-weight: 800; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--gray-dark); line-height: 1.75; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---- Navbar ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.3s ease, box-shadow 0.3s ease; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--gray-border); }
.navbar.scrolled { background: rgba(255,255,255,0.99); box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-logo img { height: 72px; width: auto; max-width: 240px; object-fit: contain; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); border-radius: var(--radius-sm); transition: all var(--transition); position: relative; }
.nav-link:hover { color: var(--red); background: var(--red-light); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-md); padding: 8px; min-width: 200px; box-shadow: var(--shadow-lg); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 14px; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-dropdown-menu a:hover { background: var(--red-light); color: var(--red); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-phone { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); display: flex; align-items: center; gap: 6px; }
.navbar-phone:hover { color: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-border); padding: 20px; box-shadow: var(--shadow-lg); z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 16px; font-weight: 600; color: var(--charcoal); border-radius: var(--radius-sm); border-bottom: 1px solid var(--gray-border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red); background: var(--red-light); }
@media (max-width: 1024px) { .navbar-nav, .navbar-phone { display: none; } .hamburger { display: flex; } }

/* ---- Hero ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #fff5f6 100%); z-index: 0; }
.hero-bg-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.12; z-index: 1; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-border); border-radius: 100px; padding: 8px 16px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero-badge span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; }
.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--red); }
.hero-desc { font-size: 1.1rem; color: var(--gray-dark); margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trade-line { font-size: 0.9rem; font-weight: 600; color: var(--gray-mid); margin-bottom: 24px; letter-spacing: 0.01em; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--gray-dark); }
.hero-trust-item svg { color: #22c55e; flex-shrink: 0; }
.hero-visual { position: relative; padding: 20px 20px 20px 0; }
.hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }
.hero-stat-card { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-border); min-width: 130px; }
.hero-stat-card.card-1 { bottom: 40px; left: -10px; }
.hero-stat-card.card-2 { top: 40px; right: 0px; }
.hero-stat-number { font-size: 1.5rem; font-weight: 800; color: var(--charcoal); font-family: 'Manrope', sans-serif; white-space: nowrap; }
.hero-stat-label { font-size: 0.72rem; color: var(--gray-mid); font-weight: 600; white-space: nowrap; }
@media (max-width: 900px) { .hero-content { grid-template-columns: 1fr; } .hero-visual { display: none; } }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--charcoal); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--white); font-family: 'Manrope', sans-serif; line-height: 1; }
.stat-number span { color: var(--red); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); } }

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--charcoal); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-gray { background: var(--gray-bg); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; margin-top: 16px; }

/* ---- Feature Cards ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 36px 32px; transition: all var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--red); }
.feature-icon { width: 56px; height: 56px; background: var(--red-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { color: var(--red); }
.feature-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.feature-card p { font-size: 0.9rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-border); border-radius: var(--radius-lg); padding: 40px 36px; position: relative; transition: all var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--red); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-name { font-size: 1rem; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--charcoal); font-family: 'Manrope', sans-serif; line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 24px; }
.pricing-features { margin: 24px 0; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-dark); padding: 8px 0; border-bottom: 1px solid var(--gray-border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.pricing-tier-callout { font-size: 0.8rem; font-weight: 600; color: var(--gray-mid); text-align: center; margin-top: 12px; font-style: italic; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 32px; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { color: #f59e0b; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-dark); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--red); font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-mid); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- CTA Section ---- */
.cta-section { background: var(--charcoal); padding: 100px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Industries Grid ---- */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.industry-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: all var(--transition); cursor: pointer; }
.industry-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.industry-icon { font-size: 2.4rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 0.95rem; color: var(--charcoal); }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Process Steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--gray-border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number { width: 56px; height: 56px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px; font-family: 'Manrope', sans-serif; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }
@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } .process-steps::before { display: none; } }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 700; color: var(--charcoal); text-align: left; gap: 16px; font-family: 'Manrope', sans-serif; }
.faq-question:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--red-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--gray-dark); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); transition: border-color var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ---- Page Hero (inner pages) ---- */
.page-hero { background: var(--charcoal); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.page-hero .section-label { background: rgba(200,16,46,0.2); color: #ff6b80; }

/* ---- Blog Cards ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); background: var(--red-light); padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; margin-bottom: 16px; }
.blog-meta { font-size: 0.8rem; color: var(--gray-light); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer { background: #111111; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 64px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-contact-item:hover { color: var(--white); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---- Utilities ---- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Animations ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
/* fade-up disabled — cards always visible, no JS dependency */
.fade-up { opacity: 1; transform: none; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ---- Notification Bar ---- */
/* notification-bar removed */

/* ---- Trust Badges ---- */
.trust-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 40px 0; border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 700; color: var(--gray-dark); }
.trust-badge svg { color: var(--red); }

/* ---- ROI Calculator ---- */
.roi-box { background: var(--charcoal); border-radius: var(--radius-xl); padding: 60px; color: var(--white); }
.roi-box h3 { color: var(--white); margin-bottom: 8px; }
.roi-result { font-size: 3.5rem; font-weight: 800; color: var(--red); font-family: 'Manrope', sans-serif; }

/* ---- Case Study Cards ---- */
.case-study-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); overflow: hidden; }
.case-study-header { background: var(--charcoal); padding: 32px; }
.case-study-header h3 { color: var(--white); }
.case-study-header p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 6px; }
.case-study-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid var(--gray-border); }
.metric-box { padding: 24px; text-align: center; border-right: 1px solid var(--gray-border); }
.metric-box:last-child { border-right: none; }
.metric-value { font-size: 2rem; font-weight: 800; color: var(--red); font-family: 'Manrope', sans-serif; }
.metric-label { font-size: 0.75rem; color: var(--gray-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.case-study-body { padding: 32px; }

/* ---- Hero Dashboard Mockup ---- */
.hero-mockup { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--gray-border); overflow: hidden; width: 100%; }
.mockup-header { background: #f4f4f4; padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--gray-border); }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e0; }
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title { font-size: 0.78rem; font-weight: 700; color: var(--gray-mid); letter-spacing: 0.04em; }
.mockup-body { padding: 20px; }
.mockup-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.mockup-metric { background: var(--gray-bg); border-radius: var(--radius-sm); padding: 14px 12px; text-align: center; }
.mockup-metric-val { font-size: 1.4rem; font-weight: 800; color: var(--charcoal); font-family: 'Manrope', sans-serif; line-height: 1; }
.mockup-metric-lbl { font-size: 0.7rem; color: var(--gray-mid); font-weight: 600; margin: 4px 0 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.mockup-metric-change { font-size: 0.7rem; font-weight: 700; color: #22c55e; }
.mockup-chart { background: var(--gray-bg); border-radius: var(--radius-sm); padding: 14px 12px; margin-bottom: 16px; }
.mockup-chart-label { font-size: 0.72rem; font-weight: 700; color: var(--gray-mid); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.mockup-bars { display: flex; align-items: flex-end; gap: 5px; height: 80px; }
.mockup-bar { flex: 1; background: #e8e8e8; border-radius: 3px 3px 0 0; transition: background 0.3s; }
.mockup-bar.active { background: var(--red); }
.mockup-calls { }
.mockup-calls-label { font-size: 0.72rem; font-weight: 700; color: var(--gray-mid); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.mockup-call-item { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--gray-border); font-size: 0.8rem; color: var(--charcoal); font-weight: 600; }
.mockup-call-item:last-child { border-bottom: none; }
.mockup-call-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.mockup-call-time { margin-left: auto; font-size: 0.72rem; color: var(--gray-light); font-weight: 400; }
