:root {
  --bg: #f4f7fa;
  --surface: #ffffff;
  --surface-soft: #f8fbfe;
  --text: #1f2937;
  --muted: #5b6472;
  --accent: #00508c;
  --accent-dark: #083b69;
  --accent-soft: #eaf2f8;
  --border: #d9e4ef;
  --shadow: 0 12px 32px rgba(0, 50, 90, 0.08);
  --shadow-soft: 0 8px 24px rgba(0, 50, 90, 0.06);
  --radius: 20px;
  --max: 1120px;
  --danger-bg: #fff4f4;
  --danger-border: #e7b4b4;
  --danger-text: #8a1f1f;
  --success-text: #15803d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 228, 239, 0.8);
}

.header-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand.with-logo {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.brand img {
  max-height: 60px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f2f4f;
  white-space: normal;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.brand-company {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
  opacity: 0.8;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.nav a {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.nav .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 11px 16px;
  border-radius: 12px;
}

.nav .nav-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

/* Breadcrumb */

.breadcrumb {
  padding: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

/* Hero */

.hero-wrap {
  padding: 36px 0 16px;
}

.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 44px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.hero-single {
  grid-template-columns: 1fr;
}

.eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0f2f4f;
}

.lead {
  margin: 0;
  max-width: 720px;
  font-size: 19px;
  color: var(--muted);
}

.hero-points {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.hero-points a {
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-side {
  background: linear-gradient(180deg, #f9fbfd 0%, #f2f7fb 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 22px;
}

.hero-side h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0f2f4f;
}

.hero-side p {
  margin: 0 0 14px;
  color: var(--muted);
}

/* Buttons */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface-soft);
  text-decoration: none;
}

/* Sections */

section.block {
  padding: 18px 0;
}

.section {
  margin: 24px 0;
}

.section-header,
.section-intro {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-header h2,
.section-intro h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.18;
  color: #0f2f4f;
}

.section-header p,
.section-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Lists */

.mini-list,
.plain-list,
.feature-list,
.list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.mini-list li,
.plain-list li,
.feature-list li,
.list li {
  margin-bottom: 8px;
}

/* Grids */

.grid,
.grid-2,
.grid-3,
.grid-4,
.grid-steps,
.grid-steps-3,
.grid-links,
.grid-faq,
.included-grid {
  display: grid;
  gap: 18px;
}

.grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-steps-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.included-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #103453;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.links-card a {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.faq-card h3 {
  font-size: 20px;
}

.hero-side h2,
.card h3,
.section-header h2 {
  color: #0f2f4f;
}

.price-note a {
  font-weight: 600;
}

.quote-box small {
  line-height: 1.6;
}

.brand-subtitle {
  max-width: 260px;
}

.price-card,
.comparison-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
}

.faq-card h3 {
  font-size: 20px;
}

.hero-side h2,
.card h3,
.section-header h2 {
  color: #0f2f4f;
}

.price-note a {
  font-weight: 600;
}

.quote-box small {
  line-height: 1.6;
}

.brand-subtitle {
  max-width: 260px;
}

.included-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.included-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #0f2f4f;
}

.included-box p {
  margin: 0;
  color: var(--muted);
}

/* Step cards */

.step-card {
  position: relative;
  padding-top: 64px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

/* Highlight / notes */

.highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.subtle-band,
.pricing-band {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.info-box {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--muted);
}

.cta-note,
.article-note {
  margin-top: 10px;
}

.kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Quote */

.quote-box {
  background: linear-gradient(180deg, #f8fbfe 0%, #edf5fb 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0;
  font-size: 20px;
  color: #103453;
}

.quote-box strong {
  color: #0f2f4f;
}

.quote-box small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

/* Trust strip */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.footer-trust {
  padding: 24px 0 0;
}

.trust-strip img {
  max-height: 62px;
  width: auto;
}

.trust-strip strong {
  display: block;
  font-size: 18px;
  color: #0f2f4f;
  margin-bottom: 3px;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.is-hidden {
  display: none;
}

/* Pricing */

.price-highlight,
.price-big {
  font-size: 34px;
  font-weight: 700;
  color: #0f2f4f;
  line-height: 1.1;
  margin: 0 0 8px;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* CTA panels */

.cta-panel,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #0f4a7c 0%, #083b69 100%);
  color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(0, 50, 90, 0.18);
}

.cta-panel h2,
.cta h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
  color: #ffffff;
}

.cta-panel p,
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.cta-panel a,
.cta a {
  color: #ffffff;
}

.cta-panel a:hover,
.cta a:hover {
  color: #e0efff;
  text-decoration: underline;
}

.cta-panel .btn-primary,
.cta .btn-primary {
  background: #fff;
  color: var(--accent-dark);
}

.cta-panel .btn-primary:hover,
.cta .btn-primary:hover {
  background: #edf4fa;
  color: var(--accent-dark);
  text-decoration: none;
}

.cta-panel .btn-secondary,
.cta .btn-secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: transparent;
}

.cta-panel .btn-secondary:hover,
.cta .btn-secondary:hover {
  background: #edf4fa;
  color: var(--accent-dark);
  text-decoration: none;
}

/* Contact */

.contact-card {
  max-width: 760px;
  margin: 0 auto;
}

.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-item {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 5px;
}

.contact-link {
  font-size: 20px;
  font-weight: 700;
  color: #0f2f4f;
  word-break: break-word;
}

.contact-note {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

/* Forms */

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 700;
  color: #0f2f4f;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.char-counter {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.char-counter.too-short {
  color: var(--danger-text);
}

.char-counter.ok {
  color: var(--success-text);
}

.error-box {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}

.success-box {
  background: #eef9f1;
  border: 1px solid #b9e2c3;
  color: #166534;
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 22px;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #103453;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--accent-dark);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

/* Tables */

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.table-wrap th {
  background: #f3f8fc;
  color: #103453;
  font-size: 14px;
  font-weight: 700;
}

.table-wrap tr:last-child td {
  border-bottom: none;
}

/* Footer */

.site-footer {
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.footer-box {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(200px, 0.9fr) minmax(240px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.footer-col strong {
  display: inline-block;
  margin-bottom: 8px;
  color: #0f2f4f;
  font-size: 16px;
}

.footer-col a {
  color: var(--accent-dark);
}

.footer-note {
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .cta-panel,
  .cta,
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-steps,
  .grid-steps-3,
  .grid-links,
  .grid-faq,
  .included-grid,
  .footer-box {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 28px 20px;
  }

  h1 {
    font-size: 34px;
  }

  .section-header h2,
  .section-intro h2,
  .cta-panel h2,
  .cta h2 {
    font-size: 28px;
  }

  .lead,
  .section-header p,
  .section-intro p,
  .cta-panel p,
  .cta p {
    font-size: 17px;
  }

  .container {
    padding: 0 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    max-height: 52px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Blog article content --- */
.blog-featured-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}

.blog-content {
  max-width: 720px;
  margin-top: 20px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-content p {
  margin-bottom: 16px;
  font-size: 17px;
}

.blog-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 6px;
}

.links-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.links-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.links-card:hover {
  transform: translateY(-3px);
}
