/* =============================================
   XYALGO TECH — GLOBAL STYLES
   ============================================= */

:root {
  --accent: #E8500A;
  --accent-hover: #c94308;
  --dark: #111827;
  --dark-mid: #1f2937;
  --text: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --light-bg: #f9fafb;
}

* { box-sizing: border-box; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---- BRAND ---- */
.brand-x { color: var(--accent); }

.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem !important;
  letter-spacing: 0.02em;
}

/* ---- NAVBAR ---- */
.navbar.bg-dark { background-color: var(--dark) !important; }

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85) !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff !important; }

.dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
}
.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  color: var(--text);
}
.dropdown-item:hover { background: #f3f4f6; color: var(--accent); }

/* ---- BUTTONS ---- */
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: white;
  padding: 40px 0 25px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,80,10,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.0rem);
  font-weight: 700;
  line-height: 1.g05;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  /* max-width: 560px; */
  margin-bottom: 2.5rem;
  line-height: 1.75;
  text-align: center;
}

.min-vh-75 { min-height: 70vh; }

/* ---- SECTIONS ---- */
.section-pad { padding: 90px 0; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.section-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- STAT CARDS ---- */
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  line-height: 1.4;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.service-card p { color: var(--text-light); margin-bottom: 1.25rem; }
.card-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.card-link:hover { text-decoration: underline; color: var(--accent-hover); }

/* ---- INDUSTRY CARD ---- */
.industry-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2.5rem;
}
.industry-card h4 { color: #fff; font-size: 1.4rem; margin-bottom: 0.75rem; }
.industry-card p { color: rgba(255,255,255,0.7); font-size: 0.97rem; line-height: 1.7; }

.text-accent { color: var(--accent) !important; }

/* ---- WHY CARDS ---- */
.why-card {
  padding: 2rem;
  border-left: 3px solid var(--accent);
  background: var(--light-bg);
  border-radius: 0 8px 8px 0;
  height: 100%;
}
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-card h5 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.93rem; color: var(--text-light); margin: 0; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--accent);
  padding: 80px 0;
  color: white;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-banner p { font-size: 1.1rem; opacity: 0.9; }
.cta-banner .btn-accent {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.cta-banner .btn-accent:hover {
  background: #f0f0f0;
  color: var(--accent-hover);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,80,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p.lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 580px;
}

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 70px 0; }

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.content-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.content-card h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.2rem; }
.content-card p { color: var(--text-light); margin: 0; font-size: 0.97rem; }

/* ---- LIST CHECKS ---- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---- ABOUT PAGE ---- */
.about-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.approach-item:last-child { border-bottom: none; }
.approach-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  min-width: 60px;
}
.approach-text h5 { color: var(--dark); font-size: 1.15rem; margin-bottom: 0.4rem; }
.approach-text p { color: var(--text-light); margin: 0; font-size: 0.97rem; }

/* ---- CONTACT FORM ---- */
.contact-form .form-control, .contact-form .form-select {
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  font-size: 0.97rem;
}
.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.12);
}
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.4rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-info-text h6 { color: var(--dark); font-size: 0.9rem; margin-bottom: 0.2rem; font-family: 'Barlow', sans-serif; font-weight: 700; }
.contact-info-text p, .contact-info-text a { color: var(--text-light); font-size: 0.95rem; text-decoration: none; }
.contact-info-text a:hover { color: var(--accent); }

