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

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

:root {
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --sky-light: #e0f2fe;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-weight: 800; font-size: 1.25rem; color: var(--slate-900);
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--sky);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--slate-600); font-size: 0.875rem;
  font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--slate-900); background: var(--slate-100); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost {
  text-decoration: none; color: var(--slate-600); font-size: 0.875rem;
  font-weight: 500; padding: 0.5rem 1rem; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.btn-ghost:hover { color: var(--slate-900); background: var(--slate-100); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 600; border-radius: 10px;
  transition: all 0.15s; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--sky); color: #fff;
  padding: 0.625rem 1.25rem; font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(14,165,233,0.3);
}
.btn-primary:hover { background: var(--sky-dark); box-shadow: 0 4px 12px rgba(14,165,233,0.4); transform: translateY(-1px); }
.btn-lg {
  padding: 0.875rem 1.75rem; font-size: 1rem;
}
.btn-xl {
  padding: 1rem 2rem; font-size: 1.0625rem;
}
.btn-outline {
  background: transparent; color: var(--slate-700);
  border: 1.5px solid var(--slate-300); padding: 0.875rem 1.75rem; font-size: 1rem;
}
.btn-outline:hover { border-color: var(--slate-400); background: var(--slate-50); }
.btn-white {
  background: #fff; color: var(--sky-dark);
  padding: 0.875rem 1.75rem; font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--slate-700); margin: 5px 0; border-radius: 2px; transition: all 0.2s; }
.mobile-menu { display: none; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .mobile-menu.open {
    display: flex; flex-direction: column; gap: 0.25rem;
    padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--slate-100);
    background: #fff;
  }
  .mobile-menu a {
    text-decoration: none; color: var(--slate-700); font-weight: 500;
    padding: 0.625rem 0.75rem; border-radius: 8px; font-size: 0.9375rem;
  }
  .mobile-menu a:hover { background: var(--slate-50); }
  .mobile-menu .btn-primary { text-align: center; justify-content: center; margin-top: 0.5rem; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--slate-900) 0%, #0c1a3a 60%, #0a2540 100%);
  color: #fff; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(14,165,233,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem 4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc; font-size: 0.8125rem; font-weight: 600;
  padding: 0.375rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; max-width: 820px; margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--sky); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.1875rem); color: #94a3b8;
  max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3.5rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; color: var(--slate-400);
}
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-stack .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--slate-800); margin-left: -8px;
  background: var(--slate-700); display: flex; align-items: center;
  justify-content: center; font-size: 0.6875rem; font-weight: 700; color: #fff;
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.hero-screenshot {
  width: 100%; max-width: 960px; margin-top: 3rem;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.hero-screenshot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 40px;
  background: var(--slate-800); border-radius: 16px 16px 0 0;
  display: flex; align-items: center; padding: 0 1rem; z-index: 1;
}
.hero-screenshot-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 40px;
  background: var(--slate-800); border-radius: 16px 16px 0 0; z-index: 1;
  display: flex; align-items: center; padding: 0 1rem; gap: 6px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.screenshot-img {
  width: 100%; display: block; margin-top: 40px;
  background: var(--slate-900);
}

