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

:root {
  --bg: #f3f7fd;
  --surface: #ffffff;
  --surface-soft: #f5f9ff;
  --line: #d3def0;
  --text: #0f2647;
  --muted: #4a6286;
  --brand: #0b63e6;
  --brand-dark: #084cad;
  --ok: #0b63e6;
  --danger: #b42318;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(9, 44, 99, 0.1);
  --page-gutter: clamp(16px, 4vw, 28px);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--text);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 700px at 10% -10%, #d8e8ff 0%, transparent 58%),
    radial-gradient(1000px 650px at 100% 0%, #e7f0ff 0%, transparent 52%),
    var(--bg);
}

a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--page-gutter); }

.top-strip {
  border-bottom: 1px solid var(--line);
  background: #ebf3ff;
  font-size: 12px;
  color: #2e4f7e;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-strip a {
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-dark);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 9px 20px rgba(12, 108, 242, 0.26);
}

.brand-text {
  line-height: 1;
  font-size: 16px;
  text-transform: lowercase;
}

.brand-text b {
  display: block;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.nav-spacer { flex: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #2f4668;
  font-weight: 700;
}

.btn {
  border: 1px solid #bfd0ea;
  border-radius: 12px;
  padding: 10px 15px;
  background: var(--surface);
  color: #18365e;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  border-color: #a2bfeb;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #1a7ef0);
  border-color: #0f67e2;
  color: #ffffff;
}

.btn.full { width: 100%; margin-top: 14px; }

.hero-section {
  padding: 44px 0 30px;
}

.hero-wrap {
  padding-top: 32px;
  padding-bottom: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  background: #eaf2ff;
  color: #1d3f74;
  border: 1px solid #c7dafb;
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-family: "IBM Plex Serif", serif;
}

.accent {
  color: var(--brand);
}

.sub {
  margin: 0;
  max-width: 63ch;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
  font-weight: 500;
}

.trust-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  border: 1px solid #d4e0f4;
  border-radius: 14px;
  background: #f8fbff;
  padding: 14px;
}

.trust-card h3 {
  margin: 0;
  font-size: 15px;
}

.trust-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.order-card {
  border: 1px solid #c8dbf8;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card {
  border: 1px solid #c8dbf8;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.order-head {
  padding: 18px;
  border-bottom: 1px solid #dce9fb;
  background: #f4f8ff;
}

.order-head h2 {
  margin: 0;
  font-size: 22px;
}

.order-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-body {
  padding: 18px;
}

.card-head {
  padding: 18px;
  border-bottom: 1px solid #dce9fb;
  background: #f4f8ff;
}

.card-body {
  padding: 18px;
}

label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #233a5d;
  font-weight: 800;
}

input, select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #bfd3f1;
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  color: var(--text);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: 15px;
}

input:focus, select:focus {
  outline: none;
  border-color: #6fa0ec;
  box-shadow: 0 0 0 4px rgba(10, 91, 216, 0.12);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23617795' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.error {
  display: none;
  margin-top: 12px;
  border: 1px solid #f6c8c5;
  background: #fff4f4;
  color: var(--danger);
  border-radius: 12px;
  padding: 10px;
  font-weight: 700;
}

.preview {
  margin-top: 14px;
  border: 1px solid #d1e0f6;
  border-radius: 12px;
  padding: 12px;
  background: #f5f9ff;
}

.preview h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.row {
  margin-top: 6px;
  color: #294163;
}

.hidden { display: none !important; }

.fineprint {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #5a7090;
}

.billing-block {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #d1e0f6;
  border-radius: 12px;
  background: #f7faff;
}

.billing-block h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.billing-options {
  display: grid;
  gap: 8px;
}

.radio-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-weight: 700;
  color: #233a5d;
}

.radio-line input {
  width: auto;
  margin: 0;
}

.inline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.section {
  padding: 28px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(234, 242, 255, 0.9), rgba(243, 247, 253, 0));
}

.section-head h1 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-family: "IBM Plex Serif", serif;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  font-family: "IBM Plex Serif", serif;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  border: 1px solid #d5e3f8;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
}

.price-card.highlight {
  border-color: #8eb6ef;
  box-shadow: 0 10px 24px rgba(21, 83, 168, 0.1);
}

.price-card h3 {
  margin: 0;
  font-size: 20px;
}

.price {
  margin: 8px 0;
  font-size: 30px;
  font-weight: 900;
  color: #0e4db4;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: #30486a;
  line-height: 1.6;
}

.faq-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  border: 1px solid #d5e3f8;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
}

.faq-card h3 {
  margin: 0;
  font-size: 18px;
}

.faq-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.footer {
  margin: 34px auto 20px;
  padding: 14px var(--page-gutter);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px 18px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #516b8c;
  font-size: 13px;
}

.footer span {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer a {
  text-decoration: none;
  color: #35537a;
}

.footer a:hover {
  color: var(--brand-dark);
}

.footer-icon {
  display: inline-block;
  width: 75px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  opacity: 0.92;
  transition: opacity .15s ease, transform .15s ease;
}

a:hover .footer-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.legal-wrap {
  padding-top: 24px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.legal-body {
  color: var(--muted);
  line-height: 1.72;
}

.legal-body p {
  margin: 0 0 12px;
}

.legal-body h2 {
  margin: 22px 0 8px;
  font-size: 19px;
  color: var(--text);
}

.legal-body ul {
  margin: 10px 0 12px;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .trust-grid,
  .pricing-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-head h1 {
    font-size: 32px;
  }

  .blog-card h2,
  .blog-card h3 {
    font-size: 24px;
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
    min-height: 40px;
  }

  .top-strip-inner a {
    display: none;
  }

  .nav-inner {
    min-height: 70px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .footer {
    justify-content: center;
    text-align: center;
  }

  .footer span {
    justify-content: center;
  }
}

@media (min-width: 1240px) {
  .footer {
    flex-wrap: nowrap;
    font-size: 12px;
    gap: 10px 14px;
  }

  .footer span {
    white-space: nowrap;
  }

  .footer span:last-child {
    margin-left: auto;
  }
}

.blog-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-grid-page {
  margin-top: 18px;
}

.blog-card {
  border: 1px solid #d5e3f8;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.blog-card h2 a,
.blog-card h3 a {
  color: #0f2647;
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.blog-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
