/* ===== Genesis Framework Overrides ===== */
.site-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); padding: 0 !important; }
.site-header .wrap { max-width: none; padding: 0; }
.site-footer { padding: 0 !important; }
.site-footer .wrap { max-width: none; padding: 0; }
.site-inner { padding: 0 !important; max-width: none !important; }
.site-inner .wrap { max-width: none; padding: 0; }
.content-sidebar-wrap { max-width: none !important; }
.content { width: 100% !important; max-width: none !important; padding: 0 !important; float: none !important; }
.entry { padding: 0 !important; margin: 0 !important; border: none !important; }
.entry-content { padding: 0 !important; }
.genesis-skip-link { display: none; }
.entry-header { display: none; }

/* ===== CSS Variables ===== */
:root {
  --brand-green: #22c55e;
  --brand-green-dark: #16a34a;
  --brand-green-light: #4ade80;
  --brand-charcoal: #1a1a2e;
  --brand-grey: #6b7280;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-family);
  color: var(--brand-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 72px;
}
::selection { background: rgba(34,197,94,0.2); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
.bi-header {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: 32px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 0.5rem; transition: all 0.2s; color: var(--brand-charcoal);
}
.main-nav a:hover, .main-nav a.active { color: var(--brand-green); background: rgba(34,197,94,0.05); }
.nav-cta {
  margin-left: 1rem; padding: 0.625rem 1.25rem;
  background: var(--brand-green); color: #fff !important; font-weight: 600;
  border-radius: 0.5rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-green-dark) !important; color: #fff !important; }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--brand-charcoal); }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-top: 1px solid #f3f4f6; padding: 1rem;
  flex-direction: column; gap: 0.25rem; z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 0.5rem; color: var(--brand-charcoal);
}
.mobile-nav a:hover { background: #f9fafb; }
.mobile-nav .nav-cta {
  margin: 0.5rem 0 0; text-align: center; display: block;
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }

.bg-white { background: #fff; }
.bg-gray { background: #f9fafb; }
.bg-charcoal { background: var(--brand-charcoal); }
.text-white { color: #fff; }

/* ===== Section Headers ===== */
.section-label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--brand-green); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--brand-charcoal); line-height: 1.2; margin-bottom: 1rem;
}
.section-title .green { color: var(--brand-green); }
.section-desc { color: var(--brand-grey); max-width: 42rem; margin: 0 auto; line-height: 1.7; }
.text-center { text-align: center; }

/* ===== Page Hero (dark) ===== */
.page-hero { background: var(--brand-charcoal); padding: 5rem 0 5rem; }
.page-hero .container { max-width: 768px; }
.page-hero .section-title { color: #fff; font-size: clamp(2.25rem, 5vw, 3rem); }
.page-hero .section-desc { color: #9ca3af; font-size: 1.125rem; }

/* ===== Grid Utilities ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1023px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

/* ===== Cards ===== */
.card {
  background: #fff; border-radius: 0.75rem; padding: 1.5rem;
  border: 1px solid #f3f4f6; transition: all 0.3s;
}
.card:hover { border-color: rgba(34,197,94,0.2); box-shadow: 0 10px 30px rgba(34,197,94,0.05); }
.card-gray { background: #f9fafb; border-color: transparent; }
.card-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: rgba(34,197,94,0.1); color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.25rem;
}
.card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--brand-grey); line-height: 1.7; }
.card .tag {
  display: inline-block; margin-top: 1rem; padding: 0.25rem 0.75rem;
  background: rgba(26,26,46,0.05); font-size: 0.75rem; font-weight: 500;
  border-radius: 9999px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-weight: 600; font-size: 0.9375rem;
  border-radius: 0.5rem; transition: all 0.2s; border: none; cursor: pointer;
  font-family: var(--font-family);
}
.btn-green { background: var(--brand-green); color: #fff; }
.btn-green:hover { background: var(--brand-green-dark); }
.btn-outline {
  background: transparent; border: 1px solid rgba(26,26,46,0.2);
  color: var(--brand-charcoal);
}
.btn-outline:hover { background: var(--brand-charcoal); color: #fff; }
.btn-white-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }
.btn svg, .btn img { width: 18px; height: 18px; }

/* ===== Hero Section ===== */
.hero {
  position: relative; min-height: 600px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,0.95), rgba(26,26,46,0.8), rgba(26,26,46,0.4));
}
.hero-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--brand-charcoal), transparent, rgba(26,26,46,0.3));
}
.hero-content { position: relative; z-index: 2; max-width: 672px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2); border-radius: 9999px;
  margin-bottom: 2rem; backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--brand-green); border-radius: 50%; }
