@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --teal: #00B4D8;
  --teal-dark: #0096B4;
  --teal-light: #E0F7FD;
  --teal-mid: #CCEEF8;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --slate: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-teal: #F0FBFF;
  --text: #1E293B;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-teal: 0 8px 32px rgba(0,180,216,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; line-height: 1.2; font-weight: 700; color: var(--navy); }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--navy); text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate);
  padding: 6px 12px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--bg-alt); color: var(--navy); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 220px; z-index: 200;
}
.nav-links .dropdown.open .dropdown-menu { display: block; }
.nav-links .dropdown-menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: var(--slate); white-space: nowrap;
}
.nav-links .dropdown-menu a:hover { background: var(--bg-alt); color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-ghost { font-size: 14px; font-weight: 500; color: var(--slate); padding: 8px 16px; border-radius: 8px; transition: background 0.2s; }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-primary {
  background: var(--teal); color: white; font-size: 14px; font-weight: 600;
  padding: 9px 20px; border-radius: 9px; border: none; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-teal);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 8px 24px rgba(0,180,216,0.28); }
.btn-primary-lg {
  background: var(--teal); color: white; font-size: 16px; font-weight: 600;
  padding: 14px 32px; border-radius: 12px; border: none; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-teal); font-family: 'DM Sans', sans-serif; display: inline-block;
}
.btn-primary-lg:hover { background: var(--teal-dark); box-shadow: 0 12px 32px rgba(0,180,216,0.30); transform: translateY(-1px); }
.btn-outline-lg {
  background: transparent; color: var(--navy); font-size: 16px; font-weight: 600;
  padding: 13px 32px; border-radius: 12px; border: 2px solid var(--border); cursor: pointer;
  transition: border-color 0.2s, background 0.2s; font-family: 'DM Sans', sans-serif; display: inline-block;
}
.btn-outline-lg:hover { border-color: var(--teal); background: var(--teal-light); }

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--bg-teal) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); border: 1px solid rgba(0,180,216,0.25);
  color: var(--teal-dark); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
.hero h1 { font-size: clamp(40px, 5vw, 62px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 19px; color: var(--muted); line-height: 1.65; max-width: 560px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stat-row { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.hero-stat span { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.hero-stat strong .teal { color: var(--teal); font-size: 32px; font-weight: 800; font-family: 'Sora', sans-serif; letter-spacing: -0.03em; }
.hero-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── SECTION HEADERS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-teal { background: var(--bg-teal); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2, .section-navy h3 { color: white; }
.section-navy p, .section-navy .muted { color: rgba(255,255,255,0.65); }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { text-align: center; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.025em; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--muted); line-height: 1.65; }

/* ── CARDS ── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(0,180,216,0.2); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px; filter: hue-rotate(0deg);
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; }

@media (max-width:1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 24px; }
  nav .nav-links { display: none; }
}

/* ── BADGE / PILL ── */
.badge {
  display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: var(--teal-light); color: var(--teal-dark);
}
.badge-navy { background: var(--navy); color: white; }
.badge-green { background: #ECFDF5; color: #059669; }
.badge-orange { background: #FFF7ED; color: #C2410C; }

/* ── STAT BOXES ── */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-box { background: var(--bg); padding: 32px 28px; }
.stat-box strong { display: block; font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; margin-bottom: 6px; }
.stat-box strong .teal { color: var(--teal); font-size: 56px; font-weight: 800; font-family: 'Sora', sans-serif; letter-spacing: -0.04em; }
.stat-box span { font-size: 14px; color: var(--muted); }
@media(max-width:768px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ── FEATURE ROW ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.feature-visual-inner { padding: 24px; width: 100%; }
@media(max-width:768px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; } }

/* ── LOGO STRIP ── */
.logo-strip { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; opacity: 0.55; }
.logo-strip span { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--slate); letter-spacing: -0.02em; }

/* ── AGENT CARD ── */
.agent-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: all 0.25s;
}
.agent-card:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); transform: translateY(-2px); }
.agent-card .priority { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.agent-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.agent-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.agent-card .fn { font-size: 11px; color: var(--border); font-family: monospace; margin-top: 10px; word-break: break-all; }

/* ── INDUSTRY CARD ── */
.industry-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; transition: all 0.25s; cursor: default;
}
.industry-card:hover { border-color: var(--teal); background: var(--teal-light); transform: translateY(-2px); }
.industry-card .icon { font-size: 32px; margin-bottom: 12px; }
.industry-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── COMPLIANCE BADGE ── */
.framework-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.framework-pill {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--slate);
  transition: all 0.2s;
}
.framework-pill:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--teal-light); }