/* ---- FOOTER ---- */
.footer { background: var(--dark) !important; }
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ---- BREADCRUMB ---- */
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ---- SIDEBAR CTA ---- */
.sidebar-cta {
  background: var(--dark);
  color: white;
  border-radius: 10px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.sidebar-cta h5 { color: #fff; margin-bottom: 0.75rem; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.93rem; margin-bottom: 1.25rem; }

.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-nav li:last-child a { border-bottom: none; }
.sidebar-nav li a:hover { color: var(--accent); }
.sidebar-nav li a.active { color: var(--accent); font-weight: 600; }

/* ---- NAVBAR LOGO IMAGE ---- */
.navbar-logo {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.navbar-logo-fallback {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

/* ---- PARTNER LOGO STRIP ---- */
.partner-strip {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 0;
}
.partner-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.partner-logo-item {
  padding: 8px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9ca3af;
  border-right: 1px solid #e5e7eb;
  transition: color 0.2s;
  white-space: nowrap;
}
.partner-logo-item:last-child { border-right: none; }
.partner-logo-item:hover { color: var(--accent); }

/* When real logos are added, use these rules:
.partner-logo-item img {
  height: 28px;
  width: auto;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.2s;
}
.partner-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
} */

/* ---- METRICS BAR ---- */
.metrics-bar {
  background: var(--accent);
  padding: 28px 0;
}
.metric-item {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.metric-item:last-child { border-right: none; }
.metric-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: background 0.2s;
}
.problem-card:hover { background: rgba(255,255,255,0.1); }
.problem-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ---- PROCESS STEPS ---- */
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.process-step:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h5 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- FOUNDER SECTION ---- */
.founder-section {
  background: var(--light-bg);
}
.founder-card {
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  position: relative;
}
.founder-quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 1rem;
}
.founder-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}
.founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.founder-title {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---- SOLUTION CARDS ---- */
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.solution-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.solution-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--dark); }
.solution-card p { color: var(--text-light); margin-bottom: 1.25rem; }

/* ---- PLATFORM SECTION ---- */
.platform-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 90px 0;
}
.platform-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: background 0.2s, border-color 0.2s;
}
.platform-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: var(--accent);
}
.platform-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.platform-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 1rem; }
.platform-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.platform-link:hover { color: #ff6b2b; }

/* ---- INDUSTRY FEATURE CARD ---- */
.industry-feature-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 4px solid var(--accent);
}
.industry-feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-feature-card h4 { color: var(--dark); margin-bottom: 0.75rem; }
.industry-feature-card p { color: var(--text-light); }

/* ---- PLATFORM PILLS ---- */
.platform-pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
}

/* ---- SIDEBAR NAV BOX ---- */
.sidebar-nav-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.sidebar-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ---- MEGA MENU ---- */
.mega-menu {
  min-width: 420px;
}
.mega-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0 1rem;
  margin-bottom: 0.25rem;
}
.mega-menu .dropdown-item {
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 4px;
}
.mega-menu .dropdown-item:hover {
  background: rgba(0,0,0,0.05);
  color: var(--accent);
}

/* ---- PLATFORM GROUP LABEL (homepage) ---- */
.platform-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  padding-left: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}

/* ---- FOOTER SUB LABEL ---- */
.footer-sub-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.3rem;
}

/* ---- TECHNOLOGY PAGE ---- */
.tech-group-header {
  max-width: 680px;
  margin-bottom: 0.5rem;
}
.tech-group-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(255,107,47,0.1);
  border: 1px solid rgba(255,107,47,0.25);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 0.75rem;
}
.tech-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.tech-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.tech-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tech-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}
.tech-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(255,107,47,0.08);
  border: 1px solid rgba(255,107,47,0.2);
  border-radius: 4px;
  padding: 3px 8px;
}
.tech-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.tech-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tech-capabilities span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
}

/* Partner strip links */
a.partner-logo-item {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a.partner-logo-item:hover {
  color: var(--accent);
}

/* ---- AI SOLUTION ---- */
.solution-card-ai {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff 80%, rgba(255,107,47,0.04) 100%);
}
.solution-card-ai .solution-icon { color: var(--accent); }

.ai-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.ai-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-card h4 { margin-bottom: 0.5rem; color: var(--dark); }
.ai-card p  { margin: 0; color: var(--text-light); }

.approach-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
}
.approach-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.approach-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 0.4rem; }
.approach-card p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }
