/* ============ LEVEN — plain CSS (converted from the React/Tailwind build) ============ */

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

:root {
  --blue: #1E6FD9;
  --green: #1FA97A;
  --green-dark: #178a63;
  --ink: #16324F;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --amber-50: #fffbeb;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
}

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
em { font-style: italic; }

::selection { background: rgba(30, 111, 217, 0.18); color: #16324f; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f4; }
::-webkit-scrollbar-thumb { background: linear-gradient(#1e6fd9, #1fa97a); border-radius: 8px; }

/* ---------- icons ---------- */
.ic { width: 24px; height: 24px; flex-shrink: 0; }
.ic-14 { width: 14px; height: 14px; }
.ic-16 { width: 16px; height: 16px; }
.ic-20 { width: 20px; height: 20px; }
.ic-24 { width: 24px; height: 24px; }
.ic-28 { width: 28px; height: 28px; }
.ic-32 { width: 32px; height: 32px; }

/* ---------- layout helpers ---------- */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.container-sm { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; position: relative; }

.section { position: relative; overflow: hidden; padding: 5rem 0; }

.grad-text {
  background: linear-gradient(to right, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.25;
}

.lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
}

.center-head { max-width: 48rem; margin: 0 auto; text-align: center; }
.left-head { max-width: 48rem; }

/* ---------- textures ---------- */
.texture-blue {
  background-color: #eaf3fd;
  background-image: radial-gradient(rgba(30, 111, 217, 0.32) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.texture-green {
  background-color: #e9f8f1;
  background-image: radial-gradient(rgba(31, 169, 122, 0.32) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.texture-mix-dots {
  background-color: transparent;
  background-image:
    radial-gradient(rgba(30, 111, 217, 0.24) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #eaf3fd 0%, #e9f8f1 100%);
  background-size: 22px 22px, 100% 100%;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- background decor ---------- */
.decor { position: absolute; pointer-events: none; display: none; }
.decor svg { display: block; width: 100%; height: 100%; }

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--blue), var(--green));
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25), 0 4px 6px -4px rgba(59, 130, 246, 0.25);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.28), 0 8px 10px -6px rgba(59, 130, 246, 0.28);
}
.btn-primary .ic { transition: transform 0.2s ease; }
.btn-primary:hover .ic { transform: translateX(4px); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--slate-300);
  background: #fff;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.btn-outline:hover { border-color: rgba(30, 111, 217, 0.5); color: var(--blue); }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.75rem; }
.logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-word {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: linear-gradient(to right, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-word.light { background: none; color: #fff; }

/* ---------- navbar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s ease;
}
.nav-links a.nav-link:hover { color: var(--blue); }
.nav-cta {
  border-radius: 9999px;
  background: linear-gradient(to right, var(--blue), var(--green));
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2), 0 2px 4px -2px rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25), 0 4px 6px -4px rgba(59, 130, 246, 0.25);
}
.menu-btn { display: block; color: #334155; padding: 0.5rem; }

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--slate-200);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 1rem 1.5rem; gap: 0.25rem; }
.mobile-menu a.m-link {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s ease;
}
.mobile-menu a.m-link:hover { color: var(--blue); }
.mobile-menu .nav-cta { margin-top: 0.75rem; text-align: center; }

/* ---------- hero ---------- */
.hero { background: #fff; padding: 7rem 0 4rem; position: relative; overflow: hidden; }
.hero-blob-1 {
  position: absolute; top: -10rem; right: -10rem;
  width: 480px; height: 480px; border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(30,111,217,0.1), rgba(31,169,122,0.1));
  filter: blur(64px);
}
.hero-blob-2 {
  position: absolute; top: 16rem; left: -10rem;
  width: 380px; height: 380px; border-radius: 9999px;
  background: rgba(31, 169, 122, 0.08);
  filter: blur(64px);
}
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(31, 169, 122, 0.3);
  background: rgba(31, 169, 122, 0.08);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-copy {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
  max-width: 36rem;
}
.hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-img-wrap { position: relative; }
.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, rgba(30,111,217,0.15), rgba(31,169,122,0.15));
  filter: blur(4px);
}
.hero-img {
  position: relative;
  border-radius: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.hero-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  padding: 1rem 1.5rem;
}
.hero-card .k {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.hero-card .v { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 700; color: var(--ink); }

.stats-bar {
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: rgba(226, 232, 240, 0.6);
  max-width: 56rem;
}
.stat-cell { background: #fff; padding: 1.5rem; text-align: center; }
.stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
}

/* ---------- who we are ---------- */
.split { display: grid; gap: 3rem; align-items: start; }
.link-arrow {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s ease;
}
.link-arrow:hover { color: var(--green-dark); }

.value-list { display: flex; flex-direction: column; gap: 1.25rem; }
.value-card {
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 1.75rem;
  transition: all 0.2s ease;
}
.value-card:hover {
  border-color: rgba(31, 169, 122, 0.5);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
}
.value-card .row { display: flex; align-items: flex-start; gap: 1.25rem; }
.icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(30,111,217,0.1), rgba(31,169,122,0.1));
  border: 1px solid rgba(30, 111, 217, 0.15);
  color: var(--blue);
}
.value-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--ink); }
.value-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }

/* ---------- dosage forms ---------- */
.df-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.df-card {
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.df-card:hover {
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}
.df-media { position: relative; height: 11rem; overflow: hidden; }
.df-media img {
  height: 100%; width: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.df-card:hover .df-media img { transform: scale(1.05); }
.df-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}
.df-media h3 {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.df-body { padding: 1.5rem; }
.df-challenge {
  border-radius: 0.75rem;
  border-left: 3px solid var(--amber-400);
  background: var(--amber-50);
  padding: 0.75rem 1rem;
}
.df-challenge .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 0.25rem;
}
.df-challenge p { font-size: 13px; line-height: 1.625; color: #334155; }
.df-label {
  margin-top: 1.25rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.df-label.green { color: var(--green-dark); }
.df-label.gray { color: var(--slate-400); }
.df-caps { margin-top: 0.625rem; display: flex; flex-direction: column; gap: 0.5rem; }
.df-caps li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 13px; color: #334155; }
.df-caps .ic { color: var(--green); margin-top: 2px; }
.df-tags { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.375rem; }
.df-tags span {
  border-radius: 9999px;
  background: var(--slate-100);
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-600);
}

.df-cta {
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--blue), var(--green));
  padding: 1.5px;
  display: block;
  transition: transform 0.3s ease;
}
.df-cta:hover { transform: translateY(-4px); }
.df-cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: calc(1.5rem - 1.5px);
  background: #fff;
  padding: 1.75rem;
}
.df-cta h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.df-cta p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }
.df-cta .more {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s ease;
}
.df-cta:hover .more { gap: 0.75rem; }

