:root {
  --green: #13b1ac;
  --orange: #ee805f;
  --black: #0b0b0b;
  --text: #1b1b1b;
  --muted: #6b6b6b;
  --border: #e9e9e9;
  --bg: #ffffff;
  --bg-muted: #f7f7f7;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: inline-block;
}
.brand-name {
  letter-spacing: 0.2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}
.menu a:hover { background: var(--bg-muted); color: var(--text); }
.menu a.active { color: var(--text); background: rgba(19, 177, 172, 0.12); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn.full { width: 100%; }

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { filter: brightness(0.95); }

.btn-secondary {
  background: var(--orange);
  color: white;
}
.btn-secondary:hover { filter: brightness(0.95); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { background: var(--bg-muted); }

/* Hero */
.hero {
  padding: 56px 0 18px;
  background:
    radial-gradient(900px 450px at 15% 10%, rgba(19,177,172,0.18), transparent 55%),
    radial-gradient(900px 450px at 85% 30%, rgba(238,128,95,0.18), transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19,177,172,0.12);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}
h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 12px 0 10px;
  letter-spacing: -0.6px;
}
.lead {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 16px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.trust {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
}
.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  margin-top: 6px;
}
.trust-title { font-weight: 800; }
.trust-sub { color: var(--muted); font-size: 13.5px; }

.hero-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top {
  padding: 18px 18px 0;
}
.hero-card-top h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.hero-card-top p { margin: 0 0 12px; color: var(--muted); }
.quote-box {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(19,177,172,0.08), transparent);
}
.quote-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.quote-row:last-of-type { border-bottom: none; }
.label { color: var(--muted); font-weight: 700; font-size: 13px; }
.value { font-weight: 800; font-size: 13.5px; }
.value:hover { text-decoration: underline; }

/* Sections */
.section { padding: 44px 0; }
.section.muted { background: var(--bg-muted); }
.section-head { margin-bottom: 16px; }
.section-head h2 { margin: 0 0 6px; font-size: 24px; letter-spacing: -0.3px; }
.section-head p { margin: 0; color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
}
.card h3, .card h2 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.card.highlight {
  border-color: rgba(19,177,172,0.35);
  box-shadow: var(--shadow);
}

.feature {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
}
.feature h3 { margin: 0 0 8px; }
.feature p { margin: 0 0 10px; color: var(--muted); }
.link { font-weight: 800; color: var(--green); }
.link:hover { text-decoration: underline; }

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li { margin: 6px 0; }

.muted-text { color: var(--muted); }

.page-hero {
  padding: 44px 0 16px;
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(238,128,95,0.16), transparent 55%),
    radial-gradient(900px 450px at 90% 30%, rgba(19,177,172,0.16), transparent 55%);
}

.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(238,128,95,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 800;
  color: var(--text);
}
.contact-box { display: grid; gap: 10px; }

/* CTA */
.cta {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(19,177,172,0.14), rgba(238,128,95,0.12));
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-inner h2 { margin: 0 0 6px; }
.cta-inner p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  padding: 26px 0 18px;
  background: #0e0e0e;
  color: rgba(255,255,255,0.92);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { font-weight: 900; }
.footer-sub { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 6px; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.86); }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.66);
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .menu { gap: 6px; }
  .menu a { padding: 9px 10px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.brand-logo{
  height: 34px;
  width: auto;
  display: block;
}

@media (max-width: 760px){
  .brand-logo{ height: 28px; }
}