/* ── Dashboard Mockup ─────────────────────────────────────────── */
.dashboard-mockup {
  background: var(--slate-900); padding: 1.5rem; border-radius: 0 0 16px 16px;
  min-height: 340px; display: grid; grid-template-columns: 180px 1fr; gap: 1rem;
}
.mockup-sidebar { display: flex; flex-direction: column; gap: 0.375rem; }
.mockup-sidebar-item {
  padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.75rem;
  font-weight: 500; color: var(--slate-400); display: flex; align-items: center; gap: 0.5rem;
}
.mockup-sidebar-item.active { background: rgba(14,165,233,0.15); color: var(--sky); }
.mockup-sidebar-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.mockup-main { display: flex; flex-direction: column; gap: 0.875rem; }
.mockup-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.mockup-kpi {
  background: var(--slate-800); border: 1px solid var(--slate-700);
  border-radius: 12px; padding: 0.875rem;
}
.mockup-kpi-label { font-size: 0.65rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.mockup-kpi-value { font-size: 1.25rem; font-weight: 800; color: #fff; margin-top: 0.25rem; }
.mockup-kpi-value.sky { color: var(--sky); }
.mockup-kpi-value.green { color: #4ade80; }
.mockup-kpi-value.amber { color: #fbbf24; }
.mockup-chart {
  background: var(--slate-800); border: 1px solid var(--slate-700);
  border-radius: 12px; padding: 0.875rem; flex: 1;
}
.mockup-chart-label { font-size: 0.65rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.mockup-bars { display: flex; align-items: flex-end; gap: 0.375rem; height: 90px; }
.mockup-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(14,165,233,0.25); position: relative; }
.mockup-bar.hi { background: var(--sky); }
.mockup-jobs { display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-job {
  background: var(--slate-800); border: 1px solid var(--slate-700);
  border-radius: 10px; padding: 0.625rem 0.875rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.mockup-job-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mockup-job-name { font-size: 0.75rem; font-weight: 600; color: #fff; flex: 1; }
.mockup-job-badge {
  font-size: 0.6rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 100px;
}
.badge-green { background: rgba(74,222,128,0.15); color: #4ade80; }
.badge-sky { background: rgba(14,165,233,0.15); color: var(--sky); }
.badge-amber { background: rgba(251,191,36,0.15); color: #fbbf24; }

@media (max-width: 640px) {
  .dashboard-mockup { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .mockup-kpis { grid-template-columns: repeat(3, 1fr); }
}

/* ── Sections ─────────────────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8125rem; font-weight: 700; color: var(--sky);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15; color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-title span { color: var(--sky); }
.section-sub {
  font-size: 1.0625rem; color: var(--slate-500); max-width: 540px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Logos / trust ────────────────────────────────────────────── */
.logos { padding: 2.5rem 1.5rem; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); background: var(--slate-50); }
.logos-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.logos p { font-size: 0.8125rem; color: var(--slate-400); font-weight: 500; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.logo-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.logo-item {
  font-size: 1rem; font-weight: 700; color: var(--slate-300);
  letter-spacing: -0.01em; white-space: nowrap;
}

/* ── Features grid ────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff; border: 1.5px solid var(--slate-200);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--sky); box-shadow: 0 8px 32px rgba(14,165,233,0.1);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--sky-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.125rem; font-size: 1.375rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

/* ── Split sections ───────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
}
.split-visual {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1.5px solid var(--slate-200);
  background: var(--slate-50);
}
.split-content { display: flex; flex-direction: column; gap: 1rem; }
.split-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.split-content ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--slate-600); line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(14,165,233,0.12); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.15rem;
}

/* ── Steps / How it works ─────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sky); color: #fff; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}
.step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-bg { background: var(--slate-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff; border: 1.5px solid var(--slate-200); border-radius: 16px; padding: 1.75rem;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial blockquote {
  font-size: 0.9375rem; color: var(--slate-700); line-height: 1.7;
  font-style: italic; margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sky); color: #fff; font-weight: 700; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--slate-800); }
.author-title { font-size: 0.75rem; color: var(--slate-400); margin-top: 0.1rem; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; align-items: start; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; } }
.pricing-card {
  border-radius: 20px; padding: 2rem;
  border: 1.5px solid var(--slate-200); background: #fff;
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pricing-card.featured {
  border-color: var(--sky);
  background: linear-gradient(160deg, #f0f9ff 0%, #fff 100%);
  box-shadow: 0 8px 40px rgba(14,165,233,0.15);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sky); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.03em;
}
.pricing-tier { font-size: 0.8125rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: flex-end; gap: 0.25rem; margin: 1rem 0; }
.pricing-amount { font-size: 3rem; font-weight: 900; color: var(--slate-900); line-height: 1; letter-spacing: -0.03em; }
.pricing-period { font-size: 0.875rem; color: var(--slate-400); margin-bottom: 0.4rem; }
.pricing-desc { font-size: 0.875rem; color: var(--slate-500); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-600); }
.pricing-features li .check-icon { width: 18px; height: 18px; font-size: 0.625rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-divider { border: none; border-top: 1px solid var(--slate-100); margin: 1rem 0; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0a2540 100%);
  color: #fff; text-align: center; padding: 5rem 1.5rem; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(14,165,233,0.2) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -0.025em;
  margin-bottom: 1rem; position: relative;
}
.cta-banner p { font-size: 1.0625rem; color: var(--slate-400); margin-bottom: 2rem; position: relative; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 0; }
.cta-banner p.footnote { font-size: 0.8125rem; color: var(--slate-500); margin-top: 1.25rem; margin-bottom: 0; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--slate-900); color: var(--slate-400);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: #fff; margin-bottom: 0.875rem; display: inline-flex; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { text-decoration: none; color: var(--slate-400); font-size: 0.875rem; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--slate-800); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8125rem;
}
.footer-bottom a { color: var(--slate-400); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--slate-900) 0%, #0c1a3a 100%);
  color: #fff; padding: 4.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(14,165,233,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: var(--slate-400); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.faq-item { border: 1.5px solid var(--slate-200); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.125rem 1.25rem; font-family: inherit; font-size: 0.9375rem; font-weight: 600;
  color: var(--slate-800); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q:hover { background: var(--slate-50); }
.faq-arrow-icon { color: var(--slate-400); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow-icon { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1.125rem; font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; border-top: 1px solid var(--slate-100); padding-top: 1rem; }
.faq-item.open .faq-a { display: block; }

/* ── Contact form ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sky-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.875rem; font-weight: 700; color: var(--slate-800); margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--slate-700); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--slate-200); border-radius: 10px;
  padding: 0.75rem 1rem; font-family: inherit; font-size: 0.9rem; color: var(--slate-800);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none; background: #fff;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── About page ───────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  border: 1.5px solid var(--slate-200); border-radius: 16px; padding: 1.75rem;
  background: #fff;
}
.value-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.375rem; }
.value-card p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; }
.stat-number { font-size: 2.75rem; font-weight: 900; color: var(--sky); letter-spacing: -0.03em; }
.stat-label { font-size: 0.875rem; color: var(--slate-500); margin-top: 0.25rem; }

/* ── Utility ──────────────────────────────────────────────────── */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.sky { color: var(--sky); }
.slate-400 { color: var(--slate-400); }
.full-width { width: 100%; }

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

/* ── Mobile bar chart heights ─────────────────────────────────── */
.b1{height:40%} .b2{height:55%} .b3{height:75%} .b4{height:60%}
.b5{height:85%} .b6{height:70%} .b7{height:95%}