/* ── PRICING ── */
.pricing-card {
  background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; position: relative; transition: all 0.25s;
}
.pricing-card.featured { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.pricing-card .popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-card .price { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; margin: 20px 0 4px; }
.pricing-card .price span { font-size: 20px; font-weight: 400; color: var(--muted); }
.pricing-card .desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pricing-card ul { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card ul li { font-size: 15px; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; }
.pricing-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.testimonial-card blockquote { font-size: 16px; color: var(--slate); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.testimonial-card .author-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-card .author-info span { font-size: 13px; color: var(--muted); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy); padding: 96px 0; text-align: center;
}
.cta-section h2 { font-size: clamp(32px, 4vw, 52px); color: white; letter-spacing: -0.03em; margin-bottom: 20px; }
.cta-section p { font-size: 19px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; line-height: 1.65; }
.btn-white {
  background: white; color: var(--navy); font-size: 16px; font-weight: 700;
  padding: 14px 32px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif; display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.btn-white-outline {
  background: transparent; color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600;
  padding: 13px 32px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif; display: inline-block;
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid); color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: white; margin-bottom: 16px; }
.footer-brand .logo .mark { width: 32px; height: 32px; background: var(--teal); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: 'Sora', sans-serif; color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom .links a:hover { color: white; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-teal) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
}
.page-hero .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--teal); }
.page-hero h1 { font-size: clamp(32px,4vw,52px); letter-spacing: -0.03em; margin-bottom: 16px; }
.page-hero h1 span { color: var(--teal); }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 600px; line-height: 1.65; }

/* ── TAB NAV ── */
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 48px; }
.tab-btn {
  padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--muted);
  border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 600; }
.tab-btn:hover { color: var(--navy); }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; padding: 12px 16px; background: var(--bg-alt); border-bottom: 2px solid var(--border); font-weight: 600; color: var(--slate); font-size: 13px; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.data-table tr:hover td { background: var(--bg-teal); }

/* ── ACCORDION ── */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
.accordion-header { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; transition: background 0.2s; }
.accordion-header:hover { background: var(--bg-alt); }
.accordion-header .icon { color: var(--teal); font-size: 20px; transition: transform 0.2s; }
.accordion-header.open .icon { transform: rotate(45deg); }
.accordion-body { padding: 0 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.7; display: none; }
.accordion-body.open { display: block; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--slate); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── MISC ── */
.tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 6px; }
.divider { width: 48px; height: 3px; background: var(--teal); border-radius: 2px; margin: 20px 0; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--slate); }
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 15px; margin-top: 2px; }
.text-teal { color: var(--teal); }
.text-muted { color: var(--muted); }
.fw-700 { font-weight: 700; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-24 { gap: 24px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── UI MOCKUP ── */
.ui-mockup {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.ui-topbar {
  background: var(--navy); height: 44px; display: flex; align-items: center;
  padding: 0 16px; gap: 8px;
}
.ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-sidebar {
  width: 200px; background: #0F1D33; min-height: 300px; float: left;
  padding: 16px 0;
}
.ui-sidebar-item {
  padding: 9px 16px; font-size: 12px; font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px;
}
.ui-sidebar-item.active { background: rgba(0,180,216,0.15); color: var(--teal); border-left: 2px solid var(--teal); }
.ui-content { margin-left: 200px; padding: 20px; background: #F8FAFC; min-height: 300px; }
.ui-metric { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.ui-metric strong { display: block; font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); }
.ui-metric span { font-size: 12px; color: var(--muted); }

/* ── Site Icons (inline SVG replacing emojis) ────────────────────────────── */
.card-icon svg,
.card-icon > svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: var(--teal, #00B4D8);
  flex-shrink: 0;
}

.site-icon svg {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

/* Feature grid icons */
.stat-grid .card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal, #00B4D8);
}

/* Industry cards */
.industry-card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #00B4D8;
}

/* Check/cross icons in pricing/lists */
svg.check-icon { stroke: #22c55e; }
svg.cross-icon  { stroke: #ef4444; }

/* Inline SVG in text (e.g. feature bullets) */
p svg, li svg, td svg {
  display: inline;
  vertical-align: text-bottom;
  width: 16px;
  height: 16px;
}