.hero-badge span { color: var(--brand-green); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 .green { color: var(--brand-green); }
.hero p { font-size: 1.125rem; color: #d1d5db; line-height: 1.7; margin-bottom: 2.5rem; max-width: 640px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--brand-charcoal); padding: 4rem 0; position: relative; overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: #9ca3af; font-weight: 500; }
@media (max-width: 639px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Image Cards (Human-Centric) ===== */
.image-card {
  position: relative; border-radius: 1rem; overflow: hidden;
}
.image-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.5s; }
.image-card:hover img { transform: scale(1.05); }
.image-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), rgba(26,26,46,0.2), transparent);
}
.image-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: #fff;
}
.image-card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: rgba(34,197,94,0.9); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.75rem; font-size: 1.125rem;
}
.image-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.image-card p { font-size: 0.875rem; color: #e5e7eb; }

/* Dark info card */
.info-card-dark {
  background: var(--brand-charcoal); border-radius: 1rem; padding: 2rem;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.info-card-dark h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.info-card-dark p { color: #d1d5db; line-height: 1.7; margin-bottom: 1.5rem; }
.info-card-dark ul { list-style: none; }
.info-card-dark li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: #d1d5db; margin-bottom: 0.75rem;
}
.info-card-dark li::before {
  content: ''; width: 6px; height: 6px; background: var(--brand-green);
  border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0;
}

/* ===== Technology Section ===== */
.tech-section { background: var(--brand-charcoal); position: relative; overflow: hidden; }
.tech-feature {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 1.5rem;
}
.tech-feature h4 { color: #fff; font-weight: 700; margin-bottom: 0.25rem; }
.tech-feature p { font-size: 0.875rem; color: #9ca3af; }
.tech-banner {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.3); border-radius: 1rem;
  padding: 2rem; text-align: center; margin-top: 4rem;
}
.tech-banner p:first-child { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.tech-banner p:last-child { color: #d1d5db; }

/* ===== CTA Box ===== */
.cta-box {
  background: var(--brand-charcoal); border-radius: 1rem;
  padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-box p { color: #9ca3af; max-width: 32rem; margin: 0 auto 2rem; }

/* ===== Two-col layout ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 1023px) { .two-col { grid-template-columns: 1fr; } }

/* ===== About: Milestones ===== */
.milestones {
  background: #f9fafb; border-radius: 1rem; padding: 2rem 2.5rem;
}
.milestone { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.milestone:last-child { margin-bottom: 0; }
.milestone-year { font-size: 0.875rem; font-weight: 800; color: var(--brand-green); width: 3.5rem; flex-shrink: 0; }
.milestone-text { font-size: 0.875rem; color: var(--brand-grey); }

/* ===== Team ===== */
.team-card {
  background: #f9fafb; border-radius: 0.75rem; padding: 1.5rem;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.team-photo {
  width: 9rem; aspect-ratio: 3/4; border-radius: 0.5rem; overflow: hidden;
  margin-bottom: 1rem; background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.125rem; font-weight: 700; }
.team-card .role { font-size: 0.875rem; color: var(--brand-green); font-weight: 500; margin-bottom: 0.75rem; }
.team-card .bio { font-size: 0.875rem; color: var(--brand-grey); line-height: 1.6; }

/* ===== Group Companies ===== */
.company-card .location {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--brand-grey); margin-bottom: 1rem;
}
.company-card .location svg { color: var(--brand-green); }
.company-card .reg { font-size: 0.75rem; color: var(--brand-grey); margin-bottom: 0.75rem; }

/* ===== Services Page ===== */
.service-card-lg {
  background: #f9fafb; border-radius: 0.75rem; padding: 2rem;
  border: 1px solid transparent; transition: all 0.3s; height: 100%;
}
.service-card-lg:hover {
  background: #fff; border-color: rgba(34,197,94,0.1);
  box-shadow: 0 10px 30px rgba(34,197,94,0.05);
}
.service-card-lg .card-icon { width: 3.5rem; height: 3.5rem; font-size: 1.5rem; }
.service-card-lg:hover .card-icon { background: var(--brand-green); color: #fff; }

/* Agency services */
.agency-card {
  background: #fff; border-radius: 0.75rem; padding: 1.25rem;
  border: 1px solid #f3f4f6; height: 100%;
}
.agency-card .card-icon { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
.agency-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.agency-card p { font-size: 0.75rem; }

/* Process steps */
.process-step { background: #f9fafb; border-radius: 0.75rem; padding: 1.5rem; height: 100%; }
.process-step .step-num { font-size: 1.875rem; font-weight: 800; color: rgba(34,197,94,0.2); }
.process-step h3 { font-size: 0.875rem; font-weight: 700; margin: 0.5rem 0; }
.process-step p { font-size: 0.75rem; color: var(--brand-grey); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.faq-filter {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 9999px; border: none; cursor: pointer; font-family: var(--font-family);
  background: #f3f4f6; color: var(--brand-grey); transition: all 0.2s;
}
.faq-filter.active { background: var(--brand-green); color: #fff; }
.faq-list { border: 1px solid #e5e7eb; border-radius: 0.75rem; overflow: hidden; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem; text-align: left;
  background: none; border: none; cursor: pointer; font-family: var(--font-family);
}
.faq-question h3 { font-size: 1rem; font-weight: 500; color: var(--brand-charcoal); transition: color 0.2s; }
.faq-question:hover h3 { color: var(--brand-green); }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s; color: #9ca3af; font-size: 1.25rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--brand-grey); line-height: 1.7; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; }
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-sidebar .info-box {
  background: #f9fafb; border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1.5rem;
}
.contact-sidebar .info-box h3 {
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.contact-sidebar .info-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--brand-grey); margin-bottom: 1rem;
}
.contact-sidebar .info-item:last-child { margin-bottom: 0; }
.contact-sidebar .info-item svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.contact-sidebar .info-item strong { color: var(--brand-charcoal); display: block; }
.contact-sidebar .info-item .reg { font-size: 0.75rem; color: var(--brand-grey); }
.contact-sidebar .dark-box {
  background: var(--brand-charcoal); border-radius: 0.75rem; padding: 1.5rem; text-align: center;
}
.contact-sidebar .dark-box p { font-size: 0.875rem; color: #d1d5db; margin-bottom: 0.5rem; }
.contact-sidebar .dark-box a { color: var(--brand-green); font-weight: 700; }

/* ===== Formidable Forms Overrides ===== */
.frm_forms .frm_form_field input[type="text"],
.frm_forms .frm_form_field input[type="email"],
.frm_forms .frm_form_field input[type="tel"],
.frm_forms .frm_form_field textarea,
.frm_forms .frm_form_field select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb !important; border-radius: 0.5rem !important;
  font-size: 0.875rem !important; font-family: var(--font-family) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff !important;
}
.frm_forms .frm_form_field input:focus,
.frm_forms .frm_form_field textarea:focus,
.frm_forms .frm_form_field select:focus {
  outline: none !important;
  border-color: var(--brand-green) !important;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15) !important;
}
.frm_forms .frm_form_field label,
.frm_forms .frm_form_field .frm_primary_label {
  font-size: 0.875rem !important; font-weight: 500 !important;
  color: var(--brand-charcoal) !important; margin-bottom: 0.375rem !important;
  font-family: var(--font-family) !important;
}
.frm_forms .frm_submit button,
.frm_forms .frm_submit input[type="submit"] {
  display: inline-flex !important; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem !important; background: var(--brand-green) !important;
  color: #fff !important; font-weight: 600 !important; font-size: 0.9375rem !important;
  border-radius: 0.5rem !important; border: none !important; cursor: pointer;
  font-family: var(--font-family) !important; transition: background 0.2s;
}
.frm_forms .frm_submit button:hover,
.frm_forms .frm_submit input[type="submit"]:hover {
  background: var(--brand-green-dark) !important;
}
.frm_forms .frm_error { color: #dc2626 !important; font-size: 0.8125rem !important; }
.frm_forms .frm_message {
  background: rgba(34,197,94,0.05) !important; border: 1px solid rgba(34,197,94,0.2) !important;
  border-radius: 0.75rem !important; padding: 2rem !important; text-align: center;
  color: var(--brand-charcoal) !important;
}
.frm_forms .frm_form_field .frm_opt_container { margin: 0 !important; }

/* ===== Footer ===== */
.site-footer { background: var(--brand-charcoal); color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.875rem; color: #9ca3af; line-height: 1.7; margin-top: 1rem; }
.footer-heading { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #d1d5db; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: #9ca3af; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-green); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: #9ca3af; margin-bottom: 0.75rem;
}
.footer-contact svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #9ca3af; }
.footer-contact a:hover { color: var(--brand-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0;
  max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: #6b7280; }
.footer-bottom a:hover { color: var(--brand-green); }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Case Studies ===== */
.case-card {
  background: #fff; border-radius: 0.75rem; border: 1px solid #f3f4f6;
  padding: 1.5rem; transition: all 0.3s; display: flex; flex-direction: column; height: 100%;
}
.case-card:hover { border-color: rgba(34,197,94,0.2); box-shadow: 0 10px 30px rgba(34,197,94,0.05); }
.case-tags { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.case-tag {
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; border-radius: 9999px;
}
.case-tag-green { background: rgba(34,197,94,0.1); color: var(--brand-green); }
.case-tag-gray { background: #f3f4f6; color: var(--brand-grey); }
.case-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.2s; }
.case-card:hover h3 { color: var(--brand-green); }
.case-card .overview { font-size: 0.875rem; color: var(--brand-grey); line-height: 1.7; flex: 1; }
.case-card .read-more {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #f9fafb;
  font-size: 0.875rem; font-weight: 500; color: var(--brand-green);
  display: flex; align-items: center; gap: 0.25rem;
}

/* ===== Case Study Detail ===== */
.case-detail-header { margin-bottom: 2rem; }
.case-detail-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.case-detail-section { margin-bottom: 2.5rem; }
.case-detail-section h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--brand-charcoal); }
.case-detail-section p { color: var(--brand-grey); line-height: 1.8; }
.results-list { list-style: none; padding: 0; }
.results-list li {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6; font-size: 0.9375rem; color: var(--brand-grey); line-height: 1.6;
}
.results-list li:last-child { border-bottom: none; }
.results-list li::before {
  content: ''; width: 8px; height: 8px; background: var(--brand-green);
  border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0;
}

/* ===== Responsive fine-tuning ===== */
@media (min-width: 1024px) {
  .hero { min-height: 700px; }
  .section-lg { padding: 7rem 0; }
}
@media (max-width: 639px) {
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
  .page-hero { padding: 3rem 0; }
  .contact-grid { gap: 2rem; }
}

/* SVG icons inline */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-green { color: var(--brand-green); }