@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-hero: #f1f5f9;
  --panel: #ffffff;
  --text: #0f172a;
  --text-soft: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --max: 1120px;
  --accent: #0f766e;
  --accent-hover: #0d9488;
  --accent-light: #ccfbf1;
  --accent2: #0369a1;
  --accent2-light: #e0f2fe;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-alt);
  padding: 8px;
  box-sizing: content-box;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}
.brand-sub { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.nav {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--accent); background: var(--accent-light); }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, var(--accent2-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.pill {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 24px;
  box-shadow: var(--shadow);
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.18;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
h2 {
  font-size: 2rem;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.25;
}
h3 { font-size: 1.18rem; margin: 0 0 10px; font-weight: 600; color: var(--text); line-height: 1.3; }
.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin: 0 0 28px;
  line-height: 1.7;
  max-width: 540px;
}
.grad {
  color: var(--accent);
  font-weight: 800;
}
.grad2 {
  color: var(--accent2);
  font-weight: 800;
}

/* Buttons */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 8px 0 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}
.btn:active { transform: translateY(0); }
.btn-ghost {
  background: var(--panel);
  color: var(--text) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--accent) !important;
}
.btn-sm { padding: 10px 18px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.stat {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.stat:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 700;
}
.stat span { font-size: 0.92rem; color: var(--muted); line-height: 1.4; }

/* Hero card */
.hero-card .card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}
.hero-card .card.glass {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-card .card:hover { transform: translateY(-2px); }
.checklist { margin: 14px 0 0; padding-left: 20px; }
.checklist li { margin: 10px 0; color: var(--text-soft); }
.callout {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  border: 1px solid rgba(15, 118, 110, 0.25);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Logos / principles */
.logos { padding: 32px 0 24px; border-top: 1px solid var(--border-soft); margin-top: 28px; }
.logos .muted { font-size: 0.9rem; font-weight: 600; color: var(--text-soft); }
.logo-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.logo-pill {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, color 0.2s;
}
.logo-pill:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
.section { padding: 80px 0; background: var(--bg); }
.section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 44px; max-width: 640px; }
.section-head h2 { padding-bottom: 12px; border-bottom: 3px solid var(--accent); display: inline-block; margin-bottom: 14px; }
.section-head .muted { font-size: 1.06rem; margin-top: 6px; display: block; line-height: 1.55; }

/* Grid & cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.2);
  transform: translateY(-2px);
}
.card.glass {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.card.subtle {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  box-shadow: none;
  padding: 32px;
}
.card.subtle:hover { transform: none; }
.small-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}
.small-card strong { color: var(--text); font-size: 1.05rem; }
.small-card .muted { font-size: 0.9rem; line-height: 1.45; }

/* Service icons */
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
}
.icon svg { width: 26px; height: 26px; }
.card p { color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Split & bullets */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; margin-top: 28px; }
.bullets { margin: 12px 0 0; padding-left: 20px; }
.bullets li { margin: 10px 0; color: var(--text-soft); }
.mini { display: grid; gap: 14px; }
.mini-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}
.mini-card strong { color: var(--text); }

/* Process steps */
.steps {
  list-style: none;
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 28px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(3, 105, 161, 0.2);
}
.step p { color: var(--text-soft); line-height: 1.6; margin: 0; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent2-light);
  color: var(--accent2);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.quote {
  margin-top: 36px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
}
.quote p { font-size: 1.15rem; margin: 0 0 10px; font-style: italic; color: var(--text-soft); line-height: 1.65; }
.quote .muted { font-size: 0.92rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  margin-top: 32px;
}
.form .card { padding: 32px; }
.form label { display: grid; gap: 8px; margin: 0 0 20px; font-weight: 500; color: var(--text); font-size: 0.98rem; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}
textarea { resize: vertical; min-height: 150px; }
.hp { display: none; }
.status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: none;
  font-size: 0.95rem;
  line-height: 1.5;
}
.status.ok { display: block; border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.status.err { display: block; border-color: #fca5a5; background: #fef2f2; color: #b91c1c; }
.kv { display: grid; gap: 14px; }
.kv div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 14px;
  align-items: center;
}
.kv span { color: var(--muted); font-size: 0.9rem; }
.kv a { color: var(--accent); text-decoration: none; font-weight: 500; }
.kv a:hover { text-decoration: underline; }
.sep { border: 0; border-top: 1px solid var(--border); margin: 24px 0; }
.contact-grid .card.glass { padding: 32px; }
.form a, .card.glass a { color: var(--accent); text-decoration: none; font-weight: 500; }
.form a:hover, .card.glass a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 980px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav {
    display: flex;
    position: absolute;
    left: 24px;
    right: 24px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .site-header.open .nav a {
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text);
  }
  .site-header.open .nav a:hover { background: var(--accent-light); color: var(--accent); }
  .two { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
