:root {
  --bg: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --text: #102033;
  --muted: #597089;
  --line: rgba(16, 32, 51, 0.08);
  --accent: #3a7bff;
  --accent-dark: #2457c9;
  --accent-soft: #e8f0ff;
  --ink-soft: #d9e7ff;
  --shadow: 0 20px 50px rgba(17, 30, 54, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(58, 123, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(16, 32, 51, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: clamp(150px, 18vw, 220px);
  height: auto;
}
nav { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }

.hero { padding: 80px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
h1, h2, h3, p, ul { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 5.1vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  max-width: 12ch;
}
.hero-copy, .section-heading p, .cta-band p, .service-card p, .step p, .price-card p, .trust-strip span, .guide-cover p {
  color: var(--muted);
  line-height: 1.65;
}
.hero-copy { font-size: 1.08rem; max-width: 60ch; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5e93ff 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(58, 123, 255, 0.24);
}
.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}
.microcopy { margin-top: 16px; font-size: 0.95rem; color: var(--muted); }
.coming-soon-hero {
  padding: 92px 0 56px;
}
.coming-soon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}
.coming-soon-grid h1 {
  max-width: 12.5ch;
}
.coming-soon-note {
  margin-top: 28px;
  width: min(560px, 100%);
  border: 1px solid rgba(58, 123, 255, 0.2);
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  padding: 20px;
}
.coming-soon-note strong,
.coming-soon-note span {
  display: block;
}
.coming-soon-note strong {
  margin-bottom: 8px;
  color: var(--accent-dark);
}
.coming-soon-note span {
  color: var(--muted);
  line-height: 1.6;
}
.coming-soon-card h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.coming-soon-card > form > p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel {
  display: grid;
  gap: 16px;
}
.hero-logo-card {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-logo-card img {
  width: min(210px, 68%);
  height: auto;
}
.review-hero h1 {
  max-width: 13ch;
}
.review-score-panel {
  display: grid;
}
.score-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17,31,54,0.98) 0%, rgba(24,52,88,0.98) 100%);
  color: white;
  box-shadow: 0 28px 60px rgba(10, 24, 44, 0.22);
}
.score-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin: 12px 0 18px;
  border-radius: 50%;
  border: 10px solid rgba(138,176,255,0.44);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.score-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.score-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.trust-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17,31,54,0.98) 0%, rgba(24,52,88,0.98) 100%);
  color: white;
  box-shadow: 0 28px 60px rgba(10, 24, 44, 0.22);
}
.trust-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.trust-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.mini-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mini-proof {
  padding: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.mini-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.mini-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-strip {
  padding: 18px 0 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-strip-inner > div {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section { padding: 88px 0; }
.alt { background: rgba(255,255,255,0.45); }
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.card-grid, .pricing-grid, .steps {
  display: grid;
  gap: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card, .price-card, .step, .process-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.featured-service {
  border-color: rgba(58,123,255,0.24);
  background: linear-gradient(180deg, rgba(232,240,255,0.86) 0%, rgba(255,255,255,0.96) 100%);
}
.service-card h3, .price-card h3, .step h3, .process-card h3 { margin-bottom: 10px; letter-spacing: -0.03em; }
.process-card strong {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.process-card p {
  color: var(--muted);
  line-height: 1.6;
}
.service-price {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
}
.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.price-card.featured {
  border-color: rgba(58,123,255,0.24);
  background: linear-gradient(180deg, rgba(232,240,255,0.86) 0%, rgba(255,255,255,0.96) 100%);
}
.price {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}
.price small { font-size: 0.95rem; color: var(--muted); }
.guide-preview-panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.guide-cover {
  width: min(420px, 100%);
  min-height: 520px;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245,248,255,0.9)),
    radial-gradient(circle at 80% 10%, rgba(58,123,255,0.18), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guide-cover img {
  width: 150px;
  height: auto;
}
.guide-cover p {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent-dark);
}
.guide-cover h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 12px 0 20px;
}
.guide-cover span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}
.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cta-band-inner {
  background: linear-gradient(135deg, #102033 0%, #153155 100%);
  color: white;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cta-band .eyebrow { color: #8ab0ff; }
.cta-band p { color: rgba(255,255,255,0.78); }
.site-footer {
  background: #0b4654;
  color: white;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(2, minmax(160px, 0.8fr)) minmax(240px, 1.1fr);
  gap: 48px;
  padding: 64px 20px;
}
.footer-brand img {
  width: 210px;
  height: auto;
  background: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.site-footer p,
.site-footer a,
.footer-chat-card span {
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.site-footer a {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.site-footer a:hover {
  color: white;
}
.footer-meta {
  font-size: 0.92rem;
  margin-top: 18px;
}
.footer-button {
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: white !important;
  font-weight: 800;
}
.footer-chat-card {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 16px;
}
.footer-chat-card strong,
.footer-chat-card span {
  display: block;
}
.footer-chat-card strong {
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.56);
}
.footer-bottom a {
  display: inline-block;
  margin: 0 0 0 24px;
  color: rgba(255,255,255,0.56);
}

@media (max-width: 1180px) {
  .card-grid, .pricing-grid-six, .process-grid, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-grid,
  .coming-soon-grid,
  .trust-strip-inner,
  .pricing-grid,
  .pricing-grid-six,
  .process-grid,
  .guide-grid,
  .steps,
  .cta-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .cta-band-inner {
    display: grid;
  }
}

@media (max-width: 860px) {
  nav { display: none; }
  .brand img { width: 174px; }
}

.contact-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 18px;
}
.form-row.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-size: 14px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(58,123,255,0.18);
  border-color: rgba(58,123,255,0.4);
}
.hidden-field {
  position: absolute;
  left: -9999px;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.form-status.success { color: #18794e; }
.form-status.error { color: #c23b3b; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: inherit;
}
.chatbot-toggle {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(58, 123, 255, 0.28);
  cursor: pointer;
}
.chatbot-panel {
  width: min(360px, calc(100vw - 32px));
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 24px 60px rgba(10, 24, 44, 0.22);
  overflow: hidden;
}
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #102033;
  color: white;
}
.chatbot-header strong,
.chatbot-header span {
  display: block;
}
.chatbot-header span {
  margin-top: 3px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.chatbot-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 22px;
  cursor: pointer;
}
.chatbot-log {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding: 16px;
}
.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--text);
  line-height: 1.45;
  font-size: 14px;
}
.chat-message.bot {
  justify-self: start;
  background: var(--accent-soft);
}
.chat-message.user {
  justify-self: end;
  background: #102033;
  color: white;
}
.chatbot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}
.chatbot-prompts button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 0 16px 16px;
}
.chatbot-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font: inherit;
}
.chatbot-form button,
.chatbot-contact {
  border: 0;
  border-radius: 14px;
  padding: 0 12px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.chatbot-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 16px 16px;
}
.thankyou-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
}
.thankyou-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .hero { padding-top: 42px; }
  .section { padding: 64px 0; }
  .card-grid,
  .pricing-grid,
  .pricing-grid-six,
  .process-grid,
  .guide-grid,
  .steps,
  .mini-proof-row,
  .trust-strip-inner,
  .coming-soon-grid,
  .contact-hero-grid,
  .form-row.two-up {
    grid-template-columns: 1fr;
  }
  .cta-band-inner { padding: 24px; border-radius: 24px; }
  .footer-grid {
    gap: 28px;
    padding: 48px 20px;
  }
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom a {
    margin: 0 18px 0 0;
  }
  .chatbot-widget {
    right: 16px;
    bottom: 16px;
  }
}