/* ---------- services ---------- */
.svc-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.svc-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 2rem;
  transition: all 0.2s ease;
}
.svc-card:hover {
  border-color: rgba(30, 111, 217, 0.4);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
}
.svc-num {
  position: absolute;
  top: 1.75rem; right: 2rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--slate-100);
  transition: color 0.2s ease;
}
.svc-card:hover .svc-num { color: rgba(30, 111, 217, 0.15); }
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--blue), var(--green));
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2), 0 4px 6px -4px rgba(59, 130, 246, 0.2);
  color: #fff;
}
.svc-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.svc-card > p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }
.svc-points { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.svc-points li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 13px; color: #334155; }
.svc-points .dot {
  margin-top: 7px;
  width: 6px; height: 6px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--blue), var(--green));
}

/* ---------- models ---------- */
.models-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.model-card {
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 2rem;
  transition: all 0.2s ease;
}
.model-card:hover {
  border-color: rgba(31, 169, 122, 0.5);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  transform: translateY(-4px);
}
.model-head { display: flex; align-items: center; justify-content: space-between; }
.model-tag {
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(30,111,217,0.1), rgba(31,169,122,0.1));
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.model-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.model-card > p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }
.model-fit { margin-top: 1.25rem; font-size: 0.75rem; font-weight: 600; color: var(--slate-400); }

.principles {
  margin-top: 3rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #F6F9F8;
  padding: 2rem;
}
.principles-grid { display: grid; gap: 2rem; }
.principle { display: flex; align-items: flex-start; gap: 1rem; }
.icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  color: var(--green-dark);
}
.principle h4 { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.principle p { margin-top: 0.375rem; font-size: 13px; line-height: 1.625; color: var(--slate-600); }

/* ---------- process ---------- */
.steps-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.step-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 1.75rem;
  transition: all 0.2s ease;
}
.step-card:hover {
  border-color: rgba(30, 111, 217, 0.4);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  transform: translateY(-4px);
}
.step-head { display: flex; align-items: center; gap: 1rem; }
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--blue), var(--green));
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2), 0 2px 4px -2px rgba(59, 130, 246, 0.2);
  color: #fff;
}
.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(to right, rgba(30,111,217,0.3), rgba(31,169,122,0.3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; color: var(--ink); }
.step-get {
  margin-top: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.step-card > p:last-of-type { margin-top: 0.375rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }
.step-arrow {
  display: none;
  position: absolute;
  top: 50%; right: -0.875rem;
  color: var(--slate-300);
  font-size: 1.125rem;
  user-select: none;
}

/* ---------- quality ---------- */
.q-grid { display: grid; gap: 3rem; align-items: center; }
.q-img-wrap { position: relative; order: 2; }
.q-img-wrap::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, rgba(31,169,122,0.12), rgba(30,111,217,0.12));
  filter: blur(4px);
}
.q-img {
  position: relative;
  border-radius: 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.q-content { order: 1; }
.q-items { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.q-item {
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  background: #F6F9F8;
  padding: 1.5rem;
}
.q-item .icon-chip { color: var(--blue); width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; }
.q-item h3 { margin-top: 1rem; font-size: 15px; font-weight: 700; color: var(--ink); }
.q-item p { margin-top: 0.5rem; font-size: 13px; line-height: 1.625; color: var(--slate-600); }
.q-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.625rem; }
.q-badges span {
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-600);
}

