:root {
  --bg: #fbfcff;
  --text: #1c2633;
  --muted: #586575;
  --border: #dfe7f2;
  --white: #ffffff;
  --blue-50: #eef6ff;
  --blue-100: #dcecff;
  --blue-200: #bfdcff;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --yellow-50: #fffdf0;
  --yellow-100: #fff5c8;
  --yellow-200: #ffe99a;
  --yellow-300: #f4cf62;
  --brown-100: #f1e2d4;
  --brown-300: #d8ab7c;
  --brown-500: #a9652d;
  --brown-600: #8b5a2b;
  --brown-700: #7a4d23;
  --green-600: #16a34a;
  --green-700: #15803d;
  --shadow: 0 12px 32px rgba(33, 59, 96, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfdff 0%, #f7fbff 100%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 36px 0; }
.section-tight { padding-top: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffceb 0%, #ffffff 48%, #edf5ff 100%);
}
.hero-inner {
  position: relative;
  padding: 72px 0 52px;
}
.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: .55;
}
.orb-blue { width: 320px; height: 320px; background: var(--blue-200); top: 32px; left: -60px; }
.orb-yellow { width: 380px; height: 380px; background: #fff1a3; top: -70px; right: -40px; }
.orb-brown { width: 280px; height: 280px; background: #ead8c6; bottom: 0; left: 28%; }

.badge {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brown-600);
  color: #fff;
  border: 1px solid var(--brown-700);
  box-shadow: 0 12px 22px rgba(169, 101, 45, 0.16);
  font-size: 14px;
  font-weight: 500;
}

.hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: start;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 760px;
}
.hero-copy h1 span { color: var(--brown-600); }
.hero-text {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--muted);
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-brown { background: var(--brown-600); color: #fff; }
.btn-brown:hover { background: var(--brown-700); }
.btn-yellow { background: var(--yellow-100); color: var(--text); border: 1px solid var(--yellow-300); }
.btn-yellow:hover { background: var(--yellow-200); }
.btn-blue { background: var(--blue-600); color: #fff; }
.btn-blue:hover { background: var(--blue-700); }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); }
.compact { padding-inline: 16px; }

.contact-highlight-grid {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 820px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-card, .card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-card {
  padding: 22px;
}
.contact-card .label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown-600);
  font-weight: 700;
}
.contact-card .value {
  margin-top: 10px;
  font-size: 1.7rem;
  font-weight: 800;
}
.contact-card .email-value { font-size: 1.4rem; word-break: break-word; }
.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-points {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quick-points article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
}
.quick-points h3 { margin: 0 0 8px; font-size: .98rem; }
.quick-points p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.6; }

.logo-panel {
  margin-top: 104px;
  width: 100%;
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(135deg, #f4fbff 0%, #bfe2ff 50%, #5ca5e9 100%);
  border: 1px solid rgba(147, 197, 253, 0.9);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}
.logo-row { display: flex; gap: 16px; align-items: flex-start; }
.logo-icon {
  width: 80px; height: 80px; border-radius: 24px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.7);
  font-size: 2rem; box-shadow: inset 0 2px 8px rgba(255,255,255,.35);
}
.logo-brand {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: #1e40af; font-weight: 700;
}
.logo-title { margin-top: 6px; font-size: 1.9rem; font-weight: 800; line-height: 1.1; }
.logo-tag { margin-top: 8px; color: #24364c; font-weight: 600; }
.logo-pills {
  margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.logo-pills span {
  text-align: center; padding: 10px 8px; border-radius: 14px;
  background: rgba(255,255,255,.55); font-size: .74rem; font-weight: 700; color: #164e63;
}
.logo-contact-stack { margin-top: 18px; display: grid; gap: 10px; }
.logo-contact-stack a {
  display: block; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.83);
  font-weight: 800; box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.logo-contact-stack a:last-child { background: var(--yellow-100); word-break: break-word; }

.features-grid, .steps-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .step-card { padding: 26px; }
.feature-icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 18px; background: linear-gradient(135deg, var(--yellow-100), var(--blue-100)); font-size: 1.7rem;
}
.card h3 { margin: 16px 0 0; font-size: 1.25rem; }
.card p { margin: 12px 0 0; color: var(--muted); line-height: 1.8; }

.split-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.why-card, .fit-card { padding: 30px; }
.fit-card { background: linear-gradient(135deg, #eef7ff, #f8f4ee); }
.eyebrow {
  display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: .24em; font-weight: 800;
}
.eyebrow.yellow { color: var(--brown-600); }
.eyebrow.blue { color: var(--blue-700); }
.eyebrow.brown { color: var(--brown-600); }
.why-card h2, .fit-card h2, .section-head h2, .trust-panel h2, .bottom-cta h2, .faq-grid h2 {
  margin: 14px 0 0; font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.15;
}
.why-card > p, .fit-card > p, .trust-panel > div > p, .bottom-cta > div > p, .faq-intro {
  margin-top: 16px; color: var(--muted); line-height: 1.9;
}
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li {
  background: #faf7f2; border-radius: 18px; padding: 14px 16px 14px 42px; position: relative; line-height: 1.7;
}
.check-list li::before {
  content: '✔'; position: absolute; left: 16px; top: 13px; color: var(--blue-700); font-weight: 900;
}
.pill-list { margin-top: 20px; display: grid; gap: 12px; }
.pill-list span {
  display: block; padding: 14px 16px; background: rgba(255,255,255,.9); border: 1px solid rgba(191, 219, 254, .85);
  border-radius: 18px; line-height: 1.65;
}

.section-head.center { text-align: center; margin-bottom: 24px; }
.step-num {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: var(--yellow-200); color: #3f2a15; font-weight: 800;
}

.trust-panel {
  display: grid; gap: 28px; grid-template-columns: 1.15fr .85fr;
  padding: 34px; border-radius: 32px;
  background: linear-gradient(90deg, #fff6db 0%, #ffffff 48%, #eaf4ff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.trust-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-card {
  padding: 16px; border-radius: 18px; background: #fff; border: 1px solid var(--border);
  display: grid; gap: 6px;
}
.mini-card span { color: var(--muted); font-size: .95rem; }

.faq-grid { display: grid; gap: 28px; grid-template-columns: .9fr 1.1fr; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 24px; }

.bottom-cta {
  display: grid; gap: 24px; grid-template-columns: 1.15fr .85fr;
  align-items: center; padding: 34px;
  background: linear-gradient(90deg, #fffdf0 0%, #ffffff 40%, #ecf5ff 100%);
  border-radius: 32px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.bottom-actions { display: grid; gap: 14px; }

.footer {
  margin-top: 24px; padding: 26px 0 42px; border-top: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.footer-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.footer p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); }

@media (max-width: 1080px) {
  .hero-grid, .trust-panel, .bottom-cta, .faq-grid, .split-grid { grid-template-columns: 1fr; }
  .logo-panel { margin-top: 12px; max-width: 460px; }
  .features-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .hero-inner { padding-top: 46px; }
  .badge { margin-bottom: 22px; }
  .hero-actions, .contact-highlight-grid, .quick-points, .features-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn, .compact { width: 100%; }
  .quick-points { display: grid; }
  .logo-panel { max-width: none; }
  .logo-pills { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 8px; }
}
