:root {
  --bg: #f8fafc;           /* page background */
  --bg-alt: #ffffff;       /* card background */
  --text: #1f2933;         /* main text */
  --muted: #64748b;        /* secondary text */
  --accent: #1d4ed8;       /* royal blue */
  --accent-soft: rgba(29, 78, 216, 0.12);
  --accent-2: #0ea5e9;     /* light blue accent */
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --radius-xl: 22px;
}

/* Base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

/* Header + Nav */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 20%, #60a5fa, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
}

.brand-text span:last-child {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav a:hover {
  background: rgba(191, 219, 254, 0.7);
  color: var(--accent);
}

.nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  border-color: rgba(191, 219, 254, 0.9);
}

.header-pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
}

/* Hero */

.hero {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    align-items: center;
  }
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
}

.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-2);
}

h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
}

.highlight {
  color: #1d4ed8;
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-note {
  font-size: 12px;
  color: var(--muted);
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
}

.btn-primary {
  background: #1d4ed8;
  color: #f9fafb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}

.btn-ghost {
  background: #ffffff;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: #f1f5f9;
}

/* Hero Card */

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.hero-card h2 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #0f172a;
}

.hero-card small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-card ul {
  margin-left: 18px;
  padding-left: 0;
  list-style-type: disc;
  list-style-position: inside; /* bullets inline with text */
  font-size: 12px;
  color: var(--muted);
}

.hero-card li {
  margin-bottom: 4px;
}

/* Generic sections & cards */

.sections {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}

.card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.card ul {
  margin-left: 18px;
  list-style-type: disc;
  list-style-position: inside; /* bullets inline with text */
  font-size: 13px;
  color: var(--muted);
}

.card li {
  margin-bottom: 6px;
}

/* Service grid */

.service-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.price-label {
  font-size: 11px;
  color: var(--muted);
}

/* Pills */

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pill-small {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5efff;
  color: #1d4ed8;
}

/* FAQ */

.faq-item + .faq-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.faq-q {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.faq-a {
  font-size: 12px;
  color: var(--muted);
}

/* Forms */

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text);
  background: #ffffff;
}

input:focus,
textarea:focus {
  outline: 2px solid #bfdbfe;
  border-color: #60a5fa;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.hint {
  font-size: 11px;
  color: var(--muted);
}

/* Tables */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}

.table th,
.table td {
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 6px 8px;
}

.table th {
  background: #e5edff;
  text-align: left;
  color: #0f172a;
}

/* Footer */

footer {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