/* ---------- about ---------- */
.about-quote {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(31, 169, 122, 0.25);
  background: rgba(31, 169, 122, 0.06);
  padding: 1.5rem;
}
.about-quote .row { display: flex; align-items: flex-start; gap: 1rem; }
.about-quote h4 { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.about-quote p { margin-top: 0.375rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }
.about-quote strong { color: var(--ink); }
.team-grid { margin-top: 1.75rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.team-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.875rem 1rem;
}
.team-chip .ic { color: var(--blue); }
.team-chip span { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.about-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  padding: 1rem 1.5rem;
  max-width: 240px;
}
.about-card .t { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.about-card .s { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.625; color: var(--slate-500); }

/* ---------- faq ---------- */
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--blue); }
.faq-q .ic { transition: transform 0.3s ease; color: var(--slate-400); }
.faq-item.open .faq-q .ic { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 3rem; }
.contact-lines { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-line { display: flex; align-items: center; gap: 1rem; }
.contact-line .k {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-400);
}
.contact-line .v { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.contact-note {
  margin-top: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(31, 169, 122, 0.25);
  background: rgba(31, 169, 122, 0.06);
  padding: 1.5rem;
}
.contact-note .row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-note .ic { color: var(--green-dark); margin-top: 2px; }
.contact-note p { font-size: 0.875rem; line-height: 1.625; color: #334155; }
.contact-note strong { color: var(--ink); }

.form-card {
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
}
.inq-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
.field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}
.field::placeholder { color: var(--slate-400); }
.field:focus {
  border-color: rgba(30, 111, 217, 0.6);
  box-shadow: 0 0 0 3px rgba(30, 111, 217, 0.15);
}
select.field { appearance: none; -webkit-appearance: none; }
textarea.field { resize: none; }
.form-error {
  border-radius: 0.75rem;
  border: 1px solid #fecaca;
  background: #fef2f2;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.625;
  color: #dc2626;
}
.form-error a { font-weight: 600; text-decoration: underline; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.sent-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 460px;
  height: 100%;
}
.sent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--blue), var(--green));
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.25), 0 8px 10px -6px rgba(59, 130, 246, 0.25);
  color: #fff;
}
.sent-panel h3 { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.sent-panel p { margin-top: 0.75rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.625; color: var(--slate-600); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); }
.footer-inner { max-width: 80rem; margin: 0 auto; padding: 3.5rem 1.5rem; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand p.tag {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(203, 213, 225, 0.8);
}
.footer-brand p.loc {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.8);
}
.footer-brand p.loc .ic { color: var(--green); }
.footer-col .col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(to right, #5b9cf0, #3fd39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(203, 213, 225, 0.8); transition: color 0.2s ease; }
.footer-col a:hover { color: #3fd39b; }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--slate-400); }
.footer-bottom p.legal { max-width: 42rem; }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .df-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .q-items { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-brand { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .section { padding: 7rem 0; }
  .decor { display: block; }
  .decor-xl { display: none; }
  .h2 { font-size: 2.6rem; }
  .lead { font-size: 1.125rem; }
  .hero { padding: 9rem 0 6rem; }
  .hero h1 { font-size: 3.4rem; }
  .hero-copy { font-size: 1.125rem; }
  .hero-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .split { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
  .df-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-arrow { display: block; }
  .q-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .q-img-wrap { order: 1; }
  .q-content { order: 2; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .nav-inner { padding: 0 2rem; height: 72px; }
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
  .form-card { padding: 2.5rem; }
  .footer-inner { padding: 3.5rem 2rem; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .about-card { right: -1.5rem; }
}

@media (min-width: 1280px) {
  .decor-xl { display: block; }
}
